@font-face{ font-family:"Editors Note"; src:url("assets/fonts/EditorsNote-Thin.otf") format("opentype"); font-weight:200; font-style:normal; font-display:swap; }
@font-face{ font-family:"Editors Note"; src:url("assets/fonts/EditorsNote-ThinItalic.otf") format("opentype"); font-weight:200; font-style:italic; font-display:swap; }
@font-face{ font-family:"Editors Note"; src:url("assets/fonts/EditorsNote-Light.otf") format("opentype"); font-weight:300; font-style:normal; font-display:swap; }
@font-face{ font-family:"Editors Note"; src:url("assets/fonts/EditorsNote-LightItalic.otf") format("opentype"); font-weight:300; font-style:italic; font-display:swap; }
@font-face{ font-family:"Editors Note"; src:url("assets/fonts/EditorsNote-Regular.otf") format("opentype"); font-weight:400; font-style:normal; font-display:swap; }
@font-face{ font-family:"Editors Note"; src:url("assets/fonts/EditorsNote-Italic.otf") format("opentype"); font-weight:400; font-style:italic; font-display:swap; }
/* ============================================================
   Soul on Grey — Contact
   Same palette + type as the rest of the site.
   Page-local prefix: .ct-*
   ============================================================ */

:root{
  --bg:        #faf8f5;
  --bg-2:      #f3efe8;
  --bg-3:      #ebe5dc;
  --ink:       #1c1917;
  --ink-soft:  #44403c;
  --accent:    #9a8578;
  --muted:     #8a8278;
  --highlight: #c4b5a5;
  --rule:      rgba(28,25,23,0.12);

  --serif: "Editors Note", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Comfortaa", system-ui, -apple-system, sans-serif;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  /* tweakable */
  --bg-hero: #faf8f5;
  --bg-form: #faf8f5;
  --bg-faq: #f3efe8;
  --bg-coda: #faf8f5;
}

.theme-dark{
  --ink:       #f0ebe3;
  --ink-soft:  #d8d2c8;
  --accent:    #c4b5a5;
  --rule:      rgba(240,235,227,0.12);
  color: var(--ink);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.eyebrow{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

/* ---------- NAV ---------- */
.nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .5s ease, padding .5s ease, border-color .5s ease, color .5s ease;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  background: rgba(250,248,245,0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.nav.is-scrolled{
  background: rgba(250,248,245,0.92);
  padding: 14px var(--gutter);
  border-bottom-color: var(--rule);
}
.nav__brand{ display: flex; align-items: center; gap: 16px; font-family: var(--serif); }
.nav__brand__word{
  display: inline-block;
  white-space: nowrap;
  font-family: var(--serif);
  font-weight: 100;
  font-style: italic;
  font-size: clamp(26px, 2.1vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: currentColor;
  transform: translateY(1px);
}
.nav__brand__word .grey{ color: rgb(196,181,165); }
.nav__brand__logo{
  display: block;
  height: 56px;
  width: calc(56px * 4 / 5);
  background-color: currentColor;
  -webkit-mask: url("assets/sog-watermark.png") center / contain no-repeat;
  mask: url("assets/sog-watermark.png") center / contain no-repeat;
}
.nav__links{
  display: flex; gap: 28px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links a{ position: relative; padding-bottom: 4px; white-space: nowrap; }
.nav__links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.nav__links a:hover::after,
.nav__links a.is-active::after{ transform: scaleX(1); }
.nav__links a.is-active{ color: var(--ink); }
.nav__cta{
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 10px 18px;
  color: var(--ink);
  transition: border-color .4s ease, color .4s ease;
}
@media (max-width: 980px){ .nav__links{ display: none; } }

/* ---------- HERO ---------- */
.ct-hero{
  background: var(--bg-hero);
  padding: clamp(180px, 22vh, 240px) 0 clamp(56px, 8vh, 96px);
  position: relative;
}
.ct-hero__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.ct-hero__title{
  font-family: var(--serif);
  font-weight: 100;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.ct-hero__title .em{
  font-style: italic;
  color: var(--highlight);
  font-weight: 100;
}
.ct-hero__sub{
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.85;
  letter-spacing: 0.04em;
  opacity: 0.78;
  margin: clamp(28px, 4vw, 56px) 0 0;
  text-align: right;
  max-width: none;
}
.ct-hero__rule{
  height: 1px;
  background: #1c1917;
  border: 0;
  margin: clamp(56px, 7vw, 96px) auto 0;
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  width: 100%;
  opacity: 0.18;
}

/* ---------- FORM SPLIT ---------- */
.ct-form{
  background: var(--bg-form);
  padding: clamp(80px, 12vh, 160px) var(--gutter) clamp(110px, 16vh, 200px);
}
.ct-form__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: start;
}
body[data-form-layout="stacked"] .ct-form__inner{
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  gap: clamp(48px, 6vw, 80px);
}
.ct-form__intro{
  display: flex; flex-direction: column;
  gap: 36px;
}
.ct-form__intro h2{
  font-family: var(--serif);
  font-weight: 100;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 14ch;
  color: var(--ink);
}
.ct-form__intro h2 .em{
  font-style: italic;
  color: var(--highlight);
  font-weight: 100;
}
.ct-form__intro p{
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}
.ct-info{
  display: flex; flex-direction: column;
  gap: 28px;
  margin-top: 16px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.ct-info__item{ display: flex; flex-direction: column; gap: 6px; }
.ct-info__label{
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
}
.ct-info__value{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.ct-info__value a{ border-bottom: 1px solid transparent; transition: border-color .35s ease; }
.ct-info__value a:hover{ border-bottom-color: var(--accent); }
.ct-info__hint{
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.75;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ---------- form fields ---------- */
.ct-form__form{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
}
.ct-field{ display: flex; flex-direction: column; gap: 8px; position: relative; }
.ct-field--full{ grid-column: 1 / -1; }
.ct-field label{
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}
.ct-field label .opt{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-left: 8px;
}
.ct-field input,
.ct-field textarea{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0 14px;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink);
  outline: none;
  width: 100%;
  border-radius: 0;
  transition: border-color .35s ease;
  letter-spacing: -0.005em;
}
.ct-field textarea{
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  font-style: italic;
  font-size: clamp(17px, 1.2vw, 20px);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder{
  color: #faf8f5;
  opacity: 0.85;
  font-style: italic;
  font-weight: 200;
}
.ct-field input:focus,
.ct-field textarea:focus{ border-bottom-color: var(--ink); }
.ct-field input[type="date"]{ font-family: var(--serif); }

.ct-form__footer{
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-top: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}
.ct-consent{
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.75;
  max-width: 44ch;
  line-height: 1.6;
}
.ct-submit{
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 18px 36px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  transition: background .4s ease, color .4s ease;
  white-space: nowrap;
}
.ct-submit:hover{ background: var(--ink); color: var(--bg); }
.ct-submit__arrow{
  display: inline-block;
  transition: transform .4s ease;
}
.ct-submit:hover .ct-submit__arrow{ transform: translateX(6px); }

@media (max-width: 900px){
  .ct-form__inner{ grid-template-columns: 1fr; gap: 56px; }
  .ct-form__form{ grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.ct-faq{
  background: var(--bg-faq);
  padding: clamp(110px, 16vh, 200px) var(--gutter);
  border-top: 1px solid rgba(240,235,227,0.08);
}
.ct-faq__head{
  max-width: var(--maxw);
  margin: 0 auto clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.ct-faq__head h2{
  font-family: var(--serif);
  font-weight: 100;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 14ch;
  color: #f0ebe3;
}
.ct-faq__head h2 .em{ font-style: italic; color: #d4b8a8; font-weight: 100; }
.ct-faq__head .lede{
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: #d8d2c8;
  max-width: 38ch;
  margin-left: auto;
}
.ct-faq__list{
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(240,235,227,0.14);
}
.ct-faq__item{
  border-bottom: 1px solid rgba(240,235,227,0.14);
}
.ct-faq__item summary{
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: clamp(24px, 3vw, 36px) 0;
  font-family: var(--serif);
  font-weight: 100;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #f0ebe3;
  transition: opacity .3s ease;
}
.ct-faq__item summary::-webkit-details-marker{ display: none; }
.ct-faq__item:hover summary{ opacity: 0.7; }
.ct-faq__item .num{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #c4b5a5;
  letter-spacing: 0;
  min-width: 32px;
}
.ct-faq__item .icon{
  width: 16px; height: 16px;
  position: relative;
  flex: 0 0 16px;
  transition: transform .4s ease;
}
.ct-faq__item .icon::before,
.ct-faq__item .icon::after{
  content:""; position:absolute;
  background: #f0ebe3;
  top: 50%; left: 50%;
}
.ct-faq__item .icon::before{ width: 16px; height: 1px; transform: translate(-50%, -50%); }
.ct-faq__item .icon::after{ width: 1px; height: 16px; transform: translate(-50%, -50%); transition: transform .4s ease; }
.ct-faq__item[open] .icon::after{ transform: translate(-50%, -50%) scaleY(0); }
.ct-faq__answer{
  padding: 0 56px clamp(24px, 3vw, 36px) calc(32px + 32px);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  color: #c4b5a5;
  max-width: 64ch;
}
@media (max-width: 700px){
  .ct-faq__head{ grid-template-columns: 1fr; align-items: start; }
  .ct-faq__head .lede{ margin-left: 0; }
  .ct-faq__answer{ padding-left: 0; }
}

/* ---------- CODA ---------- */
.ct-coda{
  background: var(--bg-coda);
  text-align: center;
  padding: clamp(100px, 14vh, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.ct-coda__watermark{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, 80vw);
  opacity: 0.45;
  pointer-events: none;
  -webkit-user-select: none; user-select: none;
  z-index: 0;
}
.ct-coda > *:not(.ct-coda__watermark){ position: relative; z-index: 1; }
.ct-coda .ct-coda__line{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 100;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  max-width: 18ch;
  margin: 24px auto 0;
  color: var(--ink);
}
.ct-coda .ct-coda__line .em{ color: var(--highlight); }

/* ---------- FOOTER ---------- */
.footer{
  background: #14110f;
  color: #f0ebe3;
  padding: 80px var(--gutter) 36px;
}
.footer__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer__brand{ display:flex; flex-direction:column; gap: 22px; }
.footer__logo{
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: #f0ebe3;
  line-height: 1;
}
.footer__logo .grey{ color: #c4b5a5; font-style: italic; }
.footer__tag{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 100;
  font-size: 25px;
  color: #c4b5a5;
  letter-spacing: 0.02em;
}
.footer__about{
  font-size: 13px;
  line-height: 1.7;
  color: #d8d2c8;
  margin: 0;
  max-width: 38ch;
}
.footer__social{ display:flex; gap: 14px; margin-top: 6px; }
.footer__social a{
  width: 36px; height: 36px;
  border: 1px solid rgba(240,235,227,0.18);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #d8d2c8;
  transition: border-color .35s ease, color .35s ease;
}
.footer__social a:hover{ border-color: #c4b5a5; color: #f0ebe3; }
.footer__social svg{ width: 14px; height: 14px; }
.footer__col h4{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #c4b5a5;
  margin: 0 0 22px;
  font-weight: 400;
}
.footer__col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 12px; }
.footer__col a{ color: #d8d2c8; font-size: 14px; }
.footer__col a:hover{ color: #f0ebe3; }
.footer__col .small{ color: #8a8278; font-size: 12px; line-height: 1.6; }
.footer__bottom{
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(240,235,227,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a8278;
}
.footer__bottom .right{ display:flex; gap: 28px; }
@media (max-width: 820px){
  .footer__inner{ grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand{ grid-column: 1 / -1; }
  .footer__bottom{ flex-direction: column; gap: 16px; text-align: center; }
}

/* ---------- reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in{ opacity:1; transform: translateY(0); }
::selection{ background: var(--accent); color: var(--bg); }

/* ============================================================
   Tweaks panel
   ============================================================ */
.ct-tweaks{
  position: fixed; right: 24px; bottom: 24px;
  width: 300px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #faf8f5;
  color: #1c1917;
  border: 1px solid rgba(28,25,23,0.12);
  border-radius: 12px;
  box-shadow: 0 18px 60px -20px rgba(0,0,0,0.35), 0 4px 12px -4px rgba(0,0,0,0.18);
  font-family: "Comfortaa", system-ui, sans-serif;
  z-index: 9999;
  padding: 18px 18px 16px;
  display: none;
}
.ct-tweaks.is-open{ display: block; }
.ct-tweaks__head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 14px;
}
.ct-tweaks h4{
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #9a8578; font-weight: 500;
}
.ct-tweaks .x{ background: none; border: 0; cursor: pointer; color: #44403c; font-size: 16px; padding: 4px; }
.ct-tweaks .section-title{
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: #9a8578; margin: 18px 0 10px; font-weight: 500;
}
.ct-tweaks .seg{
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  border: 1px solid rgba(28,25,23,0.14); border-radius: 6px; overflow: hidden;
}
.ct-tweaks .seg button{
  padding: 8px 4px;
  font-family: "Comfortaa", sans-serif;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #44403c; background: transparent; border: 0;
  border-right: 1px solid rgba(28,25,23,0.08); cursor: pointer;
}
.ct-tweaks .seg button:last-child{ border-right: 0; }
.ct-tweaks .seg button.is-on{ background: #1c1917; color: #faf8f5; }
.ct-tweaks .seg button:hover:not(.is-on){ background: rgba(28,25,23,0.05); }
.ct-tweaks .color-row{
  display: grid; grid-template-columns: 32px 1fr 78px; align-items: center;
  gap: 10px; margin-bottom: 8px;
}
.ct-tweaks .color-row input[type=color]{
  width: 32px; height: 28px;
  border: 1px solid rgba(28,25,23,0.18); border-radius: 4px;
  padding: 0; background: transparent; cursor: pointer;
}
.ct-tweaks .color-row .name{ font-size: 12px; color: #44403c; }
.ct-tweaks .color-row input[type=text]{
  width: 100%; font-family: "Comfortaa", monospace;
  font-size: 11px; color: #1c1917;
  border: 1px solid rgba(28,25,23,0.14); border-radius: 4px;
  padding: 6px 8px; background: #fff;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* === SHARED MOBILE NAV CSS === */
/* -------------------- MOBILE NAV (shared) -------------------- */
.nav__burger{
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative;
  z-index: 1010;
  cursor: pointer;
  color: currentColor;
  background: transparent;
  border: 0;
  margin: -10px;
  padding: 0;
}
.nav__burger .b{
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform .35s ease, opacity .25s ease, top .35s ease;
}
.nav__burger .b::before,
.nav__burger .b::after{
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 1px;
  background: currentColor;
  transition: transform .35s ease, top .35s ease, opacity .25s ease;
}
.nav__burger .b::before{ top: -7px; }
.nav__burger .b::after{ top: 7px; }
body.is-menu-open .nav__burger .b{ background: transparent; }
body.is-menu-open .nav__burger .b::before{ top: 0; transform: rotate(45deg); }
body.is-menu-open .nav__burger .b::after { top: 0; transform: rotate(-45deg); }

.nav__overlay{
  position: fixed; inset: 0;
  z-index: 1000;
  background: #1a1714;
  color: #f0ebe3;
  display: flex; flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 96px 28px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1), visibility .55s;
  overflow-y: auto;
}
body.is-menu-open .nav__overlay{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__overlay__links{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: clamp(8px, 2vh, 18px);
  flex: 1;
  justify-content: center;
}
.nav__overlay__links li{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: 0ms;
}
body.is-menu-open .nav__overlay__links li{ opacity: 1; transform: translateY(0); }
body.is-menu-open .nav__overlay__links li:nth-child(1){ transition-delay: 120ms; }
body.is-menu-open .nav__overlay__links li:nth-child(2){ transition-delay: 200ms; }
body.is-menu-open .nav__overlay__links li:nth-child(3){ transition-delay: 280ms; }
body.is-menu-open .nav__overlay__links li:nth-child(4){ transition-delay: 360ms; }
.nav__overlay__links a{
  display: inline-block;
  font-family: var(--serif);
  font-weight: 100;
  font-style: italic;
  font-size: clamp(48px, 12vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #f0ebe3;
  text-decoration: none;
  transition: color .3s ease, opacity .3s ease;
}
.nav__overlay__links a:hover{ color: #c4b5a5; }
.nav__overlay__links a.is-active{ color: #c4b5a5; }
.nav__overlay__foot{
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(240,235,227,0.14);
  opacity: 0;
  transition: opacity .6s ease;
  transition-delay: 480ms;
}
body.is-menu-open .nav__overlay__foot{ opacity: 1; }
.nav__overlay__foot a{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c4b5a5;
}
.nav__overlay__foot small{
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #8a8278;
}
body.is-menu-open{ overflow: hidden; }

@media (max-width: 820px){
  .nav__burger{ display: inline-flex; }
  .nav__cta{ display: none; }
  .nav__links{ display: none !important; }
  .nav__brand__logo{ height: 48px !important; width: calc(48px * 4 / 5) !important; }
  .nav__brand__word{ font-size: 22px !important; }
  .nav{ padding-top: 16px !important; padding-bottom: 16px !important; }
}
/* === SHARED MOBILE NAV CSS END === */

/* === MOBILE FINISHING CSS === */
/* Universal — fixed-width hero subs become fluid */
@media (max-width: 820px){
  [class$="hero__sub"], [class*="hero__sub "]{
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    margin-top: clamp(20px, 4vw, 32px) !important;
  }
  [class$="hero__sub"] br, [class*="hero__sub "] br{ display: none; }
}

/* Universal — footer crunch */
@media (max-width: 720px){
  .footer{ padding: 56px 24px 28px; }
  .footer__inner{ grid-template-columns: 1fr !important; gap: 40px; }
  .footer__brand{ grid-column: 1 !important; }
  .footer__logo{ font-size: 28px !important; }
  .footer__tag{ font-size: 20px !important; }
  .footer__about{ font-size: 13px; max-width: 100%; }
  .footer__bottom{
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 9.5px !important;
    letter-spacing: 0.24em !important;
  }
  .footer__bottom .right{ gap: 18px; }
}

@media (max-width: 720px){
  .ct-hero{ padding-top: 140px; padding-bottom: 0; }
  .ct-hero__title{ font-size: clamp(68px, 20vw, 120px) !important; line-height: 0.94 !important; padding-left: 24px; padding-right: 24px; }
  .ct-hero__sub{
    font-size: 14px !important;
    line-height: 1.7 !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .ct-hero__rule{ margin-top: 48px !important; width: calc(100% - 48px) !important; }

  .ct-form{ padding: 64px 24px 80px !important; }
  .ct-form__inner{ grid-template-columns: 1fr !important; gap: 48px !important; }
  .ct-form__intro h2{ font-size: clamp(32px, 9vw, 48px) !important; max-width: none !important; }
  .ct-form__intro p{ font-size: 14px !important; max-width: none !important; }
  .ct-info__value{ font-size: 22px !important; }
  .ct-form__form{ grid-template-columns: 1fr !important; gap: 28px !important; }
  .ct-field input, .ct-field textarea{
    font-size: 18px !important;
    padding: 10px 0 12px !important;
  }
  .ct-field--full{ grid-column: 1 / -1 !important; }
  .ct-form__footer{ flex-direction: column !important; align-items: flex-start !important; gap: 20px !important; }
  .ct-submit{ width: 100%; justify-content: center; padding: 16px 24px !important; }

  .ct-faq{ padding: 80px 24px !important; }
  .ct-faq__head{ grid-template-columns: 1fr !important; gap: 16px !important; }
  .ct-faq__head h2{ font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.06 !important; max-width: none !important; }
  .ct-faq__head .lede{ margin-left: 0 !important; font-size: 13px !important; max-width: none !important; }
  .ct-faq__item summary{ font-size: 18px !important; gap: 16px !important; padding: 20px 0 !important; }
  .ct-faq__item .num{ font-size: 13px !important; min-width: 22px !important; }
  .ct-faq__answer{ padding: 0 0 20px 38px !important; font-size: 13px !important; }

  .ct-coda{ padding-left: 24px; padding-right: 24px; }
  .ct-coda .ct-coda__line{ font-size: clamp(22px, 6vw, 32px) !important; max-width: none !important; }

  /* Tweaks panel */
  .ct-tweaks{
    right: 12px !important; bottom: 12px !important; left: 12px !important;
    width: auto !important;
    max-height: 70vh !important;
  }
}
/* === MOBILE FINISHING CSS END === */

/* finalised design values (baked from Tweaks panel) */
:root{
  --bg-hero:#c6c6c6;
  --bg-form:#c6c6c6;
  --bg-faq:#1A1714;
  --bg-coda:#faf8f5;
}
