:root{
  --bg:#f6f0e7;
  --paper:#fffaf3;
  --paper-2:#f3eadf;
  --text:#2e241c;
  --muted:#74685e;
  --line:#ddcfbf;

  --burgundy:#7d3b45;
  --olive:#7a8262;
  --gold:#b68d52;
  --rose:#d8b3a7;

  --shadow:0 18px 45px rgba(70,48,28,.08);
  --max:1260px;
}

*{
  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(246,240,231,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:.3s ease;
}

.site-header.scrolled{
  border-bottom-color:var(--line);
}

.nav{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  font-family:"Cormorant Garamond", serif;
  font-size:2.2rem;
  font-weight:700;
  letter-spacing:.05em;
}

.menu-toggle{
  display:none;
  border:none;
  background:none;
  font-size:28px;
  color:var(--text);
  cursor:pointer;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border:1px solid var(--line);
  background:var(--paper);
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.03em;
  transition:.2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  background:var(--burgundy);
  border-color:var(--burgundy);
  color:#fff;
}

.hero{
  padding:44px 0 34px;
}

.hero-shell{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.hero-copy{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:46px;
  position:relative;
}

.hero-copy::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:10px;
  background:linear-gradient(to bottom, var(--gold), var(--rose));
}

.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:var(--burgundy);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero-copy h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3rem,5vw,5.6rem);
  line-height:.92;
  margin-bottom:18px;
}

.hero-copy p{
  color:var(--muted);
  max-width:60ch;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  transition:.2s ease;
}

.btn-primary{
  background:var(--burgundy);
  border:1px solid var(--burgundy);
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.btn-secondary{
  background:transparent;
  border:1px solid var(--text);
  color:var(--text);
}

.btn-secondary:hover{
  background:var(--text);
  color:#fff;
}

.hero-visual{
  display:grid;
  grid-template-rows:1fr auto;
  gap:18px;
}

.hero-image{
  min-height:520px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-image img{
  height:100%;
  object-fit:cover;
}

.hero-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.mini-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:18px;
}

.mini-card strong{
  display:block;
  font-family:"Cormorant Garamond", serif;
  font-size:1.5rem;
  margin-bottom:4px;
}

.section{
  padding:78px 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.3rem,4vw,4rem);
  line-height:1;
}

.section-head p{
  max-width:55ch;
  color:var(--muted);
}

.bento{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  grid-template-rows:auto auto;
  gap:22px;
}

.bento-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.bento-card.large{
  grid-row:span 2;
}

.bento-card img{
  height:100%;
  object-fit:cover;
}

.bento-copy{
  padding:24px;
}

.bento-copy h3{
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  margin-bottom:8px;
}

.bento-copy p{
  color:var(--muted);
}

.layout{
  display:grid;
  grid-template-columns:1.45fr .85fr;
  gap:30px;
}

.article{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:36px;
}

.article h2{
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  line-height:1.03;
  margin:28px 0 12px;
}

.article p{
  margin-bottom:18px;
  color:#463c34;
}

.sidebar{
  display:grid;
  gap:20px;
}

.side-card{
  background:var(--paper-2);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.side-card h3{
  font-family:"Cormorant Garamond", serif;
  font-size:1.9rem;
  margin-bottom:12px;
}

.side-card p,
.side-card li{
  color:var(--muted);
}

.side-card ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.side-card li{
  padding-left:18px;
  position:relative;
}

.side-card li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--burgundy);
}

.page-hero{
  padding:44px 0 26px;
}

.page-head{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:38px;
}

.page-head h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.8rem,4vw,5rem);
  line-height:.95;
  margin-bottom:10px;
}

.cover{
  margin-top:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.cover img{
  height:430px;
  object-fit:cover;
}

/* VERY DIFFERENT CONTACT PAGE */
.contact-hero{
  padding:44px 0 28px;
}

.contact-shell{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:stretch;
}

.contact-left{
  background:var(--burgundy);
  color:#fff;
  padding:42px;
  min-height:620px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:var(--shadow);
}

.contact-left h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3rem,4vw,4.8rem);
  line-height:.92;
  margin-bottom:18px;
}

.contact-left p{
  color:rgba(255,255,255,.82);
  max-width:40ch;
}

.contact-list{
  list-style:none;
  display:grid;
  gap:16px;
  margin-top:30px;
}

.contact-list li{
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.contact-list span{
  display:block;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.7;
  margin-bottom:4px;
}

.contact-right{
  display:grid;
  grid-template-rows:auto 1fr;
  gap:22px;
}

.contact-top{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.contact-top h2{
  font-family:"Cormorant Garamond", serif;
  font-size:2.2rem;
  line-height:1;
  margin-bottom:10px;
}

.contact-form-wrap{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:32px;
}

form{
  display:grid;
  gap:18px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
}

label{
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.03em;
}

input,
textarea,
select{
  width:100%;
  border:1px solid var(--line);
  background:#fffdf9;
  color:var(--text);
  padding:16px 18px;
  outline:none;
  font:inherit;
}

textarea{
  min-height:180px;
  resize:vertical;
}

input:focus,
textarea:focus,
select:focus{
  border-color:var(--burgundy);
}

.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-shell,
  .bento,
  .layout,
  .contact-shell{
    grid-template-columns:1fr;
  }

  .hero-image{
    min-height:340px;
  }

  .cover img{
    height:280px;
  }

  .contact-left{
    min-height:auto;
  }
}

@media (max-width:760px){
  .menu-toggle{
    display:block;
  }

  .nav{
    position:relative;
  }

  .nav-links{
    position:absolute;
    top:88px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    background:rgba(246,240,231,.98);
    border-bottom:1px solid var(--line);
  }

  .nav-links.show{
    display:flex;
  }

  .hero-copy,
  .page-head,
  .article,
  .contact-left,
  .contact-top,
  .contact-form-wrap{
    padding:28px;
  }

  .form-row{
    grid-template-columns:1fr;
  }
}