
:root{
  --ink:#0f0f10;
  --muted:rgba(15,15,16,.65);
  --muted2:rgba(15,15,16,.78);
  --line:rgba(0,0,0,.08);
  --soft:rgba(0,0,0,.03);
  --gold:#c6a85b;

  --padX: 34px;
  --sectionY: 110px;
  --radius: 18px;
}

*{ box-sizing:border-box; }
a{ text-decoration:none; color:inherit; }

html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:#fff;
  color:var(--ink);
  line-height:1.6;

  /* sharper text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.container{ max-width:1200px; margin:0 auto; padding:0 var(--padX); }

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 24px 0;
  gap: 18px;
}

/* Micro-animation on logo */
.brand{
  display:inline-flex;
  align-items:center;
  border-radius: 14px;
  transition: transform .18s ease, filter .18s ease;
  will-change: transform;
}
.brand:hover{
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.10));
}
.brand__logo{ height:64px; display:block; }

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:14px;
  color:var(--muted);
}
.nav__link{
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav__link:hover{
  background: var(--soft);
  color: rgba(15,15,16,.85);
  transform: translateY(-1px);
}

/* Header Contact button */
.nav__btn{
  --mx:50%; --my:50%;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.18);
  background:rgba(255,255,255,.72);
  color:var(--ink);
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:12px;
  position:relative;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.nav__btn::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(170px 120px at var(--mx) var(--my), rgba(198,168,91,.18), transparent 60%);
  opacity:.75;
  pointer-events:none;
  transition: opacity .18s ease;
}
.nav__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  border-color: rgba(17,17,17,.28);
  background: rgba(255,255,255,.92);
}
.nav__btn:active{ transform: translateY(0) scale(.99); }
.nav__icon{ transition: transform .18s ease; opacity:.9; }
.nav__btn:hover .nav__icon{ transform: translateX(3px); }

/* Type */
h1, .h2, .h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:500;
}

.hero{
  position:relative;
  height: 92vh;
  min-height: 720px;
  overflow:hidden;
  border-bottom: 1px solid rgba(198,168,91,.35); /* gold accent */
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.34), rgba(0,0,0,.56));
}
.hero__content{
  position:absolute;
  bottom: 150px;
  color:#fff;
}

.eyebrow{
  letter-spacing:.25em;
  font-size:11px;
  text-transform:uppercase;
  opacity:.95;
  margin: 0 0 12px;
}

h1{
  font-size: 60px;
  max-width: 900px;
  line-height: 1.08;
  margin: 0 0 14px;
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.lede{
  max-width: 760px;
  font-size: 16px;
  opacity: .92;
  margin: 0 0 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.hero__actions{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }

/* Sections */
.section{ padding: var(--sectionY) 0; }
.section--line{ border-top:1px solid var(--line); }
.section--intro{ padding-top: calc(var(--sectionY) - 10px); }
.centered{ text-align:center; max-width: 920px; margin: 0 auto; }
.section__head{ margin-bottom: 22px; }

.h2{
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 600;
}
.h3{
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 600;
}
.body{
  font-size: 15px;
  color: var(--muted2);
  margin: 0 0 12px;
}
.body--muted{ color: var(--muted); }
.body--lead{ font-size: 16px; }

.grid{ display:grid; gap: 44px; }
.grid--2{ grid-template-columns: 1.05fr .95fr; }

.panel{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255,255,255,.94);
}

.list{ margin: 0; padding-left: 18px; color: var(--muted2); }
.list li{ margin: 10px 0; }

.link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 8px;
  opacity: .9;
  transition: transform .18s ease, opacity .18s ease;
}
.link:hover{ transform: translateX(2px); opacity: 1; }

/* Buttons */
.btn{
  --mx:50%;
  --my:50%;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(180px 140px at var(--mx) var(--my), rgba(255,255,255,.30), transparent 60%);
  opacity:.65;
  transition: opacity .18s ease;
  pointer-events:none;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.65);
}
.btn:active{ transform: translateY(0) scale(.99); }
.btn__icon{ transition: transform .18s ease; opacity:.9; }
.btn:hover .btn__icon{ transform: translateX(3px); }

.btn--primary{
  background: rgba(17,17,17,.86);
  border-color: rgba(255,255,255,.20);
}
.btn--primary::before{
  background: radial-gradient(180px 140px at var(--mx) var(--my), rgba(198,168,91,.28), transparent 60%);
}
.btn--primary:hover{ background: rgba(17,17,17,.94); }

.btn--ghost{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.55);
}
.btn--ghost::before{
  background: radial-gradient(180px 140px at var(--mx) var(--my), rgba(255,255,255,.26), transparent 60%);
}

.btn--dark{
  border-color: rgba(17,17,17,.18);
  background: rgba(17,17,17,.95);
  backdrop-filter: none;
}
.btn--dark::before{
  background: radial-gradient(180px 140px at var(--mx) var(--my), rgba(198,168,91,.22), transparent 60%);
}
.btn--dark:hover{ background: rgba(17,17,17,1); }

/* CTA + Footer */
.cta__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 20px;
}
.footer{
  border-top:1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer__inner{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap: 14px;
}


/* Reveal (translate3d + unobserve for crisp text) */
.reveal{
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .brand, .nav__link, .nav__btn, .btn, .link{
    transition:none !important;
  }
  .brand:hover, .nav__link:hover, .nav__btn:hover, .btn:hover, .link:hover{
    transform:none !important;
  }
}

/* Mobile refinement */
@media (max-width: 980px){
  :root{ --padX: 24px; --sectionY: 92px; }
  .grid--2{ grid-template-columns: 1fr; gap: 26px; }
  .hero{ height: 86vh; min-height: 640px; }
  .hero__content{ bottom: 120px; }
  h1{ font-size: 50px; }
  .cta__inner{ flex-direction: column; align-items:flex-start; }
}
@media (max-width: 560px){
  /* Hero: content-driven layout avoids overlay showing below image */
  .hero{
    height:auto;
    min-height:0;
    padding: 118px 0 58px;
  }
  .hero__content{
    position:relative;
    bottom:auto;
  }

  /* Hero buttons: stack only on mobile */
  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  .hero__actions .btn{
    width:100%;
    justify-content:center;
  }
}
.brand__logo{ height: 54px; }
  .nav{ gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .nav__link{ padding: 8px 10px; }
  .nav__btn{ padding: 10px 12px; }
  .hero__content{ bottom: 102px; }
  h1{ font-size: 42px; }
  .lede{ font-size: 15px; }
  .btn{ padding: 13px 16px; }
}

.hide-sm{ display:inline; }
@media (max-width: 560px){ .hide-sm{ display:none; } }

@media (max-width: 560px){
  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  .hero__actions .btn{
    width:100%;
    justify-content:center;
  }
}
/* Ensure hero media covers full hero area (prevents grey band on some mobile browsers) */
.hero__media{ position:absolute; inset:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; display:block; }
