/* ===============================
   1. DESIGN TOKENS
================================= */

:root {
  /* Core backgrounds */
  --bg-main: #E7E5DB;   /* warm stone */
  --bg-soft: #FAF9F6;   /* soft white */
  --bg-sepia: #BBB1A4;  /* warm neutral (use as a wash, not solid) */

  /* Anchors */
  --sage: #7E7358;      /* your signature block color */
  --olive: #575342;     /* deep olive (structure + micro accents) */
  --warm: #825C42;      /* gingerbread (tiny warm accents) */
  --shadow: #1C1914;    /* soft-black replacement */
  /* earthy editorial accents */
  --taupe: #938977;   /* warm taupe */
  --sepia: #BBB1A4;   /* soft sepia */
  --mahogany: #4E362C; /* deep warm brown (micro use) */
  
  /* Text (do not use pure black) */
  --text-main: rgba(28, 25, 20, 0.86);   /* shadow ink */
  --text-strong: rgba(28, 25, 20, 0.92);
  --text-muted: rgba(28, 25, 20, 0.62);
  --text-faint: rgba(28, 25, 20, 0.46);

  /* Surfaces + lines */
  --surface: rgba(250, 249, 246, 0.78);
  --surface-2: rgba(250, 249, 246, 0.62);
  --line: rgba(28, 25, 20, 0.10);
  --line-soft: rgba(28, 25, 20, 0.06);

  /* Shadows (very soft, editorial) */
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.08);

  /* Layout */
  --max-width: 1200px;
}

/* ===============================
   2. RESET
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--text-strong); }


/* ===============================
   3. TYPOGRAPHY
================================= */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

h1 {
  font-size: 56px;
}
h1, h2, h3, h4 { color: var(--text-strong); }

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 16px;
}

a {
  text-decoration: none;
  color: var(--text-main);
}
/* Softer heading ink (editorial) */
h1, h2, h3, h4 {
  color: rgba(59,58,54,0.86);
}


/* ===============================
   4. LAYOUT
================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
/* ===============================
   INTERIOR PAGE HERO SYSTEM
   Shared by: owners / studio / case-study
================================= */

/* ===============================
   5. HEADER
================================= */

.site-header {
  background: var(--bg-main);
  padding: 28px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  line-height: 1.1;
  color: var(--text-main);
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
  color: var(--text-main);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 18px; /* slightly larger */
  letter-spacing: 0.06em;
}

.nav a {
  color: var(--text-main);
}

.lang-toggle {
  display: flex;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}

.lang-toggle span {
  color: var(--text-muted);
}

.lang-toggle .active {
  color: var(--text-main);
}
/* ===============================
   MOBILE MENU
================================= */

.menu-toggle{
  display: none;
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.menu-toggle span{
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(59,58,54,0.88);
  transition: transform 220ms ease, opacity 220ms ease;
}

/* optional active state */
.menu-toggle.is-open span:nth-child(1){
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3){
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 780px){
  .site-header{
    padding: 22px 0;
  }

  .header-inner{
    position: relative;
    align-items: flex-start;
  }

  .logo{
    font-size: 20px;
    line-height: 1.08;
    max-width: 150px;
    letter-spacing: 0.16em;
  }
  
  .menu-toggle{
    display: flex;
    margin-top: 6px;
  }

  .site-header .nav{
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: 0;
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px 24px;
    background: var(--bg-main);
    border: 1px solid rgba(59,58,54,0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }

  .site-header .nav.is-open{
    display: flex;
  }

  .site-header .nav a{
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .site-header .lang-toggle{
    margin-top: 6px;
    font-size: 15px;
  }
}
@media (max-width: 640px){
  body.owners h1{
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }

  body.owners .owners-lead{
    font-size: 16px;
    line-height: 1.75;
  }
}
.cta-block{
  display: block;
  width: 100%;
  text-align: center;
}

.cta-inner{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-kicker,
.cta-title,
.cta-text{
  text-align: center;
}

.cta-button{
  margin-top: 28px;
}
@media (max-width: 768px) {
  .logo-main {
    font-size: 16px;
  }

}
@media (max-width: 768px) {
  .logo-sub {
    display: none;
  }
}
/* ===============================
   6. HOME HERO (SCOPED)
================================= */

body.home .home-hero{
  position: relative;
  height: 76vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

body.home .home-hero-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

body.home .home-hero-img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* subtle overlay for text readability */
body.home .home-hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.12) 48%,
    rgba(0,0,0,0.16) 100%
  );
  pointer-events: none;
}

body.home .hero-content{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}

body.home .hero-content h1{
  color: var(--bg-soft);
  font-weight: 400;
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: 0.04em;
  max-width: 1100px;
  text-wrap: balance;
}

body.home .hero-content p,
body.home .hero-content .subtitle{
  color: rgba(250, 249, 246, 0.88);
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  max-width: 760px;
  text-wrap: balance;
}

/* ---------- Tablet ---------- */
@media (max-width: 1180px){
  body.home .home-hero{
    height: 72vh;
    min-height: 520px;
  }

  body.home .hero-content h1{
    font-size: 60px;
    max-width: 900px;
  }

  body.home .hero-content p,
  body.home .hero-content .subtitle{
    font-size: 17px;
    max-width: 700px;
  }
}

/* ---------- Small tablet ---------- */
@media (max-width: 980px){
  body.home .home-hero{
    height: 68vh;
    min-height: 500px;
  }

  body.home .home-hero-img{
    object-position: center 40%;
  }

  body.home .hero-content{
    max-width: 760px;
    padding: 0 26px;
  }

  body.home .hero-content h1{
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    max-width: 720px;
  }

  body.home .hero-content p,
  body.home .hero-content .subtitle{
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.68;
    max-width: 560px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px){
  body.home .home-hero{
    height: 64vh;
    min-height: 460px;
    align-items: center;
  }

  body.home .home-hero-img{
    object-position: center 42%;
  }

  body.home .hero-content{
    padding: 0 22px;
    max-width: 100%;
  }

  body.home .hero-content h1{
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    max-width: 320px;
  }

  body.home .hero-content p,
  body.home .hero-content .subtitle{
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    max-width: 300px;
  }
}

/* ---------- Very small mobile ---------- */
@media (max-width: 420px){
  body.home .home-hero{
    min-height: 430px;
  }

  body.home .hero-content h1{
    font-size: 32px;
    max-width: 280px;
  }

  body.home .hero-content p,
  body.home .hero-content .subtitle{
    font-size: 14.5px;
    max-width: 270px;
  }
}
/* ===============================
   HOME: INTRO + STRUCTURE (SCOPED)
================================= */

body.home .home-intro{
  padding: 104px 0 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(59,58,54,0.06);
}

body.home .home-intro-inner{
  max-width: 1120px;
}

body.home .home-label{
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
  margin-bottom: 20px;
}

body.home .home-label--secondary{
  margin-top: 8px;
  margin-bottom: 22px;
}

body.home .home-intro-grid{
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 64px;
  align-items: start;
}

body.home .home-intro-grid h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  line-height: 1.14;
  letter-spacing: 0.015em;
  color: var(--text-main);
  max-width: 500px;
  text-wrap: balance;
}

body.home .home-intro-body{
  max-width: 690px;
}

body.home .home-intro-body p{
  color: rgba(59,58,54,0.78);
  line-height: 1.88;
  margin-top: 0;
  font-size: 16.5px;
}

body.home .home-intro-body p + p{
  margin-top: 18px;
}

body.home .home-signal-row{
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(59,58,54,0.08);
  color: rgba(59,58,54,0.62);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.home .home-anchor{
  margin-top: 74px;
  padding: 42px 0 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  line-height: 1.24;
  letter-spacing: 0.015em;
  color: rgba(59,58,54,0.88);
  border-top: 1px solid rgba(59,58,54,0.08);
  border-bottom: 1px solid rgba(59,58,54,0.08);
  max-width: 980px;
  text-wrap: balance;
}

body.home .home-split{
  margin-top: 38px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

body.home .home-split-card{
  display: block;
  background: rgba(250,249,246,0.72);
  border: 1px solid rgba(59,58,54,0.10);
  border-radius: 18px;
  padding: 24px 24px 22px;
  min-height: 222px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.home .home-split-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(59,58,54,0.14);
}

body.home .home-split-kicker{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
}

body.home .home-split-title{
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  letter-spacing: 0.015em;
  color: rgba(59,58,54,0.88);
  line-height: 1.24;
  text-wrap: balance;
}

body.home .home-split-cta{
  margin-top: 22px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.62);
  border-bottom: 1px solid rgba(59,58,54,0.14);
  padding-bottom: 6px;
  width: fit-content;
}

/* ---------- Tablet ---------- */
@media (max-width: 1180px){
  body.home .home-intro{
    padding: 92px 0 0;
  }

  body.home .home-intro-grid{
    gap: 48px;
  }

  body.home .home-intro-grid h2{
    font-size: 42px;
    max-width: 460px;
  }

  body.home .home-anchor{
    font-size: 32px;
    max-width: 920px;
  }

  body.home .home-split-title{
    font-size: 27px;
  }
}

/* ---------- Small tablet ---------- */
@media (max-width: 980px){
  body.home .home-intro{
    padding: 76px 0 0;
  }

  body.home .home-intro-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.home .home-intro-grid h2{
    font-size: 38px;
    max-width: 680px;
  }

  body.home .home-intro-body{
    max-width: 100%;
  }

  body.home .home-intro-body p{
    font-size: 16px;
    line-height: 1.82;
  }

  body.home .home-anchor{
    font-size: 30px;
    margin-top: 52px;
    max-width: 100%;
  }

  body.home .home-split{
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 78px;
  }

  body.home .home-split-card{
    min-height: auto;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px){
  body.home .home-intro{
    padding: 64px 0 0;
  }

  body.home .home-label{
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  body.home .home-label--secondary{
    margin-bottom: 18px;
  }

  body.home .home-intro-grid h2{
    font-size: 32px;
    line-height: 1.16;
    max-width: 100%;
  }

  body.home .home-intro-body p{
    font-size: 15.5px;
    line-height: 1.8;
  }

  body.home .home-signal-row{
    gap: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  body.home .home-anchor{
    margin-top: 42px;
    padding: 32px 0;
    font-size: 28px;
    line-height: 1.22;
  }

  body.home .home-split{
    margin-top: 28px;
    padding-bottom: 66px;
  }

  body.home .home-split-card{
    padding: 22px 20px 20px;
    border-radius: 16px;
  }

  body.home .home-split-title{
    font-size: 26px;
    line-height: 1.22;
  }

  body.home .home-split-cta{
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

/* ---------- Very small mobile ---------- */
@media (max-width: 420px){
  body.home .home-intro-grid h2{
    font-size: 29px;
  }

  body.home .home-anchor{
    font-size: 25px;
  }

  body.home .home-split-title{
    font-size: 24px;
  }
}
/* ===============================
   7. FOOTER (DEFAULT)
================================= */

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}
/* ===============================
   FOR OWNERS (SCOPED)
================================= */

/* Hero */
body.owners .owners-hero{
  padding: 96px 0 58px;
}

body.owners .owners-hero-inner{
  max-width: 960px;
}

body.owners .owners-kicker{
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
}

body.owners h1{
  margin-top: 18px;
  font-size: 54px;
  letter-spacing: 0.03em;
  line-height: 1.06;
  color: var(--text-strong);
  max-width: 860px;
}

body.owners .owners-lead{
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(59,58,54,0.78);
  max-width: 640px;
}

body.owners .owners-hero-meta{
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.56);
  padding-top: 18px;
  border-top: 1px solid rgba(59,58,54,0.10);
  width: fit-content;
}

/* Hero image */
body.owners .owners-hero-media{
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59,58,54,0.10);
  background: rgba(250,249,246,0.60);
}

body.owners .owners-hero-media img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  display:block;
}

/* Sections */
body.owners .owners-section{
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(59,58,54,0.06);
}

body.owners .owners-section--soft{
  background: #F3F1EA;
}

body.owners .owners-section--olivewash{
  background: rgba(126,115,88,0.06);
}

/* Layout */
body.owners .owners-narrow{
  max-width: 980px;
}

body.owners .owners-grid{
  display:grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items:start;
}

body.owners .owners-eyebrow{
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
  margin-bottom: 16px;
}

body.owners h2{
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--text-main);
  max-width: 520px;
}

/* Optional underline */
body.owners h2[data-underline="true"]{
  position: relative;
  display: inline-block;
}

body.owners h2[data-underline="true"]::after{
  content:"";
  display:block;
  margin-top: 14px;
  width: 92px;
  height: 1px;
  background: rgba(130,92,66,0.32);
}

/* Intro text block */
body.owners .owners-section .owners-narrow > p{
  max-width: 860px;
  font-size: 17px;
  line-height: 1.88;
  color: rgba(59,58,54,0.78);
}

body.owners .owners-section .owners-narrow > p + p{
  margin-top: 18px;
}

body.owners .owners-section .owners-narrow > p:nth-of-type(2){
  max-width: 780px;
}

body.owners .owners-section .owners-narrow > p:nth-of-type(3){
  max-width: 760px;
}

body.owners .owners-section .owners-narrow > p:nth-of-type(4){
  margin-top: 24px;
  padding-left: 18px;
  border-left: 1px solid rgba(130,92,66,0.22);
  color: rgba(59,58,54,0.72);
  max-width: 700px;
}

/* General body paragraphs */
body.owners .owners-body{
  max-width: 700px;
}

body.owners .owners-body p{
  color: rgba(59,58,54,0.78);
  margin-top: 0;
  line-height: 1.88;
  font-size: 17px;
}

body.owners .owners-body p + p{
  margin-top: 18px;
}

/* Lists */
body.owners .owners-list{
  margin-top: 18px;
  padding-left: 20px;
  color: rgba(59,58,54,0.76);
  max-width: 680px;
}

body.owners .owners-list li{
  margin: 12px 0;
  line-height: 1.78;
}

body.owners .owners-list--compact li{
  margin: 8px 0;
}

body.owners .owners-note{
  margin-top: 24px;
  padding-left: 18px;
  border-left: 1px solid rgba(130,92,66,0.24);
  color: rgba(59,58,54,0.70);
}

/* Intro split cards */
body.owners .owners-split{
  margin-top: 40px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

body.owners .owners-card{
  background: rgba(250,249,246,0.82);
  border: 1px solid rgba(28,25,20,0.08);
  border-radius: 20px;
  padding: 28px 28px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body.owners .owners-card-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  line-height: 1.24;
  letter-spacing: 0.02em;
  color: rgba(59,58,54,0.90);
  max-width: 300px;
}

body.owners .owners-card-text{
  margin-top: 12px;
  color: rgba(59,58,54,0.70);
  line-height: 1.7;
  font-size: 16px;
  max-width: 280px;
}

/* Two-column mini lists */
body.owners .owners-two-col{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

body.owners .owners-mini{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px;
}

body.owners .owners-mini-title{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.60);
  margin-bottom: 10px;
}

/* Framework */
body.owners .owners-framework-wrap{
  margin-top: 40px;
  background: rgba(126,115,88,0.10);
  border: 1px solid rgba(126,115,88,0.20);
  border-radius: 28px;
  padding: 78px 62px;
}

body.owners .owners-framework-intro{
  position: static;
  max-width: 760px;
}

body.owners .owners-framework{
  margin-top: 30px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

body.owners .owners-pill{
  background: rgba(250,249,246,0.86);
  border: 1px solid rgba(28,25,20,0.10);
  border-radius: 20px;
  padding: 30px 30px;
}

body.owners .owners-pill:nth-child(2){
  background: rgba(87,83,66,0.10);
  border-color: rgba(87,83,66,0.20);
}

body.owners .owners-pill-num{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(87,83,66,0.22);
  background: rgba(87,83,66,0.08);
  color: rgba(28,25,20,0.58);
  font-size: 12px;
  letter-spacing: 0.16em;
}

body.owners .owners-pill-title{
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: rgba(59,58,54,0.90);
}

body.owners .owners-muted{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(28,25,20,0.08);
  color: rgba(59,58,54,0.62);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA spacing alignment */
body.owners .cta-block{
  margin-top: 0;
}

body.owners .cta-button{
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 980px){
  body.owners .owners-hero{
    padding: 80px 0 50px;
  }

  body.owners h1{
    font-size: 44px;
    max-width: 100%;
  }

  body.owners h2{
    font-size: 36px;
    max-width: 100%;
  }

  body.owners .owners-section{
    padding: 74px 0;
  }

  body.owners .owners-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.owners .owners-split{
    grid-template-columns: 1fr;
  }

  body.owners .owners-two-col{
    grid-template-columns: 1fr;
  }

  body.owners .owners-framework-wrap{
    padding: 48px 24px;
    border-radius: 22px;
    gap: 18px;
  }

  body.owners .owners-framework-intro{
    position: static;
  }

  body.owners .owners-hero-media img{
    height: 320px;
  }

  body.owners .owners-card{
    min-height: auto;
  }

  body.owners .owners-section .owners-narrow > p,
  body.owners .owners-body p{
    font-size: 16px;
    line-height: 1.82;
  }
}

@media (max-width: 640px){
  body.owners .owners-hero{
    padding: 68px 0 44px;
  }

  body.owners h1{
    font-size: 38px;
    line-height: 1.08;
  }

  body.owners h2{
    font-size: 32px;
    line-height: 1.14;
  }

  body.owners .owners-lead{
    font-size: 17px;
  }

  body.owners .owners-hero-media{
    margin-top: 36px;
    border-radius: 16px;
  }

  body.owners .owners-hero-media img{
    height: 280px;
  }

  body.owners .owners-section{
    padding: 64px 0;
  }

  body.owners .owners-split{
    gap: 16px;
  }

  body.owners .owners-card{
    padding: 22px 22px 20px;
    border-radius: 18px;
  }

  body.owners .owners-card-title{
    font-size: 24px;
  }

  body.owners .owners-card-text{
    font-size: 15px;
  }

  body.owners .owners-framework-wrap{
    padding: 38px 18px;
  }

  body.owners .owners-pill{
    padding: 24px 20px;
  }

  body.owners .owners-pill-title{
    font-size: 29px;
  }
}
/* ===============================
   THANK YOU PAGE (SCOPED)
================================= */

body.thanks .thanks-main{
  padding: 120px 0 140px;
  background: var(--bg-main);
}

body.thanks .thanks-inner{
  max-width: 820px;
}

body.thanks h1{
  font-size: 62px;
  letter-spacing: 0.04em;
  line-height: 1.04;
  margin-top: 0;
  color: var(--text-strong);
  max-width: 680px;
}

body.thanks .thanks-text{
  margin-top: 18px;
  color: rgba(59,58,54,0.78);
  font-size: 18px;
  line-height: 1.82;
  max-width: 690px;
}

body.thanks .thanks-note{
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(59,58,54,0.58);
  max-width: 520px;
  text-transform: none;
}

body.thanks .thanks-divider{
  width: 120px;
  height: 1px;
  background: rgba(59,58,54,0.12);
  margin-top: 38px;
}

body.thanks .thanks-quote{
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(59,58,54,0.82);
  max-width: 620px;
}

body.thanks .thanks-actions{
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

body.thanks .thanks-link{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.62);
  border-bottom: 1px solid rgba(59,58,54,0.14);
  padding-bottom: 6px;
  width: fit-content;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

body.thanks .thanks-link:hover{
  color: rgba(59,58,54,0.82);
  border-color: rgba(59,58,54,0.26);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 980px){
  body.thanks .thanks-main{
    padding: 96px 0 116px;
  }

  body.thanks h1{
    font-size: 50px;
  }

  body.thanks .thanks-quote{
    font-size: 27px;
    max-width: 560px;
  }
}

@media (max-width: 780px){
  body.thanks .thanks-main{
    padding: 80px 0 100px;
  }

  body.thanks h1{
    font-size: 42px;
    line-height: 1.08;
  }

  body.thanks .thanks-text{
    font-size: 16px;
    line-height: 1.78;
  }

  body.thanks .thanks-note{
    font-size: 13px;
  }

  body.thanks .thanks-quote{
    font-size: 24px;
    line-height: 1.38;
  }

  body.thanks .thanks-actions{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 640px){
  body.thanks .thanks-main{
    padding: 68px 0 88px;
  }

  body.thanks h1{
    font-size: 36px;
  }

  body.thanks .thanks-text{
    font-size: 15.5px;
  }

  body.thanks .thanks-quote{
    font-size: 22px;
  }

  body.thanks .thanks-divider{
    margin-top: 30px;
    width: 90px;
  }
}
/* ===============================
   STUDIO (SCOPED)
================================= */

body.studio .studio-hero{
  padding: 96px 0 48px;
}

body.studio .studio-hero-inner{
  max-width: 960px;
}

body.studio .studio-kicker{
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
}

body.studio h1{
  margin-top: 18px;
  font-size: 58px;
  letter-spacing: 0.03em;
  line-height: 1.04;
  color: var(--text-main);
  max-width: 860px;
}

body.studio .studio-lead{
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(59,58,54,0.78);
  max-width: 720px;
}

body.studio .studio-meta{
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.56);
  padding-top: 18px;
  border-top: 1px solid rgba(59,58,54,0.10);
  width: fit-content;
}

/* Media block */
body.studio .studio-media{
  padding: 0 0 70px;
}

body.studio .studio-figure{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59,58,54,0.10);
  background: rgba(250,249,246,0.60);
}

body.studio .studio-figure img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  display:block;
}

body.studio .studio-caption{
  padding: 14px 18px 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
  background: rgba(250,249,246,0.78);
}

/* Sections */
body.studio .studio-section{
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(59,58,54,0.06);
}

body.studio .studio-section--soft{
  background: #F3F1EA;
}

body.studio .studio-narrow{
  max-width: 960px;
}

body.studio .studio-grid{
  display:grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 62px;
  align-items:start;
}

body.studio .studio-eyebrow{
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
  margin-bottom: 16px;
}

body.studio h2{
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0.015em;
  color: var(--text-main);
  max-width: 470px;
}

/* Body copy */
body.studio .studio-body{
  max-width: 690px;
}

body.studio .studio-body p{
  color: rgba(59,58,54,0.78);
  margin-top: 0;
  line-height: 1.84;
  font-size: 16.5px;
}

body.studio .studio-body p + p{
  margin-top: 18px;
}

/* Quote block */
body.studio .studio-quote{
  margin-top: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(59,58,54,0.14);
  color: rgba(59,58,54,0.74);
  font-size: 17px;
  line-height: 1.72;
  max-width: 560px;
}

/* Lists */
body.studio .studio-list{
  margin-top: 18px;
  padding-left: 20px;
  color: rgba(59,58,54,0.74);
  max-width: 620px;
}

body.studio .studio-list li{
  margin: 10px 0;
  line-height: 1.74;
}

/* CTA alignment safeguard */
body.studio .cta-block{
  text-align: center;
}

body.studio .cta-inner{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

body.studio .cta-kicker,
body.studio .cta-title,
body.studio .cta-text{
  text-align: center;
}

body.studio .cta-button{
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 980px){
  body.studio .studio-hero{
    padding: 80px 0 44px;
  }

  body.studio h1{
    font-size: 46px;
    max-width: 100%;
  }

  body.studio h2{
    font-size: 34px;
    max-width: 100%;
  }

  body.studio .studio-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.studio .studio-section{
    padding: 74px 0;
  }

  body.studio .studio-figure img{
    height: 320px;
  }

  body.studio .studio-body p{
    font-size: 16px;
    line-height: 1.8;
  }

  body.studio .studio-quote{
    font-size: 16.5px;
    line-height: 1.7;
  }
}

@media (max-width: 640px){
  body.studio .studio-hero{
    padding: 68px 0 40px;
  }

  body.studio h1{
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: 0.02em;
  }

  body.studio .studio-lead{
    font-size: 16px;
    line-height: 1.74;
  }

  body.studio h2{
    font-size: 31px;
    line-height: 1.14;
  }

  body.studio .studio-figure{
    border-radius: 16px;
  }

  body.studio .studio-figure img{
    height: 280px;
  }

  body.studio .studio-section{
    padding: 64px 0;
  }

  body.studio .studio-body p,
  body.studio .studio-list li{
    font-size: 15.5px;
  }

  body.studio .studio-quote{
    font-size: 15.8px;
    padding-left: 16px;
  }

  body.studio .cta-block{
    padding: 80px 0;
  }

  body.studio .cta-inner{
    padding: 0 22px;
  }

  body.studio .cta-title{
    font-size: 44px;
  }
}
/* ===============================
   CASE STUDY (SCOPED)
================================= */

body.case-study .cs-hero{
  padding: 0 0 42px;
}

body.case-study .cs-hero-media{
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 420px;
  background-position: 55% center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.case-study .cs-hero-media::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.04) 45%,
    rgba(0,0,0,0.12) 100%
  );
}

body.case-study .cs-hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
}

body.case-study .cs-hero-label{
  position: relative;
  z-index: 1;
  margin: 0 0 28px 0;
  padding: 0 40px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.90);
}

body.case-study .cs-hero-inner{
  max-width: 920px;
  padding-top: 56px;
}

@media (max-width: 780px){
  body.case-study .cs-hero-media{
    height: 52vh;
    min-height: 360px;
    background-position: 58% center;
  }

  body.case-study .cs-hero-label{
    padding: 0 24px;
    margin-bottom: 22px;
  }
}

body.case-study h1{
  font-size: 56px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text-main);
}

body.case-study .cs-lead{
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(59,58,54,0.78);
  max-width: 720px;
}

body.case-study .cs-sub{
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(59,58,54,0.70);
  max-width: 720px;
}

/* Section rhythm */
body.case-study .cs-section{
  padding: 92px 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(59,58,54,0.06);
}

body.case-study .cs-section--soft{
  background: #F3F1EA;
}

body.case-study .cs-narrow{
  max-width: 920px;
}

body.case-study .cs-label{
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
  margin-bottom: 14px;
}

body.case-study h2{
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

body.case-study .cs-body{
  margin-top: 18px;
  max-width: 720px;
}

body.case-study .cs-body p{
  margin-top: 14px;
  color: rgba(59,58,54,0.78);
  line-height: 1.8;
}

body.case-study .cs-list{
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(59,58,54,0.74);
}

body.case-study .cs-list li{
  margin: 10px 0;
}

/* Metric micro-signals */
body.case-study .cs-metrics{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(59,58,54,0.10);
  color: rgba(59,58,54,0.62);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Emotional anchor sentence */
body.case-study .cs-anchor{
  margin: 28px 0;
  padding-left: 18px;
  border-left: 1px solid rgba(59,58,54,0.14);
  color: rgba(59,58,54,0.74);
  line-height: 1.8;
}

/* One quote */
body.case-study .cs-quote{
  margin-top: 28px;
}

body.case-study .cs-quote-line{
  height: 1px;
  width: 120px;
  background: rgba(59,58,54,0.12);
  margin-bottom: 14px;
}

body.case-study .cs-quote em{
  display:block;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(59,58,54,0.72);
}

/* Responsive */
@media (max-width: 980px){
  body.case-study .cs-hero-media{
    height: 52vh;
    min-height: 340px;
  }

  body.case-study .cs-hero-label{
    padding: 0 22px;
    margin-bottom: 22px;
  }

  body.case-study .cs-hero-inner{
    padding-top: 42px;
  }

  body.case-study h1{
    font-size: 46px;
  }

  body.case-study h2{
    font-size: 36px;
  }

  body.case-study .cs-section{
    padding: 72px 0;
  }
}
/* ===============================
   CONTACT PAGE
================================= */

body.contact .contact-hero{
  padding: 140px 0 60px;
  background: var(--bg-soft);
}

body.contact .contact-narrow{
  max-width: 720px;
}

body.contact .contact-label{
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.58);
  margin-bottom: 14px;
}

body.contact h1{
  font-size: 54px;
  letter-spacing: 0.04em;
}

body.contact .contact-lead{
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(59,58,54,0.75);
}

body.contact .contact-note{
  margin-top: 18px;
  font-size: 14px;
  color: rgba(59,58,54,0.6);
}

body.contact .contact-form-section{
  padding: 70px 0 120px;
  background: var(--sage);
  border-top: 1px solid rgba(250,249,246,0.12);
}
body.contact .contact-form{
  display:flex;
  flex-direction:column;
  gap:26px;
}

body.contact .form-group label{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(59,58,54,0.6);
}

body.contact input,
body.contact select,
body.contact textarea{
  width:100%;
  padding:12px 0;
  border:none;
  border-bottom:1px solid rgba(59,58,54,0.2);
  background:transparent;
  font-family: inherit;
  font-size:15px;
}

body.contact input:focus,
body.contact textarea:focus{
  outline:none;
  border-color: var(--olive);
}

body.contact .contact-button{
  margin-top:20px;
  padding:14px 28px;
  border:1px solid var(--olive);
  background:transparent;
  text-transform:uppercase;
  letter-spacing:0.2em;
  font-size:12px;
  cursor:pointer;
}

body.contact .contact-button:hover{
  background: var(--olive);
  color:#fff;
}
body.contact .contact-form-section label{
  color: rgba(250,249,246,0.75);
}

body.contact .contact-form-section input,
body.contact .contact-form-section select,
body.contact .contact-form-section textarea{
  background: rgba(250,249,246,0.92);
  border: none;
}

body.contact .contact-form-section .contact-button{
  background: rgba(250,249,246,0.92);
  color: var(--sage);
}

body.contact .contact-form-section .contact-button:hover{
  background: #ffffff;
}
/* ===============================
   UNIVERSAL CTA (REUSABLE)
   Add once to your main CSS
================================= */

.cta-block{
  background: var(--sage);
  padding: 110px 0;
}

.cta-inner{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: rgba(250,249,246,0.92);
  padding: 0 40px;
}

.cta-kicker{
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.70);
  margin-bottom: 18px;
}

.cta-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: rgba(250,249,246,0.92);
}

.cta-text{
  margin: 18px auto 28px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250,249,246,0.72);
}

.cta-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(250,249,246,0.35);
  color: rgba(250,249,246,0.92);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.cta-button:hover{
  background: rgba(250,249,246,0.12);
  border-color: rgba(250,249,246,0.55);
  transform: translateY(-1px);
}
/* ===============================
   UNIVERSAL CTA + FOOTER FIX
================================= */

.cta-block {
  background: var(--sage);
  padding: 110px 0;
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: rgba(250,249,246,0.92);
  padding: 0 40px;
}

.cta-kicker {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.70);
  margin-bottom: 18px;
}

.cta-title,
.cta-block .cta-title,
body.case-study .cta-title,
body.case-study .cta-block h2,
body.studio .cta-title,
body.owners .cta-title,
body.contact .cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: rgba(250,249,246,0.92);
}

.cta-text {
  margin: 18px auto 28px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250,249,246,0.72);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(250,249,246,0.35);
  color: rgba(250,249,246,0.92);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.cta-button:hover {
  background: rgba(250,249,246,0.12);
  border-color: rgba(250,249,246,0.55);
  transform: translateY(-1px);
}

.site-footer {
  background: var(--bg-main);
  color: var(--text-main);
  padding: 56px 0;
  font-size: 14px;
  border-top: 1px solid rgba(28,25,20,0.06);
}

.site-footer a {
  color: var(--text-main);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
/* ===============================
   DARK MODE — ARMONIA
   Warm, controlled dark palette
================================= */

@media (prefers-color-scheme: dark) {
  :root {
    --bg-main: #17140f;
    --bg-soft: #1f1b15;
    --bg-sepia: #2a241d;

    --sage: #665f49;
    --olive: #4e493a;
    --warm: #9a765b;

    --text-main: rgba(244, 238, 229, 0.86);
    --text-strong: rgba(250, 246, 239, 0.94);
    --text-muted: rgba(244, 238, 229, 0.66);
    --text-faint: rgba(244, 238, 229, 0.44);

    --surface: rgba(250, 246, 239, 0.055);
    --surface-2: rgba(250, 246, 239, 0.08);
    --line: rgba(244, 238, 229, 0.12);
    --line-soft: rgba(244, 238, 229, 0.07);

    --shadow-soft: 0 18px 40px rgba(0,0,0,0.28);
  }

  body {
    background: var(--bg-main);
    color: var(--text-main);
  }

  h1, h2, h3, h4,
  body.home .home-intro-grid h2,
  body.home .home-anchor,
  body.home .home-split-title,
  body.owners h1,
  body.owners h2,
  body.owners .owners-card-title,
  body.studio h1,
  body.studio h2,
  body.case-study h1,
  body.case-study h2,
  body.contact h1 {
    color: var(--text-strong);
  }

  a,
  .nav a,
  .site-footer a {
    color: var(--text-main);
  }

  .site-header,
  .site-footer {
    background: var(--bg-main);
    border-color: var(--line-soft);
  }

  .menu-toggle span {
    background: rgba(244, 238, 229, 0.82);
  }

  @media (max-width: 780px) {
    .site-header .nav {
      background: #1b1712;
      border-color: var(--line);
      box-shadow: 0 18px 40px rgba(0,0,0,0.34);
    }
  }

  body.home .home-intro,
  body.owners .owners-section,
  body.studio .studio-section,
  body.case-study .cs-section,
  body.contact .contact-hero,
  body.thanks .thanks-main {
    background: var(--bg-soft);
    border-top-color: var(--line-soft);
  }

  body.owners .owners-section--soft,
  body.studio .studio-section--soft,
  body.case-study .cs-section--soft {
    background: #252017;
  }

  body.home .home-label,
  body.home .home-split-kicker,
  body.owners .owners-kicker,
  body.owners .owners-eyebrow,
  body.owners .owners-hero-meta,
  body.studio .studio-kicker,
  body.studio .studio-eyebrow,
  body.studio .studio-meta,
  body.case-study .cs-label,
  body.contact .contact-label {
    color: var(--text-muted);
  }

  body.home .home-intro-body p,
  body.home .home-signal-row,
  body.home .home-split-cta,
  body.owners .owners-lead,
  body.owners .owners-section .owners-narrow > p,
  body.owners .owners-body p,
  body.owners .owners-list,
  body.owners .owners-card-text,
  body.studio .studio-lead,
  body.studio .studio-body p,
  body.studio .studio-list,
  body.studio .studio-quote,
  body.case-study .cs-lead,
  body.case-study .cs-sub,
  body.case-study .cs-body p,
  body.case-study .cs-list,
  body.case-study .cs-anchor,
  body.case-study .cs-quote em,
  body.contact .contact-lead,
  body.contact .contact-note,
  body.thanks .thanks-text,
  body.thanks .thanks-note,
  body.thanks .thanks-quote {
    color: var(--text-main);
  }

  body.home .home-split-card,
  body.owners .owners-card,
  body.owners .owners-mini,
  body.owners .owners-pill {
    background: var(--surface);
    border-color: var(--line);
  }

  body.home .home-split-card:hover {
    border-color: rgba(244, 238, 229, 0.18);
    box-shadow: var(--shadow-soft);
  }

  body.owners .owners-hero-media,
  body.studio .studio-figure {
    background: var(--surface);
    border-color: var(--line);
  }

  body.home .home-signal-row,
  body.home .home-anchor,
  body.owners .owners-hero-meta,
  body.studio .studio-meta,
  body.case-study .cs-metrics,
  body.case-study .cs-quote-line {
    border-color: var(--line);
  }

  body.owners .owners-section .owners-narrow > p:nth-of-type(4),
  body.studio .studio-quote,
  body.case-study .cs-anchor {
    border-left-color: rgba(244, 238, 229, 0.18);
  }

  .cta-block {
    background: #5f5843;
  }

  .cta-title,
  .cta-block .cta-title,
  body.case-study .cta-title,
  body.case-study .cta-block h2,
  body.studio .cta-title,
  body.owners .cta-title,
  body.contact .cta-title {
    color: rgba(250, 246, 239, 0.95);
  }

  .cta-kicker,
  .cta-text,
  .cta-button {
    color: rgba(250, 246, 239, 0.78);
  }

  .cta-button {
    border-color: rgba(250, 246, 239, 0.30);
  }

  .cta-button:hover {
    background: rgba(250, 246, 239, 0.10);
    border-color: rgba(250, 246, 239, 0.48);
  }

  body.contact .contact-form-section {
    background: #5f5843;
  }

  body.contact .contact-form-section input,
  body.contact .contact-form-section select,
  body.contact .contact-form-section textarea {
    background: rgba(250, 246, 239, 0.90);
    color: rgba(28,25,20,0.86);
  }

  body.contact .contact-form-section .contact-button {
    background: rgba(250, 246, 239, 0.92);
    color: #5f5843;
  }
}
.form-note {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}