:root{
  --bg:#f4f0e8;
  --surface:#fbf8f2;
  --surface-2:#f8f3ea;
  --text:#1f1a17;
  --muted:#6f665d;
  --line:#ddd2c3;
  --gold:#b38a3d;
  --gold-dark:#8f6a28;
  --deep:#2e241c;
  --shadow:0 18px 50px rgba(40,28,18,.08);
  --max:1240px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
  overflow-x:hidden;
}

img{
  display:block;
  width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(244,240,232,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:.3s ease;
}

.site-header.scrolled{
  border-bottom-color:var(--line);
}

.nav{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  font-weight:700;
  letter-spacing:.06em;
}

.menu-toggle{
  display:none;
  border:none;
  background:none;
  color:var(--text);
  font-size:28px;
  cursor:pointer;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:14px;
  align-items:center;
}

.nav-links a{
  padding:10px 14px;
  font-size:.95rem;
  color:var(--muted);
  border:1px solid transparent;
  transition:.2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,255,.45);
}

.hero{
  padding:52px 0 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:stretch;
}

.hero-copy{
  padding:48px 44px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:var(--gold-dark);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero-copy h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3rem, 5vw, 5.2rem);
  line-height:.95;
  font-weight:700;
  margin-bottom:18px;
}

.hero-copy p{
  color:var(--muted);
  max-width:58ch;
  font-size:1rem;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  font-weight:700;
  letter-spacing:.04em;
  transition:.2s ease;
}

.btn-primary{
  background:var(--gold);
  color:#fff;
  border:1px solid var(--gold);
}

.btn-primary:hover{
  background:var(--gold-dark);
  border-color:var(--gold-dark);
}

.btn-secondary{
  background:transparent;
  border:1px solid var(--deep);
  color:var(--deep);
}

.btn-secondary:hover{
  background:var(--deep);
  color:#fff;
}

.hero-media{
  position:relative;
  min-height:600px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-media img{
  height:100%;
  object-fit:cover;
}

.hero-panel{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  background:rgba(251,248,242,.92);
  border:1px solid var(--line);
  padding:18px 20px;
}

.hero-panel h3{
  font-family:"Cormorant Garamond", serif;
  font-size:1.6rem;
  margin-bottom:6px;
}

.hero-panel p{
  color:var(--muted);
}

.section{
  padding:80px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:28px;
}

.section-head h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.2rem, 4vw, 3.6rem);
  line-height:1;
  font-weight:700;
}

.section-head p{
  max-width:56ch;
  color:var(--muted);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.feature-card{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:.25s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
}

.feature-card img{
  height:250px;
  object-fit:cover;
}

.feature-copy{
  padding:22px;
}

.feature-copy h3{
  font-family:"Cormorant Garamond", serif;
  font-size:1.9rem;
  line-height:1;
  margin-bottom:10px;
}

.feature-copy p{
  color:var(--muted);
}

.layout{
  display:grid;
  grid-template-columns:1.45fr .8fr;
  gap:30px;
}

.article{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:34px;
}

.article h2{
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  line-height:1.05;
  margin:28px 0 12px;
}

.article p{
  margin-bottom:18px;
  color:#453c35;
}

.sidebar{
  display:grid;
  gap:20px;
}

.box{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.box h3{
  font-family:"Cormorant Garamond", serif;
  font-size:1.7rem;
  margin-bottom:12px;
}

.box p,
.box li{
  color:var(--muted);
}

.box ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.page-hero{
  padding:46px 0 26px;
}

.page-head{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:36px;
}

.page-head h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.6rem, 4vw, 4.5rem);
  line-height:1;
  margin-bottom:10px;
}

.cover{
  margin-top:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.cover img{
  height:420px;
  object-fit:cover;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.contact-card,
.form-card{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:30px;
}

.contact-card h2,
.form-card h2{
  font-family:"Cormorant Garamond", serif;
  font-size:2.4rem;
  line-height:1;
  margin-bottom:14px;
}

.contact-card p,
.form-card p{
  color:var(--muted);
  margin-bottom:14px;
}

form{
  display:grid;
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
}

label{
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.03em;
}

input,
textarea{
  width:100%;
  border:1px solid var(--line);
  background:var(--surface-2);
  color:var(--text);
  padding:16px 18px;
  outline:none;
  font:inherit;
}

textarea{
  min-height:180px;
  resize:vertical;
}

input:focus,
textarea:focus{
  border-color:var(--gold);
}

.footer{
  padding:22px 0 44px;
}

.footer-inner{
  padding-top:22px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:var(--muted);
}

.reveal{
  opacity:1;
  transform:none;
}

.reveal.js-ready{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width:980px){
  .hero-grid,
  .feature-grid,
  .layout,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-media{
    min-height:380px;
  }

  .cover img{
    height:280px;
  }
}

@media (max-width:760px){
  .menu-toggle{
    display:block;
  }

  .nav{
    position:relative;
  }

  .nav-links{
    position:absolute;
    top:90px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:14px;
    background:rgba(244,240,232,.98);
    border-bottom:1px solid var(--line);
  }

  .nav-links.show{
    display:flex;
  }

  .hero-copy{
    padding:28px;
  }
}