/* =============================================
   SILKFLOW STUDIO — Design System
   Coastal Luxury | Refined Editorial
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --cream:       #F5F0E8;
  --off-white:   #FAF8F4;
  --navy:        #2D4A5E;
  --steel:       #4A6B80;
  --mist:        #B8CEDA;
  --sand:        #D4C5A9;
  --warm-white:  #FDFAF6;
  --charcoal:    #2A2A2A;
  --text-light:  #6B6B6B;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1280px;
  --section-pad: 100px 40px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.announcement-bar a { color: white; text-decoration: underline; }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid rgba(45,74,94,0.1);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.nav-logo svg { width: 36px; height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 10px 22px;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s !important;
  border: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--steel) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
  color: white;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 28px;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-light {
  background: white;
  color: var(--navy);
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid white;
  color: white;
  background: transparent;
}
.btn-outline:hover { background: white; color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--steel); transform: translateY(-2px); }
.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

/* ── INTRO SPLIT ── */
.intro-split {
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-split h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.intro-split h2 em { font-style: italic; }
.intro-split p {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.intro-split .btn { margin-top: 36px; }

/* ── PRESS LOGOS ── */
.press-bar {
  background: var(--charcoal);
  padding: 28px 48px;
}
.press-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.press-inner span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ── STATS ── */
.stats-section {
  padding: var(--section-pad);
  background: var(--off-white);
  text-align: center;
}
.stats-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.stats-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 64px;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.stat-desc {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
}

/* ── SECTION DIVIDER ── */
.wave-divider {
  height: 60px;
  background: var(--navy);
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.08) 20px,
    rgba(255,255,255,0.08) 21px
  );
  position: relative;
  overflow: hidden;
}

/* ── IMAGE + TEXT BLOCKS ── */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.split-img:hover img { transform: scale(1.04); }
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--off-white);
}
.split-text.dark { background: var(--navy); color: white; }
.split-text .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.split-text.dark .eyebrow { color: var(--mist); }
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.split-text.dark h2 { color: white; }
.split-text h2 em { font-style: italic; }
.split-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.split-text.dark p { color: rgba(255,255,255,0.75); }
.split-text ul {
  margin: 16px 0 32px;
}
.split-text ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.split-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--steel);
}
.split-text.dark ul li { color: rgba(255,255,255,0.7); }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--cream);
  padding: 64px 48px;
  text-align: center;
}
.services-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services-strip h3 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--steel);
  margin-bottom: 40px;
}
.services-tags {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.services-tags span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 400;
  position: relative;
}
.services-tags span::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width 0.3s;
}
.services-tags span:hover::after { width: 100%; }

/* ── SIGNATURE STRATEGY ── */
.strategy-section {
  padding: var(--section-pad);
  background: var(--off-white);
}
.strategy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.strategy-text .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.strategy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 32px;
}
.strategy-pillars { display: flex; flex-direction: column; gap: 40px; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar h4 em { font-style: italic; }
.pillar p { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.strategy-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 560px;
}
.strategy-images img { width: 100%; height: 100%; object-fit: cover; }

/* ── MARQUEE / WAVE PATTERN ── */
.wave-pattern {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.wave-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 20s linear infinite;
}
.wave-pattern span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 20px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── WHY DIFFERENT ── */
.different-section {
  padding: var(--section-pad);
  background: var(--navy);
  color: white;
  text-align: center;
}
.different-section .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 24px;
}
.different-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto 48px;
}
.different-section h2 em { font-style: italic; }
.different-section p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 48px;
  text-align: center;
  background: var(--cream);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-section h2 em { font-style: italic; }
.cta-section p {
  font-size: 14px;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── LEAD MAGNET ── */
.lead-magnet {
  padding: var(--section-pad);
  background: var(--off-white);
}
.lead-magnet-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.lead-magnet-img { position: relative; }
.lead-magnet-img img { box-shadow: 20px 20px 60px rgba(45,74,94,0.15); }
.lead-magnet-text .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.lead-magnet-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.lead-magnet-text h2 em { font-style: italic; }
.lead-magnet-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.email-form { display: flex; gap: 12px; flex-wrap: wrap; }
.email-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: 1px solid var(--sand);
  background: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.email-form input:focus { border-color: var(--navy); }
.email-form input::placeholder { color: var(--text-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: white;
  padding: 80px 48px 40px;
}
.footer-cta-strip {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 60px;
}
.footer-cta-strip p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-insta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.footer-bottom {
  text-align: center;
  padding-top: 48px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  max-width: var(--max-w);
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── FAQ ── */
.faq-section {
  padding: var(--section-pad);
  background: var(--off-white);
}
.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.faq-label h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.faq-label h2 em { font-style: italic; }
.faq-label p { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.faq-item {
  border-bottom: 1px solid rgba(45,74,94,0.15);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  font-weight: 400;
}
.faq-question:hover { color: var(--navy); }
.faq-toggle {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 80px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,74,94,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  color: white;
  text-align: center;
  padding: 24px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 8px;
}
.portfolio-overlay p {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 20px;
}
.portfolio-overlay .btn {
  font-size: 9px;
  padding: 10px 24px;
}

/* ── PROCESS ── */
.process-section {
  padding: var(--section-pad);
  background: var(--off-white);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
  margin-bottom: 0;
}
.process-step:nth-child(even) .process-step-text { order: -1; }
.process-step-img { overflow: hidden; }
.process-step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.process-step:hover .process-step-img img { transform: scale(1.04); }
.process-step-text {
  background: var(--navy);
  color: white;
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-step:nth-child(odd) .process-step-text { background: var(--cream); color: var(--charcoal); }
.process-step-text .step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.15;
  margin-bottom: 12px;
}
.process-step-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--navy);
}
.process-step:nth-child(even) .process-step-text h3 { color: white; }
.process-step-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}
.process-step:nth-child(even) .process-step-text p { color: rgba(255,255,255,0.7); }
.process-step-text .btn { margin-top: 32px; align-self: flex-start; }

/* ── ABOUT HERO ── */
.about-hero {
  padding: 120px 48px 80px;
  text-align: center;
  background: var(--off-white);
}
.about-hero .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0;
}
.about-photos {
  max-width: var(--max-w);
  margin: 60px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  height: 540px;
}
.about-photos img { width: 100%; height: 100%; object-fit: cover; }

/* ── VALUES ── */
.values-section {
  padding: var(--section-pad);
  background: var(--navy);
  color: white;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.values-section .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 40px;
}
.values-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-line {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}
.value-line em { font-style: italic; color: var(--mist); }
.value-line strong { font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); }

/* ── MAP/CONTACT ── */
.contact-block {
  padding: var(--section-pad);
  background: var(--off-white);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-info .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-detail {
  margin-bottom: 20px;
}
.contact-detail label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.contact-detail span, .contact-detail a {
  font-size: 14px;
  color: var(--charcoal);
}
.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,74,94,0.7) 0%, rgba(45,74,94,0.2) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 72px;
  color: white;
}
.page-hero-content .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: block;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
}
.page-hero-content h1 em { font-style: italic; }

/* ── INSTAGRAM STRIP ── */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 180px;
  overflow: hidden;
}
.insta-strip-item {
  overflow: hidden;
  position: relative;
}
.insta-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-strip-item:hover img { transform: scale(1.08); }

/* ── UTILITIES ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--navy);
}
.section-header h2 em { font-style: italic; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }

  .intro-split,
  .split-block,
  .strategy-inner,
  .lead-magnet-inner,
  .faq-inner,
  .contact-inner,
  .footer-grid,
  .about-photos,
  .process-step {
    grid-template-columns: 1fr;
  }

  .split-block.reverse { direction: ltr; }
  .about-photos { height: auto; }
  .about-photos img:first-child { height: 300px; }
  .about-photos img:last-child { height: 300px; }

  .hero-content { padding: 60px 24px; }
  .split-text { padding: 56px 32px; }
  .process-step-text { padding: 48px 32px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 60px; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); height: 240px; }

  :root { --section-pad: 72px 24px; }

  .stats-grid { gap: 40px; }
  .press-inner { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-line { font-size: 24px; padding-left: 24px; padding-right: 24px; }
}
