/* ============================================================
   LValdezco — style.css
   Colours: Navy #0F1923 | Gold #C9A84C | Off-white #F5F0EB
   Fonts: Cormorant Garamond (headings) + Barlow (body)
   ============================================================ */


:root {
  --navy:      #0F1923;
  --navy-deep: #080f16;
  --gold:      #C9A84C;
  --gold-light:#dfc070;
  --off-white: #F5F0EB;
  --mid:       #8a8070;
  --body-text: #2a2520;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--body-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(8, 15, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.logo { display: flex; flex-direction: column; }

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.65);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--off-white); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  transition: background 0.2s !important;
}

.btn-nav:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--off-white);
  margin-bottom: 48px;
}

.hero-headline .word {
  display: block;
  font-size: clamp(5rem, 8.5vw, 9rem);
}

.hero-headline .word-italic {
  font-style: italic;
  color: var(--gold);
}

.hero-subtext {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
  align-self: flex-start;
}

.hero-cta:hover { background: var(--gold-light); color: var(--navy); }

.hero-cta-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}

.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-image-col {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 30%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 20%);
}

/* LABELS */
.label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.label-dark { color: rgba(15, 25, 35, 0.4); }

/* STATEMENT */
.section-statement {
  background: var(--off-white);
  text-align: center;
  padding: 120px 40px;
}

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  max-width: 860px;
  margin: 0 auto 28px;
}

.statement-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* SERVICES */
.section-services {
  background: var(--navy);
  padding: 120px 80px;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 72px;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--off-white);
  margin-top: 12px;
}

.services-intro {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.85;
  max-width: 420px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.16);
  line-height: 1;
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.service-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.48);
  line-height: 1.85;
}

/* PULL QUOTE */
.section-pull {
  background: var(--navy-deep);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}

.section-pull::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
}

.pull-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 32px;
}

.pull-attr {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* WHEN */
.section-when {
  background: var(--off-white);
  padding: 120px 80px;
}

.when-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.when-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 8px;
}

.when-items { display: flex; flex-direction: column; }

.when-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.1);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
}

.when-item:first-child { border-top: 1px solid rgba(15, 25, 35, 0.1); }

.when-dash {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.65;
}

.when-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin: 0;
}

/* CTA BAND */
.section-cta {
  background: var(--gold);
  padding: 110px 80px;
  text-align: center;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(15, 25, 35, 0.6);
  margin-bottom: 48px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--off-white);
  padding: 18px 40px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.82; color: var(--off-white); }

.cta-contact {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-contact a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(15, 25, 35, 0.5);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.cta-contact a:hover { color: var(--navy); }

/* FOOTER */
.site-footer {
  background: #04090e;
  color: var(--off-white);
  padding: 48px 48px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-brand-tag {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.35);
  line-height: 1.75;
  margin-top: 0;
}

.footer-col-title {
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.38);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(245, 240, 235, 0.18);
  letter-spacing: 0.06em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeUp 0.8s ease 0.1s both; }
.hero-headline { animation: fadeUp 0.8s ease 0.25s both; }
.hero-subtext  { animation: fadeUp 0.8s ease 0.4s both; }
.hero-cta      { animation: fadeUp 0.8s ease 0.55s both; }

/* TABLET */
@media (max-width: 991px) {
  .site-header { padding: 0 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }

  .hero-image-col {
    height: 55vw;
    max-height: 400px;
    order: -1;
  }

  .hero-image-col::after {
    background:
      linear-gradient(to bottom, var(--navy-deep) 0%, transparent 30%),
      linear-gradient(to top, var(--navy-deep) 0%, transparent 30%);
  }

  .hero-text { padding: 60px 40px 80px; }

  .hero-headline .word { font-size: clamp(4rem, 12vw, 7rem); }

  .section-services, .section-when, .section-pull,
  .section-cta, .section-statement { padding: 80px 40px; }

  .services-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .services-grid   { grid-template-columns: 1fr; }
  .when-grid       { grid-template-columns: 1fr; gap: 40px; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer     { padding: 60px 40px 0; }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-image-col {
    height: 85vw;
    max-height: 480px;
  }
  .site-header { padding: 0 20px; }

  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 22px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 899;
  }

  .site-nav.open { display: flex; }

  .site-nav a { font-size: 0.88rem; color: rgba(245,240,235,0.7); }

  .btn-nav { padding: 12px 24px; }

  .hero-text { padding: 48px 20px 64px; }

  .hero-headline .word { font-size: clamp(3.5rem, 15vw, 5.5rem); }

  .section-services, .section-when, .section-pull,
  .section-cta, .section-statement { padding: 64px 20px; }

  .service-card { padding: 36px 24px; }

  .when-grid { gap: 32px; }

  .cta-contact { gap: 20px; flex-direction: column; align-items: center; }

  .footer-top   { grid-template-columns: 1fr; gap: 28px; }
  .site-footer  { padding: 56px 20px 0; }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 20px 0;
  }

  .section-pull::before { font-size: 18rem; }
}
/* ============================================================
   ADDITIONAL STYLES — paste at the very bottom of style.css
   Covers: About page + Case Studies page
   ============================================================ */

/* ─── PAGE HERO (About) ─── */
.page-hero {
  background: var(--navy-deep);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--off-white);
  margin-bottom: 40px;
  margin-top: 16px;
}

.page-hero-title .word {
  display: block;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.page-hero-title .word-italic {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 400px;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(15%) contrast(1.05);
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 25%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 20%);
}

/* ─── ABOUT BODY SECTIONS ─── */
.section-about-body {
  background: var(--off-white);
  padding: 100px 80px;
}

.section-about-alt {
  background: #eeead4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 8px;
}

.about-right p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-right p:last-child { margin-bottom: 0; }

/* ─── PILLARS ─── */
.section-pillars {
  background: var(--navy);
  padding: 100px 80px;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 64px;
  margin-top: 12px;
  max-width: 600px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.pillar:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.16);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.48);
  line-height: 1.85;
}

/* ─── CASE STUDIES HERO ─── */
.cs-hero {
  background: var(--navy-deep);
  padding: 160px 80px 100px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cs-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.cs-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--off-white);
  margin: 20px 0 32px;
}

.cs-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.cs-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── CASE STUDY SECTIONS ─── */
.cs-section {
  background: var(--off-white);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.cs-section-alt {
  background: #eeead4;
}

.cs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(15, 25, 35, 0.08);
  padding: 5px 14px;
  font-weight: 400;
}

.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 700px;
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs-block-title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}

.cs-block p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-block p:last-child { margin-bottom: 0; }

.cs-outcome {
  background: var(--navy);
  padding: 40px 48px;
  border-left: 3px solid var(--gold);
}

.cs-outcome-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cs-outcome-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-outcome-text:last-child { margin-bottom: 0; }

.cs-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ─── RESPONSIVE: ABOUT & CASE STUDIES ─── */
@media (max-width: 991px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero-image {
    height: 55vw;
    max-height: 400px;
    order: -1;
    position: relative;
    min-height: unset;
  }

  .page-hero-image img {
    position: absolute;
  }

  .page-hero-text {
    padding: 60px 40px 80px;
  }

  .page-hero-title .word { font-size: clamp(3.5rem, 10vw, 6rem); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-about-body { padding: 80px 40px; }
  .section-pillars     { padding: 80px 40px; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .cs-hero             { padding: 140px 40px 80px; }
  .cs-section          { padding: 80px 40px; }
  .cs-outcome          { padding: 32px 32px; }
}

@media (max-width: 768px) {
  .page-hero-image {
    height: 75vw;
    max-height: 360px;
  }

  .page-hero-text { padding: 48px 20px 64px; }

  .page-hero-title .word { font-size: clamp(3rem, 14vw, 5rem); }

  .section-about-body { padding: 64px 20px; }
  .section-pillars     { padding: 64px 20px; }
  .cs-hero             { padding: 120px 20px 64px; }
  .cs-section          { padding: 64px 20px; }
  .cs-outcome          { padding: 28px 24px; }
  .pillars-title       { margin-bottom: 40px; }
}
/* ─── PAGE HERO (About) ─── */
.page-hero {
  background: var(--navy-deep);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--off-white);
  margin-bottom: 40px;
  margin-top: 16px;
}

.page-hero-title .word {
  display: block;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.page-hero-title .word-italic {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 400px;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(15%) contrast(1.05);
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 25%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 20%);
}

/* ─── ABOUT BODY SECTIONS ─── */
.section-about-body {
  background: var(--off-white);
  padding: 100px 80px;
}

.section-about-alt {
  background: #eeead4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 8px;
}

.about-right p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-right p:last-child { margin-bottom: 0; }

/* ─── PILLARS ─── */
.section-pillars {
  background: var(--navy);
  padding: 100px 80px;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 64px;
  margin-top: 12px;
  max-width: 600px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.pillar:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.16);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.48);
  line-height: 1.85;
}

/* ─── CASE STUDIES HERO ─── */
.cs-hero {
  background: var(--navy-deep);
  padding: 160px 80px 100px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cs-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.cs-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--off-white);
  margin: 20px 0 32px;
}

.cs-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.cs-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── CASE STUDY SECTIONS ─── */
.cs-section {
  background: var(--off-white);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.cs-section-alt {
  background: #eeead4;
}

.cs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(15, 25, 35, 0.08);
  padding: 5px 14px;
  font-weight: 400;
}

.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 700px;
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs-block-title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}

.cs-block p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-block p:last-child { margin-bottom: 0; }

.cs-outcome {
  background: var(--navy);
  padding: 40px 48px;
  border-left: 3px solid var(--gold);
}

.cs-outcome-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cs-outcome-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-outcome-text:last-child { margin-bottom: 0; }

.cs-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .page-hero-inner { grid-template-columns: 1fr; }

  .page-hero-image {
    height: 55vw;
    max-height: 400px;
    order: -1;
    position: relative;
    min-height: unset;
  }

  .page-hero-image img { position: absolute; }

  .page-hero-text { padding: 60px 40px 80px; }

  .page-hero-title .word { font-size: clamp(3.5rem, 10vw, 6rem); }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  .section-about-body { padding: 80px 40px; }
  .section-pillars     { padding: 80px 40px; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .cs-hero             { padding: 140px 40px 80px; }
  .cs-section          { padding: 80px 40px; }
  .cs-outcome          { padding: 32px 32px; }
}

@media (max-width: 768px) {
  .page-hero-image { height: 75vw; max-height: 360px; }
  .page-hero-text  { padding: 48px 20px 64px; }
  .page-hero-title .word { font-size: clamp(3rem, 14vw, 5rem); }
  .section-about-body { padding: 64px 20px; }
  .section-pillars     { padding: 64px 20px; }
  .pillars-title       { margin-bottom: 40px; }
  .cs-hero             { padding: 120px 20px 64px; }
  .cs-section          { padding: 64px 20px; }
  .cs-outcome          { padding: 28px 24px; }
}
/* ─── WIDER NAV ADJUSTMENT ─── */
@media (max-width: 1100px) and (min-width: 861px) {
  .site-header { padding: 0 32px; }
  .site-nav { gap: 22px; }
  .site-nav a { font-size: 0.7rem; }
}
/* ─── LEGAL PAGES ─── */
.legal-body {
  background: var(--off-white);
  padding: 80px 80px 100px;
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.1);
}

.legal-block {
  padding: 36px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.legal-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.legal-block p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover { color: var(--navy); }

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(15, 25, 35, 0.05);
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.legal-back {
  display: inline-block;
  margin-top: 48px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.legal-back:hover { color: var(--navy); }

@media (max-width: 768px) {
  .legal-body { padding: 64px 20px 80px; }
}
/* ─── CONTACT PAGE ─── */
.contact-page-body {
  background: var(--off-white);
  padding: 80px 80px 100px;
}

.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-page-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 16px;
}

.contact-page-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.contact-detail-item:first-child {
  border-top: 1px solid rgba(15, 25, 35, 0.08);
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  transition: color 0.2s;
}

.contact-detail-value:hover { color: var(--gold); }

.contact-pull {
  background: var(--navy);
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}

.contact-pull-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin: 0;
}

/* Form */
.contact-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(15, 25, 35, 0.08);
  padding: 48px 40px;
}

.contact-form-label {
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  background: var(--off-white);
  border: 1px solid rgba(15, 25, 35, 0.12);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(42, 37, 32, 0.35);
}

.contact-submit {
  background: var(--navy);
  color: var(--off-white);
  border: none;
  padding: 18px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-submit:hover { opacity: 0.82; }

.contact-form-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  margin: 0;
  line-height: 1.6;
}

.contact-success {
  display: none;
  padding: 40px 0;
  text-align: center;
}

.contact-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-success-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
}

@media (max-width: 991px) {
  .contact-page-body { padding: 80px 40px; }
  .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .contact-page-body { padding: 64px 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-detail-item { grid-template-columns: 90px 1fr; }
}
```

---

/* ============================================================
   LValdezco — style.css
   Colours: Navy #0F1923 | Gold #C9A84C | Off-white #F5F0EB
   Fonts: Cormorant Garamond (headings) + Barlow (body)
   ============================================================ */


:root {
  --navy:      #0F1923;
  --navy-deep: #080f16;
  --gold:      #C9A84C;
  --gold-light:#dfc070;
  --off-white: #F5F0EB;
  --mid:       #8a8070;
  --body-text: #2a2520;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--body-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(8, 15, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.logo { display: flex; flex-direction: column; }

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.65);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--off-white); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  transition: background 0.2s !important;
}

.btn-nav:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--off-white);
  margin-bottom: 48px;
}

.hero-headline .word {
  display: block;
  font-size: clamp(5rem, 8.5vw, 9rem);
}

.hero-headline .word-italic {
  font-style: italic;
  color: var(--gold);
}

.hero-subtext {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
  align-self: flex-start;
}

.hero-cta:hover { background: var(--gold-light); color: var(--navy); }

.hero-cta-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}

.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-image-col {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 30%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 20%);
}

/* LABELS */
.label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.label-dark { color: rgba(15, 25, 35, 0.4); }

/* STATEMENT */
.section-statement {
  background: var(--off-white);
  text-align: center;
  padding: 120px 40px;
}

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  max-width: 860px;
  margin: 0 auto 28px;
}

.statement-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* SERVICES */
.section-services {
  background: var(--navy);
  padding: 120px 80px;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 72px;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--off-white);
  margin-top: 12px;
}

.services-intro {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.85;
  max-width: 420px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.16);
  line-height: 1;
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.service-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.48);
  line-height: 1.85;
}

/* PULL QUOTE */
.section-pull {
  background: var(--navy-deep);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}

.section-pull::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
}

.pull-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 32px;
}

.pull-attr {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* WHEN */
.section-when {
  background: var(--off-white);
  padding: 120px 80px;
}

.when-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.when-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 8px;
}

.when-items { display: flex; flex-direction: column; }

.when-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.1);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
}

.when-item:first-child { border-top: 1px solid rgba(15, 25, 35, 0.1); }

.when-dash {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.65;
}

.when-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin: 0;
}

/* CTA BAND */
.section-cta {
  background: var(--gold);
  padding: 110px 80px;
  text-align: center;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(15, 25, 35, 0.6);
  margin-bottom: 48px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--off-white);
  padding: 18px 40px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.82; color: var(--off-white); }

.cta-contact {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-contact a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(15, 25, 35, 0.5);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.cta-contact a:hover { color: var(--navy); }

/* FOOTER */
.site-footer {
  background: #04090e;
  color: var(--off-white);
  padding: 56px 80px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: start;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-brand-tag {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.3);
  line-height: 1.75;
}

.footer-col-title {
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.38);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(245, 240, 235, 0.18);
  letter-spacing: 0.06em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeUp 0.8s ease 0.1s both; }
.hero-headline { animation: fadeUp 0.8s ease 0.25s both; }
.hero-subtext  { animation: fadeUp 0.8s ease 0.4s both; }
.hero-cta      { animation: fadeUp 0.8s ease 0.55s both; }

/* TABLET */
@media (max-width: 991px) {
  .site-header { padding: 0 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }

  .hero-image-col {
    height: 55vw;
    max-height: 400px;
    order: -1;
  }

  .hero-image-col::after {
    background:
      linear-gradient(to bottom, var(--navy-deep) 0%, transparent 30%),
      linear-gradient(to top, var(--navy-deep) 0%, transparent 30%);
  }

  .hero-text { padding: 60px 40px 80px; }

  .hero-headline .word { font-size: clamp(4rem, 12vw, 7rem); }

  .section-services, .section-when, .section-pull,
  .section-cta, .section-statement { padding: 80px 40px; }

  .services-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .services-grid   { grid-template-columns: 1fr; }
  .when-grid       { grid-template-columns: 1fr; gap: 40px; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer     { padding: 60px 40px 0; }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-image-col {
    height: 85vw;
    max-height: 480px;
  }
  .site-header { padding: 0 20px; }

  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 22px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 899;
  }

  .site-nav.open { display: flex; }

  .site-nav a { font-size: 0.88rem; color: rgba(245,240,235,0.7); }

  .btn-nav { padding: 12px 24px; }

  .hero-text { padding: 48px 20px 64px; }

  .hero-headline .word { font-size: clamp(3.5rem, 15vw, 5.5rem); }

  .section-services, .section-when, .section-pull,
  .section-cta, .section-statement { padding: 64px 20px; }

  .service-card { padding: 36px 24px; }

  .when-grid { gap: 32px; }

  .cta-contact { gap: 20px; flex-direction: column; align-items: center; }

  .footer-top   { grid-template-columns: 1fr; gap: 28px; }
  .site-footer  { padding: 56px 20px 0; }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 20px 0;
  }

  .section-pull::before { font-size: 18rem; }
}
/* ============================================================
   ADDITIONAL STYLES — paste at the very bottom of style.css
   Covers: About page + Case Studies page
   ============================================================ */

/* ─── PAGE HERO (About) ─── */
.page-hero {
  background: var(--navy-deep);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--off-white);
  margin-bottom: 40px;
  margin-top: 16px;
}

.page-hero-title .word {
  display: block;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.page-hero-title .word-italic {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 400px;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(15%) contrast(1.05);
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 25%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 20%);
}

/* ─── ABOUT BODY SECTIONS ─── */
.section-about-body {
  background: var(--off-white);
  padding: 100px 80px;
}

.section-about-alt {
  background: #eeead4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 8px;
}

.about-right p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-right p:last-child { margin-bottom: 0; }

/* ─── PILLARS ─── */
.section-pillars {
  background: var(--navy);
  padding: 100px 80px;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 64px;
  margin-top: 12px;
  max-width: 600px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.pillar:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.16);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.48);
  line-height: 1.85;
}

/* ─── CASE STUDIES HERO ─── */
.cs-hero {
  background: var(--navy-deep);
  padding: 160px 80px 100px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cs-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.cs-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--off-white);
  margin: 20px 0 32px;
}

.cs-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.cs-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── CASE STUDY SECTIONS ─── */
.cs-section {
  background: var(--off-white);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.cs-section-alt {
  background: #eeead4;
}

.cs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(15, 25, 35, 0.08);
  padding: 5px 14px;
  font-weight: 400;
}

.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 700px;
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs-block-title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}

.cs-block p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-block p:last-child { margin-bottom: 0; }

.cs-outcome {
  background: var(--navy);
  padding: 40px 48px;
  border-left: 3px solid var(--gold);
}

.cs-outcome-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cs-outcome-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-outcome-text:last-child { margin-bottom: 0; }

.cs-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ─── RESPONSIVE: ABOUT & CASE STUDIES ─── */
@media (max-width: 991px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero-image {
    height: 55vw;
    max-height: 400px;
    order: -1;
    position: relative;
    min-height: unset;
  }

  .page-hero-image img {
    position: absolute;
  }

  .page-hero-text {
    padding: 60px 40px 80px;
  }

  .page-hero-title .word { font-size: clamp(3.5rem, 10vw, 6rem); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-about-body { padding: 80px 40px; }
  .section-pillars     { padding: 80px 40px; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .cs-hero             { padding: 140px 40px 80px; }
  .cs-section          { padding: 80px 40px; }
  .cs-outcome          { padding: 32px 32px; }
}

@media (max-width: 768px) {
  .page-hero-image {
    height: 75vw;
    max-height: 360px;
  }

  .page-hero-text { padding: 48px 20px 64px; }

  .page-hero-title .word { font-size: clamp(3rem, 14vw, 5rem); }

  .section-about-body { padding: 64px 20px; }
  .section-pillars     { padding: 64px 20px; }
  .cs-hero             { padding: 120px 20px 64px; }
  .cs-section          { padding: 64px 20px; }
  .cs-outcome          { padding: 28px 24px; }
  .pillars-title       { margin-bottom: 40px; }
}
/* ─── PAGE HERO (About) ─── */
.page-hero {
  background: var(--navy-deep);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--off-white);
  margin-bottom: 40px;
  margin-top: 16px;
}

.page-hero-title .word {
  display: block;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.page-hero-title .word-italic {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.55);
  max-width: 400px;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(15%) contrast(1.05);
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 25%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 20%);
}

/* ─── ABOUT BODY SECTIONS ─── */
.section-about-body {
  background: var(--off-white);
  padding: 100px 80px;
}

.section-about-alt {
  background: #eeead4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 8px;
}

.about-right p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-right p:last-child { margin-bottom: 0; }

/* ─── PILLARS ─── */
.section-pillars {
  background: var(--navy);
  padding: 100px 80px;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 64px;
  margin-top: 12px;
  max-width: 600px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
}

.pillar:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.16);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.48);
  line-height: 1.85;
}

/* ─── CASE STUDIES HERO ─── */
.cs-hero {
  background: var(--navy-deep);
  padding: 160px 80px 100px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cs-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.cs-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--off-white);
  margin: 20px 0 32px;
}

.cs-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.cs-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── CASE STUDY SECTIONS ─── */
.cs-section {
  background: var(--off-white);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.cs-section-alt {
  background: #eeead4;
}

.cs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(15, 25, 35, 0.08);
  padding: 5px 14px;
  font-weight: 400;
}

.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 700px;
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs-block-title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}

.cs-block p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-block p:last-child { margin-bottom: 0; }

.cs-outcome {
  background: var(--navy);
  padding: 40px 48px;
  border-left: 3px solid var(--gold);
}

.cs-outcome-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cs-outcome-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.85;
  margin-bottom: 16px;
}

.cs-outcome-text:last-child { margin-bottom: 0; }

.cs-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .page-hero-inner { grid-template-columns: 1fr; }

  .page-hero-image {
    height: 55vw;
    max-height: 400px;
    order: -1;
    position: relative;
    min-height: unset;
  }

  .page-hero-image img { position: absolute; }

  .page-hero-text { padding: 60px 40px 80px; }

  .page-hero-title .word { font-size: clamp(3.5rem, 10vw, 6rem); }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  .section-about-body { padding: 80px 40px; }
  .section-pillars     { padding: 80px 40px; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .cs-hero             { padding: 140px 40px 80px; }
  .cs-section          { padding: 80px 40px; }
  .cs-outcome          { padding: 32px 32px; }
}

@media (max-width: 768px) {
  .page-hero-image { height: 75vw; max-height: 360px; }
  .page-hero-text  { padding: 48px 20px 64px; }
  .page-hero-title .word { font-size: clamp(3rem, 14vw, 5rem); }
  .section-about-body { padding: 64px 20px; }
  .section-pillars     { padding: 64px 20px; }
  .pillars-title       { margin-bottom: 40px; }
  .cs-hero             { padding: 120px 20px 64px; }
  .cs-section          { padding: 64px 20px; }
  .cs-outcome          { padding: 28px 24px; }
}
/* ─── WIDER NAV ADJUSTMENT ─── */
@media (max-width: 1100px) and (min-width: 861px) {
  .site-header { padding: 0 32px; }
  .site-nav { gap: 22px; }
  .site-nav a { font-size: 0.7rem; }
}
/* ─── LEGAL PAGES ─── */
.legal-body {
  background: var(--off-white);
  padding: 80px 80px 100px;
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.1);
}

.legal-block {
  padding: 36px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.legal-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.legal-block p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover { color: var(--navy); }

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(15, 25, 35, 0.05);
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.legal-back {
  display: inline-block;
  margin-top: 48px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.legal-back:hover { color: var(--navy); }

@media (max-width: 768px) {
  .legal-body { padding: 64px 20px 80px; }
}
/* ─── CONTACT PAGE ─── */
.contact-page-body {
  background: var(--off-white);
  padding: 80px 80px 100px;
}

.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-page-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 16px;
}

.contact-page-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.contact-detail-item:first-child {
  border-top: 1px solid rgba(15, 25, 35, 0.08);
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  transition: color 0.2s;
}

.contact-detail-value:hover { color: var(--gold); }

.contact-pull {
  background: var(--navy);
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}

.contact-pull-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin: 0;
}

/* Form */
.contact-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(15, 25, 35, 0.08);
  padding: 48px 40px;
}

.contact-form-label {
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  background: var(--off-white);
  border: 1px solid rgba(15, 25, 35, 0.12);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(42, 37, 32, 0.35);
}

.contact-submit {
  background: var(--navy);
  color: var(--off-white);
  border: none;
  padding: 18px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-submit:hover { opacity: 0.82; }

.contact-form-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  margin: 0;
  line-height: 1.6;
}

.contact-success {
  display: none;
  padding: 40px 0;
  text-align: center;
}

.contact-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-success-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
}

@media (max-width: 991px) {
  .contact-page-body { padding: 80px 40px; }
  .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .contact-page-body { padding: 64px 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-detail-item { grid-template-columns: 90px 1fr; }
}
/* ─── TESTIMONIALS ─── */
.section-testimonials {
  background: var(--navy);
  padding: 100px 80px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 64px;
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: rgba(245, 240, 235, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: background 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.28);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0;
}

.testimonial-quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial-role {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.35);
  letter-spacing: 0.06em;
}

@media (max-width: 991px) {
  .section-testimonials { padding: 80px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-title { margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .section-testimonials { padding: 64px 20px; }
  .testimonial-card { padding: 36px 24px; }
}
/* ─── BLOG POST ─── */
.blog-body {
  background: var(--off-white);
  padding: 80px 80px 100px;
}

.blog-inner {
  max-width: 780px;
  margin: 0 auto;
}

.blog-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.1);
}

.blog-content p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.9;
  margin-bottom: 24px;
}

.blog-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 48px 0 20px;
}

.blog-pullquote {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 32px 40px;
  margin: 48px 0;
}

.blog-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin: 0;
}

.blog-cta-box {
  background: var(--gold);
  padding: 48px 40px;
  margin: 56px 0 40px;
  text-align: center;
}

.blog-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 12px 0 12px;
}

.blog-cta-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(15, 25, 35, 0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ─── BLOG INDEX ─── */
.blog-index-body {
  background: var(--off-white);
  padding: 80px 80px 100px;
}

.blog-index-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(15, 25, 35, 0.08);
  padding: 48px 40px;
  transition: border-color 0.3s, background 0.3s;
}

.blog-card:hover {
  border-color: var(--gold);
  background: #fdfcf8;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.blog-card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.blog-card-date {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 300;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 640px;
}

.blog-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.blog-card:hover .blog-card-link { color: var(--navy); }

@media (max-width: 991px) {
  .blog-body       { padding: 80px 40px; }
  .blog-index-body { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .blog-body       { padding: 64px 20px; }
  .blog-index-body { padding: 64px 20px; }
  .blog-card       { padding: 36px 24px; }
  .blog-cta-box    { padding: 36px 24px; }
  .blog-pullquote  { padding: 28px 24px; }
}
/* ─── ICONS & IMAGES ─── */
.service-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.9;
}

.when-image {
  width: 100%;
  max-width: 420px;
  margin-top: 36px;
  object-fit: cover;
  border-left: 3px solid var(--gold);
}

.contact-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.8;
  flex-shrink: 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.contact-detail-item:first-child {
  border-top: 1px solid rgba(15, 25, 35, 0.08);
}

/* ─── PROPERTY IMAGE LAYOUT ─── */
.prop-img-desktop {
  display: flex;
  width: 100%;
  gap: 4px;
}

.prop-img-desktop img {
  flex: 1;
  width: 50%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.prop-img-mobile {
  display: none;
}

@media (max-width: 768px) {
  .prop-img-desktop {
    display: none;
  }

  .prop-img-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .prop-img-mobile img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }
}
.footer-pinhole-logo {
  width: 140px;
  height: 140px;
  display: block;
  margin-top: 24px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-pinhole-logo:hover {
  opacity: 0.85;
}
/* ─── FOOTER FULL LOGO ─── */
.footer-logo-full {
  width: 150px;
  height: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s;
  margin: 0;
  padding: 0;
}

.footer-logo-full:hover {
  opacity: 1;
}
/* ─── POPUP ─── */
.popup-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.75rem;
}
.popup-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.btn-ghost-popup {
  display: block;
  text-align: center;
  background: transparent;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.4);
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-popup:hover {
  border-color: #C9A84C;
  color: #F5F0EB;
}