:root {
  --bg: #fbfaf8;
  --bg-alt: #f3f1ec;
  --bg-deep: #14130f;
  --ink: #17171a;
  --ink-soft: #55534d;
  --line: #dedad2;
  --accent: #8a6a3f;
  --accent-soft: #b99968;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 640px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: transparent;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,0.02); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; font-family: 'Fraunces', serif; }
.logo-mark { width: 18px; height: 26px; flex-shrink: 0; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; letter-spacing: 0.01em; transition: color 0.2s ease; position: relative; }
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background .2s ease, color .2s ease, border-color .2s ease !important;
}
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; border-color: var(--ink); }
.nav-cta.is-active { color: var(--bg) !important; background: var(--ink); }
.nav-cta.is-active::after { display: none; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 2px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: 84px 0 0; overflow: hidden; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 90px;
}

.eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 22px; }

.hero h1 { font-size: clamp(40px, 5vw, 66px); line-height: 1.04; letter-spacing: -0.01em; font-weight: 600; margin: 0 0 24px; }

.hero-sub { font-size: 17.5px; line-height: 1.65; color: var(--ink-soft); max-width: 460px; margin: 0 0 36px; }

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Photo frame (real photography, consistent premium treatment) */
.photo-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(20,19,15,0.35), 0 14px 30px -18px rgba(20,19,15,0.2);
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) sepia(0.14) contrast(1.03) brightness(1.01); }
.photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(20,19,15,0) 50%, rgba(20,19,15,0.4) 100%), linear-gradient(15deg, rgba(138,106,63,0.22), rgba(20,19,15,0) 50%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(138,106,63,0.08);
  pointer-events: none;
  z-index: 1;
}
.hero-visual .photo-frame { aspect-ratio: 4/5; }
.hero-visual { position: relative; }
.hero-visual .float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-tag {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(251,250,248,0.92);
}
.hero-tag strong { display: block; font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; }
.hero-tag span { display: block; opacity: 0.8; margin-top: 2px; }

/* Marquee */
.marquee { border-top: 1px solid var(--line); overflow: hidden; padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: scroll-left 28s linear infinite; }
.marquee-track span { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Buttons */
.btn { display: inline-block; padding: 15px 30px; font-size: 14px; letter-spacing: 0.01em; text-decoration: none; border-radius: 2px; transition: opacity 0.2s ease, transform 0.2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(23,23,26,0.4); }
.btn-gold { background: var(--accent); color: #fff; }
.btn-gold:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); padding: 15px 4px; }
.btn-ghost:hover { opacity: 0.7; }
.btn-outline { border: 1px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-submit { border: none; cursor: pointer; width: 100%; font-family: inherit; }
.btn-submit:disabled { background: #cfccc4; color: #8a877f; cursor: not-allowed; }
.btn-submit:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(23,23,26,0.4); }

/* Sections */
.section { padding: 108px 0; border-top: 1px solid var(--line); }
.section.alt { background: var(--bg-alt); }
.section.deep { background: var(--bg-deep); color: #f4f2ec; border-top-color: #2a2822; }
.section.deep .section-label { color: var(--accent-soft); }
.section.deep .ink-soft { color: #b6b2a7; }

.section-label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 20px; }

.section-heading { font-size: clamp(28px, 3.8vw, 42px); font-weight: 600; letter-spacing: -0.015em; margin: 0 0 18px; }
.section-sub { color: var(--ink-soft); font-size: 16.5px; max-width: 600px; margin: 0 0 48px; }

/* Page banner (internal pages) */
.page-banner {
  position: relative;
  padding: 64px 0 76px;
  overflow: hidden;
}
.page-banner-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.page-banner-grid.no-photo { grid-template-columns: 1fr; max-width: 640px; }
.page-banner h1 { font-size: clamp(34px, 4.6vw, 52px); margin: 0 0 18px; letter-spacing: -0.01em; }
.page-banner p { color: var(--ink-soft); font-size: 16.5px; max-width: 480px; margin: 0; }
.page-banner .photo-frame { aspect-ratio: 16/11; }

/* Services grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.feature { transition: transform .25s ease; }
.feature:hover { transform: translateY(-4px); }
.feature-index { display: block; font-size: 13px; color: var(--accent); margin-bottom: 20px; font-weight: 600; }
.feature h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 12px; }
.feature p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Process */
.process-list { display: flex; flex-direction: column; }
.process-row { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 32px 0; border-top: 1px solid var(--line); transition: padding-left .25s ease; }
.process-row:hover { padding-left: 8px; }
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-size: 13px; color: var(--accent); font-weight: 600; padding-top: 4px; }
.process-row h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.process-row p { color: var(--ink-soft); font-size: 15px; margin: 0; max-width: 480px; }

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.stat-item { background: var(--bg); padding: 32px 26px; }
.stat-item .stat-num { display: block; font-family: 'Fraunces', serif; font-size: 34px; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.stat-item .stat-label { font-size: 13px; color: var(--ink-soft); }
.section.deep .stat-item { background: #1c1b16; }

/* Testimonial / quote */
.quote-block { max-width: 720px; }
.quote-block blockquote { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.8vw, 30px); font-weight: 500; line-height: 1.4; margin: 0 0 24px; letter-spacing: -0.01em; }
.quote-attr { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.quote-attr strong { color: var(--ink); }
.section.deep .quote-attr strong { color: #f4f2ec; }

/* Case study */
.case-study { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.case-copy .case-kicker { font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; }
.case-copy h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 16px; }
.case-copy p { color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; }
.case-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.case-list li { font-size: 14px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.case-list li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.case-link { font-size: 14px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.case-link:hover { opacity: 0.7; }

.device-frame { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(23,23,26,0.25), 0 10px 24px -12px rgba(23,23,26,0.15); transition: transform .35s ease, box-shadow .35s ease; }
.case-visual:hover .device-frame { transform: translateY(-6px); box-shadow: 0 40px 70px -24px rgba(23,23,26,0.3), 0 16px 30px -14px rgba(23,23,26,0.18); }
.device-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-red { background: #e0645a; } .dot-amber { background: #e0b34f; } .dot-green { background: #6cbf78; }
.device-url { margin-left: 10px; font-size: 11px; color: var(--ink-soft); background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 3px 12px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.device-frame img { display: block; width: 100%; height: auto; }

.next-slot { display: flex; align-items: center; gap: 14px; border: 1px dashed var(--line); border-radius: 4px; padding: 22px 26px; flex-wrap: wrap; }
.next-slot-dot { width: 8px; height: 8px; border-radius: 50%; background: #6cbf78; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(108,191,120,0.15); }
.next-slot p { margin: 0; color: var(--ink-soft); font-size: 14px; flex: 1; }
.next-slot a { font-size: 14px; color: var(--ink); text-decoration: none; font-weight: 500; white-space: nowrap; }
.next-slot a:hover { opacity: 0.7; }

/* Style concepts */
.styles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.style-card { border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: var(--bg); transition: transform .3s ease, box-shadow .3s ease; }
.style-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(23,23,26,0.18); }
.style-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 18px 0 6px; }
.style-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.mock-frame { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); background: var(--sc-bg, #222); }
.mock-bar { display: flex; gap: 6px; padding: 8px 10px; background: rgba(0,0,0,0.15); }
.mock-body { padding: 16px 18px 22px; color: var(--sc-ink, #fff); }
.mock-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.mock-logo { width: 22px; height: 8px; border-radius: 2px; background: var(--sc-ink, #fff); opacity: .9; }
.mock-link { width: 26px; height: 6px; border-radius: 2px; background: var(--sc-muted, #999); opacity: .7; }
.mock-pill { margin-left: auto; width: 46px; height: 14px; border-radius: 20px; background: var(--sc-muted, #999); opacity: .5; }
.mock-pill.accent { background: var(--sc-accent, #c98a4b); opacity: 1; }
.mock-hero { display: flex; flex-direction: column; gap: 8px; }
.mock-hero-center { align-items: center; text-align: center; }
.mock-eyebrow { width: 70px; height: 6px; border-radius: 2px; background: var(--sc-accent, #c98a4b); margin-bottom: 6px; }
.mock-eyebrow.center { margin: 0 auto 6px; }
.mock-title-lg { width: 78%; height: 16px; border-radius: 3px; background: var(--sc-ink, #fff); opacity: .95; }
.mock-title-lg.short { width: 52%; } .mock-title-lg.center { width: 60%; margin: 0 auto; } .mock-title-lg.accent { background: var(--sc-accent); }
.mock-text { width: 85%; height: 8px; border-radius: 2px; background: var(--sc-muted, #999); opacity: .6; margin-top: 6px; }
.mock-text.center { width: 65%; margin: 6px auto 0; }
.mock-cta { margin-top: 14px; width: 90px; height: 24px; border-radius: 3px; background: var(--sc-accent, #c98a4b); }
.mock-cta.center { margin: 14px auto 0; }
.mock-stats { display: flex; gap: 10px; margin-top: 16px; }
.mock-stats span { flex: 1; height: 22px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.mock-grid-3 { display: flex; gap: 8px; margin-top: 14px; }
.mock-grid-3 span { flex: 1; height: 40px; border-radius: 3px; background: var(--sc-muted, #999); opacity: .3; }

/* Pricing */
.pricing-block { margin-bottom: 56px; }
.pricing-block:last-child { margin-bottom: 0; }
.pricing-kicker { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 20px; }
.pricing-kicker span { text-transform: none; letter-spacing: normal; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card { position: relative; border: 1px solid var(--line); border-radius: 8px; padding: 28px 24px; background: var(--bg); transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -22px rgba(23,23,26,0.18); }
.price-card-featured { border-color: var(--accent); box-shadow: 0 20px 40px -22px rgba(138,106,63,0.28); }
.price-badge { position: absolute; top: -12px; left: 24px; background: var(--accent); color: #fff; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin: 0; }
.price-card h3 { font-size: 16px; font-weight: 600; margin: 4px 0 10px; font-family: 'Fraunces', serif; }
.price-quote { font-size: 17px; font-weight: 500; color: var(--ink-soft); letter-spacing: -0.005em; margin: 0 0 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 13.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.price-card li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* SEO / insight cards */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insight-card { border: 1px solid var(--line); border-radius: 8px; padding: 30px 26px; background: var(--bg); transition: transform .25s ease, box-shadow .25s ease; }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -22px rgba(23,23,26,0.18); }
.insight-num { display: block; font-family: 'Fraunces', serif; font-size: 15px; color: var(--accent); margin-bottom: 16px; }
.insight-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 10px; }
.insight-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; color: var(--ink); font-family: inherit; font-size: 16.5px; font-weight: 500; text-align: left; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.faq-icon { font-family: 'Fraunces', serif; font-size: 20px; color: var(--accent); transition: transform .2s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .3s ease; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p { color: var(--ink-soft); font-size: 15px; margin: 0 0 26px; overflow: hidden; }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy p { color: var(--ink-soft); font-size: 16px; margin: 0 0 20px; }
.about-copy .lede { font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink); font-weight: 500; line-height: 1.5; margin: 0 0 24px; }
.value-list { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.value-item { display: flex; gap: 16px; }
.value-item .value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.value-item h4 { margin: 0 0 4px; font-size: 15.5px; font-weight: 600; }
.value-item p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* Quote / form */
.quote-heading { font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; }
.quote-sub { color: var(--ink-soft); font-size: 16px; margin: 0 0 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact-info p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 28px; }
.contact-detail { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-detail a { color: var(--ink); text-decoration: none; font-size: 15px; }
.contact-detail a:hover { color: var(--accent); }
.contact-detail .label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 4px; }

.lead-form[hidden] { display: none; }
.lead-form { display: flex; flex-direction: column; gap: 24px; }
.hidden-field { display: none; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.01em; }
.field .optional { color: #a19d92; }
.field input, .field select, .field textarea { font-family: inherit; font-size: 16px; padding: 13px 14px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); border-radius: 2px; transition: border-color 0.2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(138,106,63,0.14); }
.field textarea { resize: vertical; }
.form-success { padding: 48px 0; }
.form-success h3 { font-size: 24px; font-weight: 600; margin: 0 0 8px; }
.form-success p { color: var(--ink-soft); margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); color: #d8d5cb; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .logo { color: #f4f2ec; }
.footer-brand p { color: #9d9a8f; font-size: 14px; max-width: 260px; margin: 16px 0 0; }
.footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: #9d9a8f; margin: 0 0 18px; font-family: 'Inter'; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #d8d5cb; text-decoration: none; font-size: 14.5px; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid #2a2822; font-size: 13px; color: #838075; flex-wrap: wrap; gap: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .insight-grid { grid-template-columns: 1fr; }
  .case-study { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 100px 0 0; }
  .section { padding: 76px 0; }
  .page-banner-grid { grid-template-columns: 1fr; }
  .page-banner .photo-frame { order: -1; }
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 78px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 24px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; overflow-y: auto; }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav a.is-active::after { display: none; }
  .nav a.nav-cta { border: none; padding: 16px 0; text-align: left; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-bar { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 88px 0 0; }
  .hero-grid { gap: 36px; padding-bottom: 56px; }
  .page-banner { padding: 44px 0 48px; }
  .page-banner-grid { gap: 32px; }
  .about-split { gap: 36px; }
  .contact-grid { gap: 40px; }
  .case-study { gap: 24px; margin-bottom: 48px; }
  .grid-3 { gap: 32px; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .site-footer { padding: 48px 0 28px; }
  .hero-tag { flex-direction: column; align-items: flex-start; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .float, .marquee-track { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
