@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Cormorant+SC:wght@300;400;600;700&display=swap');

*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}

:root{
  --black:#000000;
  --white:#ffffff;
  --grey-1:#111111;
  --grey-2:#1a1a1a;
  --grey-3:#2a2a2a;
  --grey-4:#444444;
  --grey-5:#888888;
  --grey-6:#cccccc;
  --ivory:#f0e6d0;
  --gold:#c9a84c;
  --gold-dim:rgba(201,168,76,0.22);
  --font-serif:'Cinzel','Georgia','Times New Roman',Times,serif;
  --font-display:'Cinzel','Georgia',serif;
  --font-sans:'Helvetica Neue',Helvetica,Arial,sans-serif;
  --transition:.3s ease
}

html{scroll-behavior:smooth;font-size:16px}

body{background-color:var(--black);color:var(--ivory);font-family:var(--font-sans);line-height:1.6;overflow-x:hidden}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ── TYPOGRAPHY ─────────────────────────────── */
.section-title{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,4rem);
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:.4em
}

.section-subtitle{
  font-size:.78rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--grey-5)
}

/* Logo-style divider: short gold bar flanked by grey rules */
.divider{
  width:36px;
  height:1px;
  background:var(--gold);
  margin:1.4rem auto;
  position:relative
}
.divider::before,.divider::after{
  content:'';
  position:absolute;
  top:0;
  height:1px;
  width:20px;
  background:var(--grey-4)
}
.divider::before{right:100%;margin-right:5px}
.divider::after{left:100%;margin-left:5px}

::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--black)}
::-webkit-scrollbar-thumb{background:var(--grey-4);border-radius:3px}

/* ── NAVBAR ─────────────────────────────────── */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.4rem 3rem;
  transition:background var(--transition),padding var(--transition),box-shadow var(--transition)
}
.navbar--scrolled{
  background:rgba(0,0,0,.92);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  padding:.9rem 3rem;
  box-shadow:0 1px 0 rgba(201,168,76,.18)
}
.navbar__logo-img{
  height:52px;width:auto;
  transition:opacity var(--transition)
}
.navbar__logo-img:hover{opacity:.75}
.navbar__logo-text{
  font-family:var(--font-display);
  font-size:1.1rem;letter-spacing:.22em;
  text-transform:uppercase;color:var(--white)
}
.navbar__nav{display:flex;align-items:center;gap:2.5rem}
.navbar__link{
  font-size:.72rem;font-weight:500;letter-spacing:.22em;
  text-transform:uppercase;color:var(--grey-6);
  position:relative;transition:color var(--transition)
}
.navbar__link::after{
  content:'';position:absolute;left:0;bottom:-4px;
  width:0;height:1px;background:var(--gold);
  transition:width var(--transition)
}
.navbar__link:hover{color:var(--white)}
.navbar__link:hover::after{width:100%}
.navbar__cta{
  font-size:.72rem;font-weight:600;letter-spacing:.22em;
  text-transform:uppercase;color:var(--black);
  background:var(--white);padding:.65rem 1.5rem;
  transition:background var(--transition),color var(--transition)
}
.navbar__cta:hover{background:var(--ivory)}
.navbar__burger{display:none;flex-direction:column;gap:5px;padding:4px}
.navbar__burger span{
  display:block;width:26px;height:2px;background:var(--white);
  transition:transform var(--transition),opacity var(--transition);
  transform-origin:center
}
.navbar__burger--open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.navbar__burger--open span:nth-child(2){opacity:0}
.navbar__burger--open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media(max-width:768px){
  .navbar{padding:1.2rem 1.5rem}
  .navbar--scrolled{padding:.8rem 1.5rem}
  .navbar__burger{display:flex}
  .navbar__nav{
    position:fixed;top:0;right:-100%;bottom:0;
    width:75%;max-width:320px;
    flex-direction:column;justify-content:center;align-items:flex-start;
    gap:2rem;padding:3rem 2.5rem;
    background:var(--grey-1);
    transition:right .4s cubic-bezier(.4,0,.2,1)
  }
  .navbar__nav--open{right:0;box-shadow:-4px 0 24px rgba(0,0,0,.7)}
  .navbar__link{font-size:1rem;color:var(--white)}
  .navbar__cta{margin-top:1rem}
}
@media(max-width:480px){
  .navbar{padding:1rem}
  .navbar--scrolled{padding:.7rem 1rem}
  .navbar__logo-img{height:44px}
  .navbar__nav{width:100%;max-width:none;padding:5.5rem 1.25rem 2rem}
}

/* ── HERO ────────────────────────────────────── */
.hero{
  position:relative;height:100svh;min-height:600px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;background:var(--black)
}
.hero__video-wrap{position:absolute;top:0;right:0;bottom:0;left:0}
.hero__video{
  width:100%;height:100%;object-fit:cover;object-position:center;
  filter:grayscale(100%) contrast(1.1)
}
.hero__overlay{
  position:absolute;top:0;right:0;bottom:0;left:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.45),rgba(0,0,0,.62),rgba(0,0,0,.85))
}
.hero__content{
  position:relative;z-index:2;text-align:center;
  padding:0 1.5rem;max-width:860px
}
.hero__eyebrow{
  font-size:.68rem;letter-spacing:.45em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1.5rem
}
.hero__title{
  font-family:var(--font-sans);
  font-size:clamp(2.5rem,7vw,5.5rem);
  font-weight:700;line-height:.88;letter-spacing:.05em;
  color:var(--white);text-transform:uppercase;margin-bottom:1.4rem;
  overflow-wrap:break-word;word-break:break-word
}
.hero__title em{font-style:normal;font-weight:700;color:var(--ivory)}
.hero__tagline{
  font-size:clamp(.7rem,1.8vw,.88rem);letter-spacing:.4em;
  text-transform:uppercase;color:var(--grey-5);margin-bottom:3rem
}
.hero__actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.hero__btn{
  display:inline-block;font-size:.72rem;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;padding:1rem 2.4rem;
  transition:background var(--transition),color var(--transition),border-color var(--transition)
}
.hero__btn--primary{background:var(--white);color:var(--black)}
.hero__btn--primary:hover{background:var(--ivory)}
.hero__btn--ghost{border:1px solid rgba(255,255,255,.4);color:var(--white)}
.hero__btn--ghost:hover{border-color:var(--gold);color:var(--gold);background:rgba(201,168,76,.06)}

.hero__scroll{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  z-index:2;color:var(--grey-5);transition:color var(--transition)
}
.hero__scroll:hover{color:var(--gold)}
.hero__scroll-line{
  display:block;width:1px;height:48px;background:currentColor;
  animation:scrollPulse 2s ease-in-out infinite
}
.hero__scroll-label{font-size:.6rem;letter-spacing:.32em;text-transform:uppercase}

@keyframes scrollPulse{
  0%,100%{opacity:.3;transform:scaleY(1)}
  50%{opacity:1;transform:scaleY(1.15)}
}

@media(max-width:768px){
  .hero__content{padding:0 1rem;max-width:100%}
  .hero__eyebrow{letter-spacing:.28em;margin-bottom:1rem}
  .hero__title{font-size:clamp(1.8rem,9vw,4rem);line-height:.95;letter-spacing:.03em}
  .hero__tagline{letter-spacing:.2em;margin-bottom:2rem}
  .hero__actions{
    flex-direction:column;
    width:min(100%,320px);
    margin:0 auto;
    gap:.8rem
  }
  .hero__btn{width:100%;padding:.95rem 1rem;text-align:center}
  .hero__scroll{bottom:1.25rem}
}
@media(max-width:480px){.hero__title{font-size:clamp(1.5rem,8vw,2.8rem);letter-spacing:.02em}}

/* ── GALLERY / SLIDESHOW ─────────────────────── */
.slideshow{padding:6rem 2rem 4rem;background:var(--grey-1)}
.slideshow__header{text-align:center;margin-bottom:3rem}
.slideshow__stage{
  position:relative;max-width:1100px;margin:0 auto;
  aspect-ratio:16/10;overflow:hidden;
  background:var(--grey-2);border:1px solid var(--grey-3)
}
.slideshow__slide{
  position:absolute;top:0;right:0;bottom:0;left:0;
  opacity:0;transition:opacity .9s ease
}
.slideshow__slide--active{opacity:1}
.slideshow__slide img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  filter:grayscale(100%);transition:transform 8s ease
}
.slideshow__slide--active img{transform:scale(1.04)}

.slideshow__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:10;
  width:52px;height:52px;background:rgba(0,0,0,.65);
  color:var(--white);font-size:1.2rem;
  display:flex;align-items:center;justify-content:center;
  transition:background var(--transition),color var(--transition),border-color var(--transition);
  border:1px solid rgba(255,255,255,.12)
}
.slideshow__arrow:hover{
  background:rgba(201,168,76,.18);
  color:var(--gold);border-color:var(--gold-dim)
}
.slideshow__arrow--prev{left:1.2rem}
.slideshow__arrow--next{right:1.2rem}

.slideshow__counter{
  position:absolute;bottom:1.2rem;right:1.5rem;
  display:flex;align-items:center;gap:.6rem;
  font-size:.72rem;letter-spacing:.15em;
  color:rgba(255,255,255,.55);z-index:10
}
.slideshow__counter-sep{display:block;width:24px;height:1px;background:rgba(255,255,255,.3)}

.slideshow__dots{display:flex;justify-content:center;gap:.6rem;margin-top:1.8rem}
.slideshow__dot{
  width:28px;height:2px;background:var(--grey-3);
  transition:background var(--transition),width var(--transition)
}
.slideshow__dot--active{background:var(--gold);width:48px}

.slideshow__thumbs{
  display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap;
  max-width:1100px;margin:2rem auto 0
}
.slideshow__thumb{
  width:88px;height:64px;overflow:hidden;opacity:.35;
  border:1px solid transparent;
  transition:opacity var(--transition),border-color var(--transition);flex-shrink:0
}
.slideshow__thumb img{width:100%;height:100%;object-fit:cover;filter:grayscale(100%)}
.slideshow__thumb:hover{opacity:.65}
.slideshow__thumb--active{opacity:1;border-color:var(--gold)}

@media(max-width:640px){
  .slideshow{padding:4rem 1rem 2rem}
  .slideshow__arrow{width:38px;height:38px;font-size:1rem}
  .slideshow__thumb{width:60px;height:44px}
}
@media(max-width:520px){
  .section-title{letter-spacing:.08em;font-size:clamp(1.8rem,9vw,2.6rem)}
  .section-subtitle{letter-spacing:.24em}
}

/* ── ABOUT ───────────────────────────────────── */
.about{padding:7rem 2rem;background:var(--black)}
.about__inner{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center
}
.about__image-col{position:relative}
.about__image-frame{position:relative;z-index:1;overflow:hidden}
.about__image{
  width:100%;aspect-ratio:3/4;object-fit:cover;
  filter:grayscale(100%) contrast(1.05);display:block
}
.about__image-accent{
  position:absolute;top:1.5rem;left:1.5rem;right:-1.5rem;bottom:-1.5rem;
  border:1px solid var(--gold-dim);z-index:0
}
.about__body{color:var(--grey-6);font-size:1rem;line-height:1.85;margin-bottom:1.2rem}
.about__body strong{color:var(--white);font-weight:500}
.about__stats{
  display:flex;gap:2.5rem;margin-top:2.8rem;padding-top:2rem;
  border-top:1px solid var(--grey-3);list-style:none
}
.about__stat-num{
  display:block;font-family:var(--font-display);
  font-size:2.8rem;color:var(--gold);line-height:1
}
.about__stat-label{
  display:block;font-size:.7rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--grey-5);margin-top:.4rem
}

@media(max-width:820px){
  .about__inner{grid-template-columns:1fr;gap:3rem}
  .about__image-col{max-width:480px;margin:0 auto;width:100%}
  .about__stats{gap:1.5rem}
}
@media(max-width:520px){
  .about{padding:5rem 1.1rem}
  .about__stats{
    flex-wrap:wrap;
    row-gap:1.2rem;
    column-gap:1rem
  }
  .about__stats li{flex:1 1 45%;min-width:130px}
}

/* ── SERVICES ────────────────────────────────── */
.services{padding:7rem 2rem;background:var(--grey-1)}
.services__inner{max-width:1100px;margin:0 auto}
.services__header{text-align:center;margin-bottom:4rem}
.services__grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--grey-3);border:1px solid var(--grey-3);list-style:none
}
.service-card{
  background:var(--grey-1);padding:2.5rem 2rem;
  transition:background var(--transition);
  position:relative;overflow:hidden
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:var(--gold);transform:scaleX(0);
  transition:transform var(--transition);transform-origin:left
}
.service-card:hover{background:var(--grey-2)}
.service-card:hover::before{transform:scaleX(1)}
.service-card__icon{
  display:block;font-size:1.6rem;color:var(--grey-5);
  margin-bottom:1.2rem;line-height:1;transition:color var(--transition)
}
.service-card:hover .service-card__icon{color:var(--gold)}
.service-card__title{
  font-family:var(--font-display);font-size:1.25rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--white);margin-bottom:.9rem
}
.service-card__desc{font-size:.88rem;line-height:1.75;color:var(--grey-5)}

.services__cta{
  text-align:center;margin-top:4rem;
  display:flex;flex-direction:column;align-items:center;gap:1.4rem
}
.services__cta-note{font-size:.82rem;letter-spacing:.12em;color:var(--grey-5)}
.services__cta-btn{
  display:inline-block;font-size:.72rem;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;padding:1rem 2.8rem;
  border:1px solid rgba(255,255,255,.45);color:var(--white);
  transition:background var(--transition),color var(--transition),border-color var(--transition)
}
.services__cta-btn:hover{background:var(--gold);color:var(--black);border-color:var(--gold)}

@media(max-width:820px){.services__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){
  .services__grid{grid-template-columns:1fr}
  .service-card{padding:2rem 1.5rem}
}

/* ── CONTACT ─────────────────────────────────── */
.contact{padding:7rem 2rem;background:var(--black)}
.contact__inner{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1.1fr;gap:5rem;align-items:start
}
.contact__blurb{font-size:1rem;line-height:1.85;color:var(--grey-5);margin-bottom:2.5rem}
.contact__details{list-style:none;display:flex;flex-direction:column;gap:1.2rem}
.contact__detail-label{
  display:block;font-size:.62rem;letter-spacing:.28em;
  text-transform:uppercase;color:var(--gold);margin-bottom:.25rem
}
.contact__detail-val{font-size:.92rem;color:var(--grey-6)}
.contact__detail-link{transition:color var(--transition)}
.contact__detail-link:hover{color:var(--white)}

.contact__form{display:flex;flex-direction:column;gap:1.4rem}
.contact__field{display:flex;flex-direction:column;gap:.5rem}
.contact__label{font-size:.65rem;letter-spacing:.25em;text-transform:uppercase;color:var(--grey-5)}
.contact__input{
  background:var(--grey-2);border:1px solid var(--grey-3);
  color:var(--white);font-family:var(--font-sans);font-size:.95rem;
  padding:.85rem 1rem;outline:none;
  transition:border-color var(--transition),background var(--transition);
  -webkit-appearance:none;-moz-appearance:none;appearance:none
}
.contact__input::placeholder{color:var(--grey-4)}
.contact__input:focus{border-color:var(--gold);background:var(--grey-3)}
.contact__textarea{resize:vertical;min-height:120px}
.contact__input--date{color-scheme:dark}
.contact__submit{
  font-size:.72rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--black);background:var(--white);padding:1.1rem 2rem;
  transition:background var(--transition),color var(--transition);
  cursor:pointer;border:none;font-family:inherit;margin-top:.4rem
}
.contact__submit:hover:not(:disabled){background:var(--gold)}
.contact__submit:disabled{opacity:.5;cursor:wait}

.contact__success{
  display:flex;flex-direction:column;align-items:center;
  gap:1.2rem;padding:4rem 2rem;
  border:1px solid var(--gold-dim);text-align:center
}
.contact__success-icon{font-size:2rem;color:var(--gold)}
.contact__success p{font-size:1rem;color:var(--grey-6);letter-spacing:.05em}

@media(max-width:820px){.contact__inner{grid-template-columns:1fr;gap:3.5rem}}

/* ── FOOTER ──────────────────────────────────── */
.footer{background:var(--grey-1);border-top:1px solid var(--grey-3)}
.footer__inner{
  max-width:1100px;margin:0 auto;padding:5rem 2rem 3rem;
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem
}
.footer__logo{height:52px;width:auto;margin-bottom:1rem}
.footer__logo-text{
  font-family:var(--font-display);font-size:1rem;
  letter-spacing:.2em;color:var(--white);margin-bottom:1rem;display:block
}
.footer__tagline{font-size:.8rem;line-height:1.85;color:var(--grey-5);letter-spacing:.05em}
.footer__nav-heading{
  font-size:.62rem;letter-spacing:.3em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1.2rem
}
.footer__nav ul,.footer__social ul{
  list-style:none;display:flex;flex-direction:column;gap:.75rem
}
.footer__nav-link{font-size:.88rem;color:var(--grey-5);transition:color var(--transition)}
.footer__nav-link:hover{color:var(--white)}
.footer__bottom{
  border-top:1px solid var(--grey-3);padding:1.5rem 2rem;
  max-width:1100px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  font-size:.72rem;color:var(--grey-4);letter-spacing:.1em
}

@media(max-width:680px){
  .footer__inner{grid-template-columns:1fr 1fr}
  .footer__brand{grid-column:1/-1}
  .footer__bottom{flex-direction:column;gap:.5rem;text-align:center}
}
@media(max-width:420px){.footer__inner{grid-template-columns:1fr}}
@media(max-width:520px){
  .services,.contact{padding:5rem 1.1rem}
  .footer__inner{padding:4rem 1.1rem 2.5rem}
  .footer__bottom{padding:1.2rem 1.1rem}
}
