*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:#f7f3ec;
  color:#1c1a17;
  line-height:1.58;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

header{
  position:sticky;
  top:0;
  z-index:30;
  background:#f7f3ec;
  border-bottom:1px solid #d9d1c6;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
}

.logo-wrap{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo-img{
  height:86px;
  width:auto;
  display:block;
}

nav ul{
  display:flex;
  gap:22px;
  list-style:none;
  padding:0;
  margin:0;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:#1c1a17;
  font-size:15px;
}

nav a:hover{
  color:#c8a96a;
}

.hero,
.page-hero{
  padding:84px 0 64px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:center;
}

.eyebrow{
  color:#c8a96a;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}

h1,
h2,
h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:1.05;
  margin:0 0 14px;
}

h1{
  font-size:72px;
  max-width:820px;
}

h2{
  font-size:46px;
}

h3{
  font-size:30px;
}

.lead{
  color:#6f675b;
  font-size:21px;
  max-width:760px;
}

.hero-actions,
.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding:14px 26px;
  border-radius:999px;
  font-weight:700;
}

.btn-primary{
  background:#c8a96a;
  color:#1a1713;
  border:1px solid #c8a96a;
}

.btn-secondary{
  background:#ffffff;
  color:#1c1a17;
  border:1px solid #d9d1c6;
}

.btn-contrast{
  background:#1c1a17;
  color:#f7f3ec;
  border:1px solid #1c1a17;
}

.section{
  padding:78px 0;
}

.surface{
  background:#ffffff;
}

.grid-3,
.grid-2{
  display:grid;
  gap:24px;
}

.grid-3{
  grid-template-columns:repeat(3, 1fr);
}

.grid-2{
  grid-template-columns:repeat(2, 1fr);
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
  min-width:0;
}

.card{
  background:#ffffff;
  border:1px solid #d9d1c6;
  border-radius:18px;
  padding:24px;
  min-width:0;
}

.card p,
.muted{
  color:#6f675b;
}

.list{
  padding-left:20px;
  color:#6f675b;
}

.small{
  font-size:14px;
  color:#6f675b;
}

.note-box{
  padding:18px 20px;
  border-radius:16px;
  border:1px solid #d9d1c6;
  background:#f8f4ee;
}

.metric-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:26px;
}

.metric{
  padding:14px 16px;
  border-radius:16px;
  background:#ffffff;
  border:1px solid #d9d1c6;
}

.metric strong{
  display:block;
  font-size:22px;
  color:#1c1a17;
}

.metric span{
  display:block;
  font-size:13px;
  color:#6f675b;
}

.media-card{
  border-radius:28px;
  overflow:hidden;
  border:1px solid #d9d1c6;
  background:#ffffff;
}

.media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/5;
}

.media-caption{
  padding:14px 18px;
  border-top:1px solid #d9d1c6;
  color:#6f675b;
  font-size:14px;
}

.image-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:26px;
}

.image-tile{
  border:1px solid #d9d1c6;
  border-radius:18px;
  overflow:hidden;
  background:#f1ebe1;
}

.image-tile img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.image-tile .label{
  padding:12px 14px;
  color:#6f675b;
  font-size:13px;
  letter-spacing:0.04em;
  text-transform:uppercase;
}

.form{
  display:grid;
  gap:16px;
  min-width:0;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  column-gap:16px;
  row-gap:16px;
  width:100%;
  min-width:0;
}

.form-grid > label{
  display:block;
  width:100%;
  min-width:0;
}

label{
  font-weight:700;
  font-size:14px;
}

label input,
label select,
label textarea{
  display:block;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  box-sizing:border-box !important;
  margin-top:8px;
  border-radius:14px;
  border:1px solid #d9d1c6;
  background:#ffffff;
  color:#1c1a17;
  padding:14px 16px;
  font:inherit;
}

textarea{
  min-height:160px;
  resize:vertical;
}

.card-image{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  margin-top:12px;
  display:block;
}

.band{
  background:#c8a96a;
  color:#1a1713;
}

.band h2,
.band p{
  color:#1a1713;
}

footer{
  border-top:1px solid #d9d1c6;
  padding:34px 0 60px;
  color:#6f675b;
  background:#f3eee6;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:24px;
}

.menu-toggle{
  display:none;
  width:52px;
  height:52px;
  padding:0;
  border-radius:14px;
  background:#c8a96a;
  border:none;
  cursor:pointer;
  position:relative;
}

.menu-toggle-bar{
  position:absolute;
  left:50%;
  width:22px;
  height:2px;
  background:#1a1713;
  border-radius:2px;
  transform:translateX(-50%);
  display:block;
}

.menu-toggle-bar:nth-child(1){ top:18px; }
.menu-toggle-bar:nth-child(2){ top:25px; }
.menu-toggle-bar:nth-child(3){ top:32px; }

.menu-toggle.is-open .menu-toggle-bar:nth-child(1){
  top:25px;
  transform:translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2){ opacity:0; }

.menu-toggle.is-open .menu-toggle-bar:nth-child(3){
  top:25px;
  transform:translateX(-50%) rotate(-45deg);
}

@media (max-width:1040px){
  .hero-grid,
  .split,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .media-card img{
    aspect-ratio:16/10;
  }
}

@media (max-width:900px){

  .nav{
    padding:14px 0;
  }

  .wrap{
    padding-left:24px;
    padding-right:24px;
  }

  h1{
    font-size:44px;
    line-height:1.08;
    max-width:100%;
    overflow-wrap:break-word;
  }

  h2{ font-size:40px; }

  .hero,
  .page-hero{
    padding:70px 0 40px;
  }

  .grid-3,
  .grid-2,
  .image-strip,
  .metric-strip,
  .form-grid{
    grid-template-columns:1fr;
  }

  .nav{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:16px;
  }

  .logo-wrap{
    grid-column:1 / 2;
  }

  .logo-img{
    height:64px; /* FIXED */
  }

  .menu-toggle{
    display:block;
    grid-column:2 / 3;
    justify-self:end;
  }

  .nav nav{
    grid-column:1 / -1;
    width:100%;
  }

  .nav nav ul{
    display:none;
    flex-direction:column;
    gap:12px;
    width:100%;
    margin:0;
    padding-top:12px;
  }

  .nav nav ul.active{
    display:flex;
  }

  .nav nav a{
    display:block;
    padding:10px 0;
  }
}