/* ═══════════════════════════════════════════════════════
   SCHILP — Main Stylesheet
   Brand colours: Maroon #4E0014 · Blue #283971
                  Baby Pink #FFE7EC · Silver Grey #D2D8D6
   Fonts: Playfair Display (headings) · Cormorant Garamond (body)
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --maroon:       #4E0014;
  --maroon-deep:  #3a000f;
  --blue:         #283971;
  --pink:         #FFE7EC;
  --pink-mid:     #f5c5d0;
  --silver:       #D2D8D6;
  --silver-light: #eaeeec;
  --off-white:    #faf8f6;
  --cream:        #f3efe9;
  --charcoal:     #1c1a18;
  --white:        #ffffff;
  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-body:      'Cormorant Garamond', Georgia, serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { background: var(--off-white); color: var(--charcoal);
        font-family: var(--ff-body); overflow-x: hidden; }

/* ── SHARED UTILITIES ────────────────────────────────── */
.section-tag {
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--maroon); display: block; margin-bottom: 12px;
}
.reveal { opacity: 0; transform: translateY(32px);
          transition: opacity .85s ease, transform .85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ──────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  transition: background .5s, padding .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(250,248,246,.97);
  backdrop-filter: blur(14px);
  padding: 14px 64px;
  box-shadow: 0 1px 0 rgba(78,0,20,.1);
}

/* Logo — two versions swapped by CSS on scroll */
.nav-logo { display: flex; align-items: center; text-decoration: none; height: 128px; }
.logo-negative { display: block;  height: 128px; width: auto; object-fit: contain; }
.logo-primary  { display: none;   height: 128px; width: auto; object-fit: contain; }
#navbar.scrolled .logo-negative { display: none; }
#navbar.scrolled .logo-primary  { display: block; }

/* SVG placeholder logos */
.logo-svg-neg text  { fill: #fff; }
.logo-svg-pri text  { fill: var(--blue); }

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a {
  font-family: var(--ff-body); font-size: 24px; font-weight: 600;
  letter-spacing: .15em; color: rgba(255,255,255,.95);
  text-decoration: none; transition: color .25s; position: relative;
}
#navbar.scrolled .nav-links a { color: var(--blue); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--maroon); transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--ff-body); font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--pink); text-decoration: none;
  border: 1px solid var(--pink); padding: 10px 26px;
  transition: background .3s, color .3s, border-color .3s;
}
#navbar.scrolled .nav-cta { color: var(--maroon); border-color: var(--maroon); }
.nav-cta:hover { background: var(--maroon) !important; color: #fff !important;
                 border-color: var(--maroon) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 26px; height: 1px;
                      background: #fff; transition: background .3s; }
#navbar.scrolled .nav-hamburger span { background: var(--charcoal); }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 620px;
  overflow: hidden; display: flex; align-items: center; justify-content: flex-start;
}
#hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #2a0008 35%, var(--blue) 80%, #1a2555 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 65% 40%, rgba(255,231,236,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 25% 70%, rgba(40,57,113,.25) 0%, transparent 70%);
}
.hero-bg-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--ff-body); font-size: 11px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(255,255,255,.18);
  border: 1px dashed rgba(255,255,255,.14); padding: 14px 28px; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 30%, rgba(0,0,0,.05) 65%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,.45) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2; text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px; padding: 0 64px 80px;
  animation: fadeUp 1.3s ease .3s both; max-width: 760px;
}
.hero-tag {
  font-family: var(--ff-body); font-size: 11px; font-weight: 400;
  letter-spacing: .55em; text-transform: uppercase; color: var(--pink-mid);
}
.hero-title {
  font-family: var(--ff-display); font-size: clamp(46px,6.5vw,88px);
  font-weight: 500; line-height: 1.02; color: #fff; letter-spacing: .01em;
}
.hero-title span { display: block; font-style: italic; font-weight: 400; color: var(--pink); }
.hero-sub {
  font-family: var(--ff-body); font-size: 24px; font-weight: 600;
  font-style: italic; letter-spacing: .05em;
  color: #fff; max-width: 760px; line-height: 1.75;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--pink); text-decoration: none; margin-top: 8px; transition: color .3s;
}
.hero-cta .cta-line { display: block; width: 40px; height: 1px;
                      background: var(--pink-mid); transition: width .4s; }
.hero-cta:hover { color: #fff; }
.hero-cta:hover .cta-line { width: 64px; }

.hero-scroll {
  position: absolute; bottom: 36px; right: 64px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeIn 2s ease 1.2s both;
}
.hero-scroll span { font-family: var(--ff-body); font-size: 9px;
                    letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── INTRO ───────────────────────────────────────────── */
#intro {
  background: var(--off-white); padding: 100px 64px;
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0 80px; align-items: center;
}
.intro-divider {
  background: linear-gradient(to bottom, transparent, rgba(78,0,20,.22), transparent);
}
.intro-left h2 {
  font-family: var(--ff-display); font-size: clamp(34px,4.5vw,58px);
  font-weight: 500; line-height: 1.1; color: var(--maroon); margin-top: 18px;
}
.intro-left h2 em { display: block; font-style: italic; font-weight: 400; color: var(--blue); }
.intro-right p {
  font-family: var(--ff-body); font-size: 18px; font-weight: 300;
  line-height: 1.9; letter-spacing: .03em; color: #4a4540;
}
.intro-right p + p { margin-top: 20px; }
.founder-note {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(78,0,20,.12);
  font-family: var(--ff-body); font-size: 14px; font-style: italic; font-weight: 300;
  letter-spacing: .04em; color: var(--maroon); line-height: 1.7;
}

/* ── 3-COL FEATURE SECTIONS ───────────── */
/* Shared layout used by #what-we-do, #objects-art, #markets */
.feature-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  min-height: 1200px;
}
.feature-section.alt { grid-template-columns: 1fr 1.6fr 1fr; }

/* Left panel */
.feature-left {
  padding: 400px 48px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  border-right: 1px solid rgba(78,0,20,.08);
}
.feature-left-top { display: flex; flex-direction: column; gap: 0;}
.feature-left h2 {
  font-family: var(--ff-display); font-size: clamp(32px,3.5vw,52px);
  font-weight: 500; line-height: 1.1; color: var(--blue); letter-spacing: .01em;
  margin-top: 14px;
}
.feature-left h2 em { font-style: italic; font-weight: 400; color: var(--maroon); }
.feature-stat { margin-top: auto; padding-top: 60px; }
.feature-stat-num {
  font-family: var(--ff-display); font-size: clamp(40px,5vw,64px);
  font-weight: 400; color: var(--maroon); line-height: 1;
}
.feature-stat-label {
  font-family: var(--ff-body); font-size: 18px; font-weight: 300;
  letter-spacing: .06em; color: #6a6460; line-height: 1.6; margin-top: 8px;
}

/* Center image panel */
.feature-image {
  position: relative; overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image img {
  width: 100%;
  max-width: 60%;
  height: auto; 
  max-height: 600px;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.feature-image:hover img { transform: scale(1.04); }

.feature-image-ph {
  width: 60%;            /* ← match the same % */
  min-height: 600px;     /* ← adjust height to taste */
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(0,0,0,.2);
  background: linear-gradient(135deg, var(--silver-light) 0%, #d8d4ce 100%);
}

/* Right panel */
.feature-right {
  padding: 400px 48px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  border-left: 1px solid rgba(78,0,20,.08);
}
.feature-right-top { display: flex; flex-direction: column; gap: 24px; }
.feature-right h3 {
  font-family: var(--ff-display); font-size: clamp(22px,2.5vw,34px);
  font-weight: 500; line-height: 1.2; color: var(--maroon); letter-spacing: .01em;
}
.feature-right h3 em { font-style: italic; font-weight: 400; color: var(--blue); }
.feature-right p {
  font-family: var(--ff-body); font-size: 16px; font-weight: 600;
  line-height: 1.85; color: #5a5550; letter-spacing: .03em;
}

.feature-right ul { padding: 0px 24px;  font-family: var(--ff-body); font-size: 16px; font-weight: 600;
  line-height: 1.85; color: #5a5550; letter-spacing: .03em;}
.feature-clients {
  display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: 8px;
}
.feature-client-name {
  font-family: var(--ff-display); font-size: 15px; font-style: italic;
  font-weight: 400; color: rgba(78,0,20,.35); letter-spacing: .04em;
  transition: color .3s; cursor: default;
}
.feature-client-name:hover { color: rgba(78,0,20,.7); }
.feature-btn {
  display: inline-block; margin-top: auto; padding-top: 48px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; text-decoration: none;
  background: var(--maroon); color: #fff;
  padding: 14px 36px; align-self: flex-start;
  transition: background .3s, transform .3s;
}
.feature-btn:hover { background: var(--maroon); transform: translateY(-2px); }
.feature-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  color: var(--maroon); margin-top: auto; padding-top: 48px; align-self: flex-start;
  transition: gap .3s;
}
.feature-link svg { transition: transform .3s; }
.feature-link:hover { gap: 20px; }
.feature-link:hover svg { transform: translateX(4px); }

/* Objects & Art section — cream background */
#objects-art { background: var(--off-white); }
#objects-art .feature-left { border-color: rgba(78,0,20,.1); }
#objects-art .feature-right { border-color: rgba(78,0,20,.1); }

/* Markets section — off-white background */
#markets-section { background: var(--off-white); }

/* SVG Map container */
.map-container {
  width: 100%; height: 100%; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1a2a4a 0%, #0f1d35 60%, #162240 100%);
  padding: 32px;
}

/* ── SERVICES (4 cards — used inside What We Do detail) ─ */
#services { background: var(--maroon); padding: 100px 64px; }
.services-subheader { margin-bottom: 64px; }
.services-subheader h2 {
  font-family: var(--ff-display); font-size: clamp(28px,3.5vw,46px);
  font-weight: 500; color: #fff; line-height: 1.1;
}
.services-subheader h2 em { font-style: italic; font-weight: 400; color: var(--pink); }
.services-subheader p {
  font-family: var(--ff-body); font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.5); max-width: 520px; line-height: 1.8; margin-top: 16px;
}
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.service-card {
  padding: 0 40px 0 0; border-right: 1px solid rgba(255,255,255,.1);
  opacity: 0; transform: translateY(24px);
}
.service-card:last-child { border-right: none; padding-right: 0; }
.service-card.visible { opacity: 1; transform: translateY(0);
                        transition: opacity .7s ease, transform .7s ease; }
.service-card:nth-child(2) { transition-delay: .12s; }
.service-card:nth-child(3) { transition-delay: .24s; }
.service-card:nth-child(4) { transition-delay: .36s; }
.service-num {
  font-family: var(--ff-display); font-size: 72px; font-weight: 500;
  color: rgba(255,255,255,.06); line-height: 1; margin-bottom: -20px;
}
.service-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 500;
  color: #fff; line-height: 1.25; margin-bottom: 20px;
}
.service-divider { width: 32px; height: 1px; background: var(--pink-mid); opacity: .5; margin-bottom: 20px; }
.service-body {
  font-family: var(--ff-body); font-size: 15px; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,.52);
}
.service-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  font-family: var(--ff-body); font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.32); padding-left: 16px; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--pink-mid); opacity: .5;
}
.service-enquire {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 32px;
  font-family: var(--ff-body); font-size: 11px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--pink-mid); text-decoration: none;
  opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s;
}
.service-card:hover .service-enquire { opacity: 1; transform: translateY(0); }

/* ── MARQUEE ─────────────────────────────────────────── */
#marquee-strip { overflow: hidden; background: var(--blue); padding: 16px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marqueeScroll 32s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 30px; padding: 0 40px;
  font-family: var(--ff-body); font-size: 17px; font-style: italic;
  color: rgba(255,255,255,.72); letter-spacing: .06em;
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%;
               background: var(--pink-mid); opacity: .6; flex-shrink: 0; }

/* ── FOUNDER ─────────────────────────────────────────── */
#founder {
  padding: 110px 64px; background: var(--off-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.founder-visual { position: relative; height: 560px; }
.founder-img { position: absolute; right: 0; top: 0; width: 80%; height: 90%; object-fit: cover; }
.founder-img-ph {
  position: absolute; right: 0; top: 0; width: 80%; height: 90%;
  background: linear-gradient(135deg, var(--silver) 0%, #b8c0be 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(0,0,0,.2);
}
.founder-accent {
  position: absolute; left: 0; bottom: 0; width: 42%; height: 42%;
  background: var(--maroon); display: flex; align-items: center; justify-content: center; padding: 28px;
}
.founder-accent-text {
  font-family: var(--ff-display); font-size: 18px; font-weight: 400;
  font-style: italic; color: var(--pink); text-align: center; line-height: 1.5;
}
.founder-text h2 {
  font-family: var(--ff-display); font-size: clamp(30px,3.5vw,48px);
  font-weight: 500; color: var(--blue); line-height: 1.15; margin-top: 18px;
}
.founder-text h2 em { font-style: italic; font-weight: 400; color: var(--maroon); }
.founder-text p {
  font-family: var(--ff-body); font-size: 17px; font-weight: 300;
  line-height: 1.9; color: #4a4540; margin-top: 24px;
}
.founder-name { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(78,0,20,.15);
                display: flex; flex-direction: column; gap: 4px; }
.founder-name strong { font-family: var(--ff-display); font-size: 18px; font-weight: 500;
                       color: var(--maroon); letter-spacing: .04em; }
.founder-name span { font-family: var(--ff-body); font-size: 13px; font-weight: 300;
                     font-style: italic; color: var(--blue); letter-spacing: .08em; }

/* ── CLIENTS ─────────────────────────────────────────── */
#clients { background: var(--silver-light); padding: 80px 64px; text-align: center; }
.clients-label { font-family: var(--ff-body); font-size: 11px; font-weight: 400;
                 letter-spacing: .45em; text-transform: uppercase; color: var(--blue); margin-bottom: 44px; }
.clients-coming { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.clients-coming-line { width: 48px; height: 1px; background: rgba(78,0,20,.2); }
.clients-coming-text { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px);
                       font-weight: 400; font-style: italic; color: rgba(78,0,20,.22); letter-spacing: .06em; }
.clients-coming-sub { font-family: var(--ff-body); font-size: 14px; font-weight: 300;
                      letter-spacing: .18em; text-transform: uppercase; color: rgba(40,57,113,.3); margin-top: 4px; }

/* ── CTA ─────────────────────────────────────────────── */
#cta-section {
  position: relative; overflow: hidden; background: var(--blue);
  padding: 140px 64px; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
#cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(255,231,236,.08) 0%, transparent 70%);
}
.cta-tag { font-family: var(--ff-body); font-size: 11px; letter-spacing: .5em;
           text-transform: uppercase; color: var(--pink-mid); margin-bottom: 24px; }
.cta-title { font-family: var(--ff-display); font-size: clamp(36px,5.5vw,72px);
             font-weight: 500; color: #fff; line-height: 1.08; }
.cta-title em { font-style: italic; font-weight: 400; color: var(--pink); }
.cta-sub { margin-top: 24px; font-family: var(--ff-body); font-size: 17px;
           font-weight: 300; font-style: italic; color: rgba(255,255,255,.5);
           max-width: 460px; line-height: 1.75; }
.cta-contacts { display: flex; gap: 60px; margin-top: 52px; flex-wrap: wrap; justify-content: center; }
.cta-contact-item { display: flex; flex-direction: column; gap: 6px; }
.cta-contact-item label { font-family: var(--ff-body); font-size: 10px;
                           letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.cta-contact-item a { font-family: var(--ff-body); font-size: 17px; font-weight: 300;
                      font-style: italic; color: var(--pink); text-decoration: none; transition: color .25s; }
.cta-contact-item a:hover { color: #fff; }
.cta-btn {
  margin-top: 52px; display: inline-block;
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue); background: var(--pink); text-decoration: none;
  padding: 18px 56px; transition: background .3s, transform .3s;
}
.cta-btn:hover { background: #fff; transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: #3a000f; padding: 72px 64px 40px; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,231,236,.1);
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand p { font-family: var(--ff-body); font-size: 14px; font-weight: 300;
                  line-height: 1.8; color: rgba(255,231,236,.45); max-width: 280px; font-style: italic; }
.footer-tag { margin-top: 20px; font-family: var(--ff-body); font-size: 11px; font-weight: 300;
              letter-spacing: .2em; text-transform: uppercase; color: rgba(255,231,236,.18); }
.footer-col-title { font-family: var(--ff-body); font-size: 10px; font-weight: 500;
                    letter-spacing: .4em; text-transform: uppercase;
                    color: var(--pink-mid); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-family: var(--ff-body); font-size: 14px; font-weight: 300;
                      font-style: italic; color: rgba(255,231,236,.4);
                      text-decoration: none; transition: color .25s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
                 padding-top: 32px; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-family: var(--ff-body); font-size: 12px; font-weight: 300; color: rgba(255,231,236,.18); }
.footer-socials { display: flex; gap: 28px; }
.footer-socials a { font-family: var(--ff-body); font-size: 12px; font-style: italic;
                    color: rgba(255,231,236,.3); text-decoration: none; transition: color .25s; }
.footer-socials a:hover { color: var(--pink); }

/* ── KEYFRAMES ───────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(36px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes scrollPulse {
  0%,100% { opacity:.35; transform:scaleY(1) }
  50%     { opacity:1;   transform:scaleY(1.35) }
}
@keyframes marqueeScroll { from { transform:translateX(0) } to { transform:translateX(-50%) } }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .feature-section { grid-template-columns: 1fr; min-height: auto; }
  .feature-left, .feature-right { border: none; border-bottom: 1px solid rgba(78,0,20,.08); }
  .feature-image-ph { min-height: 400px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-card { padding: 0 0 48px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .service-card:last-child { border-bottom: none; padding-bottom: 0; }
  #founder { grid-template-columns: 1fr; gap: 60px; }
  .founder-visual { height: 400px; order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #navbar { padding: 20px 28px; }
  #navbar.scrolled { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #intro { grid-template-columns: 1fr; gap: 48px; }
  .intro-divider { display: none; }
  #intro, #services, #founder, #clients, #cta-section { padding-left: 28px; padding-right: 28px; }
  .feature-left, .feature-right { padding: 48px 28px; }
  .hero-content { padding: 0 28px 64px; }
  footer { padding: 60px 28px 32px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 36px; }
  .hero-scroll { right: 28px; }
}
