/* ============================================
   STUDIO TERRACE — Master Stylesheet
   Palette: Burgundy · Ivory · Black
   Aesthetic: European Antique Editorial
   ============================================ */

:root {
  --burgundy:       #482317;
  --burgundy-deep:  #321509;
  --burgundy-light: #6B3828;
  --burgundy-mist:  #f0ebe8;
  --ivory:          #F7F3EC;
  --ivory-warm:     #EDE7DC;
  --ivory-dark:     #DDD4C5;
  --black:          #1a120d;
  --charcoal:       #482317;
  --warm-gray:      #8da5ad;
  --rule-color:     #8da5ad;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-sc:        'Cormorant SC', Georgia, serif;
  --font-body:      'EB Garamond', Georgia, serif;

  --nav-h: 80px;
  --container: 1200px;
  --gap: clamp(40px, 6vw, 100px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  color: var(--burgundy);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* UTILITY */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* TYPOGRAPHY SCALE */
h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(52px, 7vw, 110px); line-height: 1.0; letter-spacing: -0.01em; }
h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 4vw, 64px); line-height: 1.1; }
h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.5vw, 38px); line-height: 1.2; }
h4 { font-family: var(--font-sc); font-weight: 400; font-size: clamp(14px, 1.2vw, 17px); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
h5 { font-family: var(--font-sc); font-weight: 400; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  display: block;
}

.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header--center { text-align: center; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ivory-dark);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(14,11,9,0.08);
}

.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a { display: flex; align-items: flex-start; flex-direction: column; gap: 1px; }

.logo-wordmark {
  font-family: var(--font-sc);
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.18em;
  color: var(--burgundy);
  display: block;
}

.logo-sub {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
}

/* Logo image version (when logo is uploaded) */
.nav-logo img,
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.nav-links a {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--burgundy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 8px 22px !important;
  border: 1px solid var(--burgundy) !important;
  color: var(--burgundy) !important;
  transition: background 0.3s ease, color 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--burgundy) !important;
  color: var(--ivory) !important;
}

.nav-cta::after { display: none !important; }

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

.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--burgundy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-ghost:hover {
  background: var(--ivory);
  color: var(--burgundy);
}

.btn-large {
  padding: 18px 52px;
  font-size: 12px;
}

/* ============================================
   HERO
   ============================================ */

/* ============================================
   HERO - IVORY SPLIT LAYOUT
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-ivory {
  background: var(--ivory);
  flex-direction: row;
}

.hero-logo-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px);
  background: var(--ivory);
  position: relative;
}

.hero-logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.hero-divider-line {
  width: 1px;
  background: var(--ivory-dark);
  align-self: stretch;
  margin: 60px 0;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px);
  background: var(--ivory);
}

.hero .hero-eyebrow { color: var(--burgundy); }

.hero-title {
  color: var(--charcoal);
  margin-bottom: 28px;
}

.hero-title em { color: var(--burgundy); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--warm-gray);
  margin-bottom: 48px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-outline {
  display: inline-block;
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--ivory);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--rule-color);
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rule-color), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================
   STATEMENT
   ============================================ */

.statement {
  background: var(--burgundy);
  padding: clamp(60px, 8vw, 120px) 0;
}

.statement-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.statement-rule { margin-bottom: 32px; color: rgba(247,243,236,0.4); font-size: 12px; }

.statement-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 24px;
}

.statement-attribution {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(247,243,236,0.75);
  text-transform: uppercase;
  margin: 0;
}

/* ============================================
   PILLARS / THREE ARMS (Homepage)
   ============================================ */

.pillars {
  padding: var(--gap) 0;
  background: var(--ivory);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ivory-dark);
}

.pillar {
  padding: clamp(36px, 4vw, 60px);
  border-right: 1px solid var(--ivory-dark);
  position: relative;
  transition: background 0.3s ease;
}

.pillar:last-child { border-right: none; }

.pillar--primary {
  background: var(--ivory-warm);
}

.pillar:hover { background: var(--burgundy-mist); }

.pillar-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 6vw, 100px);
  font-weight: 300;
  color: var(--rule-color);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.5;
}

.pillar-content h3 {
  font-size: clamp(22px, 2vw, 32px);
  margin-bottom: 6px;
}

.pillar-tag {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.pillar-link {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-block;
  margin-top: 20px;
  transition: opacity 0.2s ease;
}

.pillar-link:hover { opacity: 0.6; }

/* ============================================
   GEOGRAPHY
   ============================================ */

.geography {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.geography-image {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
  min-height: 500px;
}

.geo-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(72,35,23,0.4) 0%, transparent 55%),
    linear-gradient(135deg, #482317 0%, #321509 100%);
}

.geography-content {
  background: var(--ivory-warm);
  padding: clamp(48px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.geography-content h2 { margin-bottom: 24px; }
.geography-content h2 em { color: var(--burgundy); }
.geography-content p { color: var(--warm-gray); margin-bottom: 36px; max-width: 440px; }

.geo-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.geo-stat { text-align: center; }

.stat-value {
  font-family: var(--font-sc);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.1em;
  color: var(--burgundy);
  display: block;
}

.stat-label {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-top: 4px;
}

.geo-divider {
  font-size: 8px;
  color: var(--rule-color);
}

/* ============================================
   APPROACH
   ============================================ */

.approach {
  padding: var(--gap) 0;
  background: var(--burgundy);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.approach-left .section-eyebrow { color: var(--rule-color); }
.approach-left h2 { color: var(--ivory); }
.approach-left h2 em { color: var(--burgundy-light); }

.approach-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(141,165,173,0.2);
  align-items: start;
}

.approach-item:first-child { padding-top: 0; }
.approach-item:last-child { border-bottom: none; }

.approach-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--burgundy-light);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.approach-item h4 { color: var(--ivory); margin-bottom: 10px; }
.approach-item p { color: rgba(247,243,236,0.75); font-size: 15px; margin: 0; }

/* ============================================
   CONTACT
   ============================================ */

.contact {
  background: var(--ivory-warm);
  padding: clamp(80px, 10vw, 160px) 0;
  text-align: center;
}

.contact-inner { max-width: 680px; margin: 0 auto; }

.contact-ornament {
  font-size: 10px;
  color: var(--burgundy);
  margin-bottom: 24px;
  display: block;
  letter-spacing: 8px;
}

.contact h2 { margin-bottom: 20px; }
.contact h2 em { color: var(--burgundy); }

.contact-sub {
  color: var(--warm-gray);
  margin-bottom: 40px;
  font-size: clamp(15px, 1.2vw, 18px);
}

.contact-location {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--burgundy-deep);
  padding: 48px 0;
  border-top: 1px solid rgba(141,165,173,0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .logo-wordmark { color: var(--ivory); font-size: 15px; }

.footer-tagline {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(247,243,236,0.5);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.8);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--ivory); }

.footer-copy {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(247,243,236,0.45);
  margin: 0;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vh, 120px));
  padding-bottom: clamp(48px, 6vh, 80px);
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.15) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.page-hero .hero-eyebrow { color: var(--rule-color); }

.page-hero-title {
  color: var(--ivory);
  line-height: 1.0;
}

.page-hero-title em { color: var(--burgundy-light); }

.page-hero-rule {
  height: 1px;
  background: linear-gradient(to right, var(--burgundy), transparent);
  margin-top: clamp(32px, 4vh, 60px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro {
  padding: var(--gap) 0;
  background: var(--ivory);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-image-block {
  position: relative;
}

.about-logo-block {
  width: 100%;
  background: var(--ivory-warm);
  border: 1px solid var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  min-height: 400px;
}

.about-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
}

.about-image-caption {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 12px;
  text-align: right;
}

.about-intro-right { padding-top: 8px; }
.about-intro-right h2 { margin-bottom: 24px; }
.about-intro-right h2 em { color: var(--burgundy); }

.about-lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.about-intro-right p { color: var(--warm-gray); }

/* VALUES */
.values {
  padding: var(--gap) 0;
  background: var(--burgundy);
}

.values .section-eyebrow { color: var(--rule-color); }
.values h2 { color: var(--ivory); }
.values h2 em { color: var(--burgundy-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(141,165,173,0.15);
  border: 1px solid rgba(141,165,173,0.15);
}

.value-item {
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 2.5vw, 40px);
  background: var(--burgundy);
  transition: background 0.3s ease;
}

.value-item:hover { background: #5a2d1e; }

.value-ornament {
  font-size: 8px;
  color: var(--burgundy);
  margin-bottom: 20px;
  letter-spacing: 6px;
}

.value-item h4 { color: var(--ivory); margin-bottom: 14px; }
.value-item p { color: rgba(247,243,236,0.75); font-size: 15px; margin: 0; }

/* CITY SECTION */
.city-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.city-content {
  background: var(--burgundy);
  padding: clamp(48px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.city-content .section-eyebrow { color: rgba(247,243,236,0.6); }
.city-content h2 { color: var(--ivory); margin-bottom: 24px; }
.city-content h2 em { color: rgba(247,243,236,0.8); font-style: italic; }
.city-content p { color: rgba(247,243,236,0.7); max-width: 400px; }

.city-domain {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(247,243,236,0.4) !important;
  margin-top: 8px;
}

.city-image { position: relative; overflow: hidden; min-height: 400px; }

.city-image-fill {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(72,35,23,0.25) 0%, transparent 55%),
    linear-gradient(150deg, #5a2d1e 0%, #482317 40%, #321509 100%);
}

/* ARMS ABOUT */
.arms-about {
  padding: var(--gap) 0;
  background: var(--ivory);
}

.arms-list { max-width: 800px; }

.arm-item { padding: clamp(36px, 4vw, 56px) 0; }
.arm-divider {
  font-size: 8px;
  color: var(--burgundy);
  letter-spacing: 16px;
  padding: 8px 0;
}

.arm-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 20px;
}

.arm-roman {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--rule-color);
  opacity: 0.5;
  min-width: 56px;
}

.arm-header h3 { margin-bottom: 6px; }
.arm-item p { color: var(--warm-gray); max-width: 600px; margin-bottom: 16px; }

.arm-status {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
}

.arm-status--active { color: var(--burgundy); border-color: var(--burgundy); }
.arm-status--soon { color: var(--warm-gray); border-color: var(--ivory-dark); }
.arm-status--dev { color: var(--warm-gray); border-color: var(--ivory-dark); }

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-intro {
  padding: var(--gap) 0;
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--ivory-dark);
}

.services-intro-inner {
  max-width: 860px;
}

.services-intro h2 {
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.3;
}

.services-intro h2 em { color: var(--burgundy); }
.services-intro p { color: var(--warm-gray); font-size: clamp(16px, 1.2vw, 18px); }

.services-list {
  padding: var(--gap) 0;
  background: var(--ivory);
}

.service-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(56px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--ivory-dark);
}

.service-block:last-child { border-bottom: none; }

.service-block-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.service-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--rule-color);
  opacity: 0.4;
  line-height: 1;
}

.service-rule {
  width: 1px;
  flex: 1;
  background: var(--ivory-dark);
  min-height: 40px;
}

.service-block-right h2 { margin-bottom: 20px; }
.service-block-right h2 em { color: var(--burgundy); }

.service-lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 40px;
  max-width: 640px;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--ivory-dark);
}

.service-detail h5 { color: var(--burgundy); }
.service-detail p { color: var(--warm-gray); font-size: 15px; margin: 0; }

.service-divider {
  text-align: center;
  color: var(--rule-color);
  font-size: 10px;
  letter-spacing: 12px;
  padding: 24px 0;
}

/* ENGAGEMENT */
.engagement {
  padding: var(--gap) 0;
  background: var(--ivory-warm);
  border-top: 1px solid var(--ivory-dark);
}

.engagement-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.engagement-left h2 { margin-bottom: 0; }
.engagement-left h2 em { color: var(--burgundy); }

.engagement-lead {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--charcoal);
  margin-bottom: 36px;
  line-height: 1.65;
}

.engagement-steps { display: flex; flex-direction: column; gap: 0; }

.engagement-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ivory-dark);
  align-items: start;
}

.engagement-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--rule-color);
  line-height: 1;
  opacity: 0.6;
}

.engagement-step h5 { color: var(--burgundy); margin-bottom: 6px; }
.engagement-step p { color: var(--warm-gray); font-size: 15px; margin: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--ivory-dark); }
  .pillar:last-child { border-bottom: none; }
  .geography { grid-template-columns: 1fr; }
  .geography-image { min-height: 360px; }
  .approach-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
  .city-section { grid-template-columns: 1fr; }
  .city-image { min-height: 300px; }
  .service-block { grid-template-columns: 80px 1fr; gap: 28px; }
  .engagement-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--ivory); padding: 24px; border-bottom: 1px solid var(--ivory-dark); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-ivory { flex-direction: column; min-height: auto; padding-bottom: 60px; }
  .hero-logo-side { padding: 48px 24px 32px; min-height: auto; }
  .hero-logo-img { max-width: 220px; }
  .hero-divider-line { width: auto; height: 1px; margin: 0 40px; align-self: auto; }
  .hero-content { padding: 32px 24px 48px; }
  .hero-scroll-hint { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block-left { flex-direction: row; align-items: center; }
  .service-rule { display: none; }
  .service-details { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================
   PAGE BORDER - Mirrors Logo Border
   ============================================ */

.page-border {
  position: fixed;
  inset: 12px;
  pointer-events: none;
  z-index: 999;
}

/* Dotted outer border */
.page-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dotted rgba(72, 35, 23, 0.3);
  pointer-events: none;
}

/* Solid inner border */
.page-border::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(141, 165, 173, 0.4);
  pointer-events: none;
}

/* Corner flourishes using SVG */
.page-border-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.page-border-corner--tl { top: -2px; left: -2px; }
.page-border-corner--tr { top: -2px; right: -2px; transform: scaleX(-1); }
.page-border-corner--bl { bottom: -2px; left: -2px; transform: scaleY(-1); }
.page-border-corner--br { bottom: -2px; right: -2px; transform: scale(-1); }

.page-border-corner svg {
  width: 100%;
  height: 100%;
  color: rgba(72, 35, 23, 0.4);
}

@media (max-width: 768px) {
  .page-border { inset: 6px; }
  .page-border-corner { width: 22px; height: 22px; }
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 700px;
  background: var(--ivory);
}

.founder-image-side {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-content {
  padding: clamp(48px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory-warm);
  border-left: 1px solid var(--ivory-dark);
}

.founder-content h2 { margin-bottom: 20px; }
.founder-content h2 em { color: var(--burgundy); font-style: italic; }

.founder-lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.65;
  color: var(--burgundy);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-display);
}

.founder-content p {
  color: var(--warm-gray);
  font-size: clamp(15px, 1.1vw, 17px);
  margin-bottom: 16px;
  line-height: 1.8;
}

.founder-credentials {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--ivory-dark);
  flex-wrap: wrap;
}

.founder-credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-value {
  font-family: var(--font-sc);
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--burgundy);
  letter-spacing: 0.08em;
  display: block;
}

.credential-label {
  font-family: var(--font-sc);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
}

@media (max-width: 1024px) {
  .founder-section { grid-template-columns: 1fr; }
  .founder-image-side { min-height: 480px; }
  .founder-content { border-left: none; border-top: 1px solid var(--ivory-dark); }
}

/* About page hero - make "Studio Terrace" ivory to match "About" */
.page-hero-title em {
  color: var(--ivory) !important;
  font-style: italic;
}

/* About page hero - "Studio Terrace" matches ivory color of "About" */
.hero-title-ivory {
  color: var(--ivory);
  font-style: normal;
}

/* ============================================
   ORNAMENTAL DIVIDERS
   ============================================ */

.ornamental-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(32px, 4vw, 56px) 0;
  background: var(--ivory);
  gap: 20px;
  position: relative;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 24px);
  color: var(--burgundy);
  opacity: 0.75;
  width: 100%;
  max-width: 600px;
}

.divider-ornament svg {
  width: clamp(80px, 12vw, 140px);
  height: auto;
  flex-shrink: 0;
}

/* ============================================
   ELEVATED HOVER EFFECTS
   ============================================ */

/* Buttons — lift + shadow on hover */
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(72, 35, 23, 0.18);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }

/* Nav links — elegant underline draw */
.nav-links a::after {
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Pillar cards — refined lift */
.pillar {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(72, 35, 23, 0.08);
}

/* Pillar link arrow animation */
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, opacity 0.2s ease;
}

.pillar-link:hover {
  gap: 12px;
  opacity: 0.8;
}

/* Value items */
.value-item {
  transition: background 0.3s ease, transform 0.25s ease;
}

.value-item:hover {
  transform: translateY(-2px);
}

/* Arm items — subtle left border reveal */
.arm-item {
  position: relative;
  padding-left: 20px;
  transition: padding-left 0.3s ease;
}

.arm-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--burgundy);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arm-item:hover::before {
  opacity: 0.4;
  transform: scaleY(1);
}

/* Service blocks — left accent line */
.service-block {
  position: relative;
  transition: padding-left 0.3s ease;
}

.service-detail {
  transition: transform 0.25s ease;
}

.service-detail:hover {
  transform: translateX(4px);
}

/* Engagement steps */
.engagement-step {
  transition: background 0.25s ease, padding 0.25s ease;
  border-radius: 2px;
  padding-left: 4px;
}

.engagement-step:hover {
  background: rgba(141, 165, 173, 0.08);
  padding-left: 12px;
}

/* Footer nav links */
.footer-nav a {
  transition: color 0.2s ease, letter-spacing 0.3s ease;
}

.footer-nav a:hover {
  letter-spacing: 0.28em;
}

/* Enquire button in nav */
.nav-cta {
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(72, 35, 23, 0.2) !important;
}

/* Logo hover */
.nav-logo a {
  transition: opacity 0.25s ease;
}

.nav-logo a:hover {
  opacity: 0.75;
}

/* Geo stats */
.geo-stat {
  transition: transform 0.25s ease;
}

.geo-stat:hover {
  transform: translateY(-2px);
}

/* About image block */
.about-logo-block {
  transition: box-shadow 0.3s ease;
}

.about-logo-block:hover {
  box-shadow: 0 8px 32px rgba(72, 35, 23, 0.1);
}

/* Founder photo */
.founder-photo {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-image-side:hover .founder-photo {
  transform: scale(1.02);
}

/* Divider SVG sizing — center larger, sides smaller */
.divider-svg-center {
  width: clamp(100px, 16vw, 180px) !important;
}

.divider-svg-side {
  width: clamp(60px, 9vw, 120px) !important;
  opacity: 0.7;
}

/* About hero italic */
.hero-title-ivory em {
  font-style: italic;
  color: var(--ivory);
}

/* Section top divider — matches service-divider style */
.section-top-divider {
  background: var(--ivory);
  text-align: center;
  padding: 0;
}

.std-line {
  height: 1px;
  background: var(--ivory-dark);
  width: 100%;
}

.std-dots {
  font-size: 8px;
  color: var(--warm-gray);
  letter-spacing: 10px;
  padding: 20px 0 0;
  opacity: 0.7;
}
