:root {
  --navy-950: #040b14;
  --navy-900: #06111f;
  --navy-800: #0a1c30;
  --navy-700: #102b47;
  --blue-500: #1597ff;
  --blue-400: #37adff;
  --blue-200: #a8dcff;
  --ink: #0b1828;
  --slate: #526174;
  --cloud: #f3f7fa;
  --white: #ffffff;
  --line: #d9e2e9;
  --max: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }
#top { scroll-margin-top: 0; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 4px;
}
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px;
  color: var(--navy-950); background: var(--white); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(4, 11, 20, .88);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 215px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 34px; color: #dce8f2; font-size: .9rem; }
.site-nav > a:not(.button) { position: relative; transition: color .2s; }
.site-nav > a:not(.button)::after {
  position: absolute; content: ""; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: var(--blue-400); transition: right .25s var(--ease);
}
.site-nav > a:not(.button):hover { color: var(--white); }
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 1px; margin: 7px 0; background: white; transition: .3s; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 54px; padding: 0 24px; color: var(--white); background: var(--blue-500);
  border: 1px solid var(--blue-500); font-size: .88rem; font-weight: 700; letter-spacing: .01em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.button:hover { background: var(--white); border-color: var(--white); color: var(--navy-900); transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.button-small { min-height: 44px; padding: 0 18px; }

.hero {
  position: relative; min-height: 820px; height: 100svh; overflow: hidden;
  color: var(--white); background:
    radial-gradient(circle at 78% 38%, rgba(21,151,255,.18), transparent 24%),
    radial-gradient(circle at 52% 105%, rgba(21,151,255,.12), transparent 36%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.hero-grid, .statement-grid {
  position: absolute; inset: 0; opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-grid { transform: perspective(600px) rotateX(58deg) scale(1.7) translateY(32%); transform-origin: bottom; }
.hero-layout {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 70px; align-items: center; min-height: 100%; padding-top: 94px;
}
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 24px;
  color: var(--blue-200); text-transform: uppercase; letter-spacing: .2em; font-size: .71rem; font-weight: 700;
}
.eyebrow span { width: 32px; height: 1px; background: var(--blue-400); }
.eyebrow.dark { color: #247db7; }
.hero h1, .section h2, .statement p, .contact h2 {
  margin: 0; font-family: "Roboto Condensed", "Arial Narrow", "Segoe UI Condensed", "Segoe UI", sans-serif;
  font-weight: 700; letter-spacing: -.055em; line-height: .94;
}
.hero h1 { max-width: 690px; font-size: clamp(4.6rem, 7.1vw, 7rem); }
.hero h1 em, .statement em { color: var(--blue-400); font-style: normal; }
.hero-lede { max-width: 585px; margin: 30px 0 36px; color: #b9c8d5; font-size: 1.14rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: #e6f1f8; font-size: .9rem; font-weight: 650; }
.text-link span { color: var(--blue-400); transition: transform .2s; }
.text-link:hover span { transform: translateY(3px); }
.hero-meta {
  display: flex; gap: 38px; margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-meta div { display: grid; }
.hero-meta strong { color: white; font-size: .82rem; letter-spacing: .02em; }
.hero-meta span { color: #7f94a6; font-size: .72rem; }
.hero-visual { min-width: 0; }
.visual-frame {
  position: relative; min-height: 570px; border: 1px solid rgba(135,199,244,.24);
  background:
    linear-gradient(180deg, rgba(4,11,20,.18), rgba(4,11,20,.08) 48%, rgba(4,11,20,.84)),
    url("assets/portfolio-real-estate.jpg") center / cover no-repeat;
  box-shadow: 0 45px 100px rgba(0,0,0,.35), inset 0 0 80px rgba(21,151,255,.08);
}
.visual-frame::before, .visual-frame::after {
  content: ""; position: absolute; background: rgba(55,173,255,.16);
}
.visual-frame::before { top: 50%; left: -70px; right: -70px; height: 1px; }
.visual-frame::after { left: 50%; top: -70px; bottom: -70px; width: 1px; }
.visual-topline {
  position: absolute; z-index: 2; inset: 18px 20px auto; display: flex; justify-content: space-between;
  color: #eef7fc; text-transform: uppercase; font-size: .57rem; letter-spacing: .16em;
  text-shadow: 0 1px 10px rgba(0,0,0,.85);
}
.live-dot::before {
  content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 8px 1px 0;
  border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 8px var(--blue-400);
}
.visual-mark { position: absolute; z-index: 1; inset: 6% 12% 11%; display: grid; place-items: center; }
.visual-mark::after {
  content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(55,173,255,.22); box-shadow: 0 0 60px rgba(21,151,255,.15);
}
.visual-mark img { position: relative; z-index: 2; max-height: 475px; filter: drop-shadow(0 20px 35px rgba(0,0,0,.45)); }
.visual-corners {
  position: absolute; inset: 56px; border: solid var(--blue-400); border-width: 1px 0 0 1px;
  width: 35px; height: 35px; opacity: .55;
}
.visual-corners::after {
  content: ""; position: absolute; left: calc(100vw / 3 - 97px); top: 420px;
  width: 35px; height: 35px; border: solid var(--blue-400); border-width: 0 1px 1px 0;
}
.visual-caption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 18px; display: flex; justify-content: space-between; align-items: end; }
.visual-caption > span { color: var(--blue-400); font-size: .65rem; }
.visual-caption p { margin: 0; text-align: right; color: #8197a8; text-transform: uppercase; font-size: .58rem; letter-spacing: .12em; line-height: 1.55; }
.hero-orbit { position: absolute; border: 1px solid rgba(55,173,255,.08); border-radius: 50%; }
.orbit-one { width: 800px; height: 800px; top: -320px; right: -350px; }
.orbit-two { width: 560px; height: 560px; left: -390px; bottom: -270px; }
.hero-scroll { position: absolute; z-index: 3; right: 36px; bottom: 0; width: 1px; height: 90px; background: rgba(255,255,255,.15); }
.hero-scroll span { display: block; width: 1px; height: 28px; background: var(--blue-400); animation: scan 2.5s ease-in-out infinite; }
@keyframes scan { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(62px); opacity: 0; } }

.audience-strip { background: var(--navy-950); color: white; border-top: 1px solid rgba(255,255,255,.08); }
.strip-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.strip-inner > p { margin: 0; color: #6f8394; text-transform: uppercase; font-size: .64rem; letter-spacing: .18em; }
.strip-inner > div { display: flex; align-items: center; gap: 44px; color: #b7c6d2; font-size: .82rem; }
.strip-inner span + span::before { content: ""; display: inline-block; width: 4px; height: 4px; margin: 0 44px 2px 0; border-radius: 50%; background: var(--blue-500); }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 80px; margin-bottom: 70px; }
.section h2, .contact h2 { font-size: clamp(3.2rem, 5.4vw, 5.5rem); }
.section-heading > p { margin: 0 0 6px; color: var(--slate); line-height: 1.75; }

.work { background: var(--white); }
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.work-card {
  position: relative; grid-column: span 2; overflow: hidden; min-width: 0; color: white; background: var(--navy-900);
  box-shadow: 0 24px 60px rgba(9, 28, 47, .13);
}
.work-card:nth-child(n + 4) { grid-column: span 3; }
.work-card > img { display: block; width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: cover; transition: transform .55s var(--ease); }
.work-card:hover > img { transform: scale(1.025); }
.work-card-copy { min-height: 265px; padding: 30px; display: flex; flex-direction: column; }
.work-card-copy > div { display: flex; align-items: baseline; gap: 13px; }
.work-card-copy > div > span { color: var(--blue-400); font-size: .62rem; letter-spacing: .16em; }
.work-card h3 { margin: 0; font-size: 1.35rem; }
.work-card p { margin: 18px 0 26px; color: #aebfcd; font-size: .88rem; line-height: 1.7; }
.work-card a {
  display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.13); color: white; font-size: .8rem; font-weight: 700;
}
.work-card a span { color: var(--blue-400); transition: transform .2s; }
.work-card a:hover span { transform: translateX(5px); }
.portfolio-note { max-width: 860px; margin: 28px 0 0; color: #6d7c89; font-size: .72rem; line-height: 1.65; }

.services { background: var(--cloud); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cad7e0; border-left: 1px solid #cad7e0; }
.service-card {
  position: relative; display: flex; flex-direction: column; min-height: 390px; padding: 42px; border-right: 1px solid #cad7e0; border-bottom: 1px solid #cad7e0;
  background: rgba(255,255,255,.35); overflow: hidden; transition: background .3s, transform .3s;
}
.service-card:hover { background: white; }
.service-featured { color: white; background: var(--navy-800); }
.service-featured:hover { background: var(--navy-700); }
.service-number { color: #7b8a97; font-size: .65rem; letter-spacing: .14em; }
.service-icon { width: 58px; height: 58px; margin: 46px 0 26px; color: var(--blue-500); }
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linejoin: round; stroke-linecap: round; }
.service-card h3 { margin: 0 0 13px; font-size: 1.35rem; }
.service-card > p:not(.service-price) { max-width: 450px; margin: 0; color: #607083; line-height: 1.7; }
.service-featured > p:not(.service-price) { color: #aebfcd; }
.service-card > a, .service-price { position: static; margin: auto 0 0; padding-top: 32px; font-size: .82rem; font-weight: 700; }
.service-card > a { color: #166ca5; }
.service-featured > a { color: var(--blue-200); }
.service-card > a span { margin-left: 8px; color: var(--blue-400); }
.service-price { color: #3977a2; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.service-events { grid-column: 1 / -1; min-height: 320px; }
.service-events .service-icon { margin: 30px 0 22px; }

.packages { color: white; background: var(--navy-900); }
.packages-intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px 80px; align-items: end; margin-bottom: 65px; }
.packages-intro .eyebrow { grid-column: 1/-1; margin-bottom: 0; }
.packages-intro > p:last-child { max-width: 500px; margin: 0 0 7px; color: #9eb0be; line-height: 1.7; }
.package-list { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.13); }
.package-card {
  position: relative; display: flex; flex-direction: column; min-height: 570px; padding: 38px;
  border-right: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.015);
}
.package-card:last-child { border-right: 0; }
.package-card.recommended { background: linear-gradient(180deg, rgba(21,151,255,.14), rgba(21,151,255,.03)); }
.recommend-label {
  position: absolute; top: -30px; left: -1px; right: -1px; height: 30px; margin: 0;
  display: grid; place-items: center; color: #d7efff; background: #167bc0;
  text-transform: uppercase; font-size: .58rem; letter-spacing: .18em; font-weight: 800;
}
.package-top { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); }
.package-top > div > span { color: var(--blue-400); font-size: .62rem; }
.package-top h3 { margin: 10px 0 0; font-size: 1.25rem; }
.price { margin: 20px 0; font-size: 2.6rem; font-weight: 300; letter-spacing: -.04em; }
.price span { font-size: 1.2rem; color: var(--blue-400); }
.package-summary { min-height: 78px; margin: 25px 0 16px; color: #aabac7; font-size: .9rem; }
.package-card ul { padding: 0; margin: 0; list-style: none; }
.package-card li { position: relative; padding: 10px 0 10px 22px; color: #d0dce5; font-size: .81rem; }
.package-card li::before { content: ""; position: absolute; left: 0; top: 18px; width: 6px; height: 6px; border: 1px solid var(--blue-400); transform: rotate(45deg); }
.package-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: white; font-size: .82rem; font-weight: 700; }
.package-card > a span { color: var(--blue-400); transition: transform .2s; }
.package-card > a:hover span { transform: translateX(5px); }
.package-note { max-width: 720px; margin: 36px 0 0; color: #788d9e; font-size: .75rem; }

.process { padding-bottom: 36px; background: white; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li {
  display: grid; grid-template-columns: 100px 1fr; gap: 30px; align-items: start;
  padding: 34px 0; border-bottom: 1px solid var(--line);
}
.process-list > li > span { color: var(--blue-500); font-size: .65rem; letter-spacing: .15em; padding-top: 8px; }
.process-list div { display: grid; grid-template-columns: 330px 1fr; gap: 60px; }
.process-list h3 { margin: 0; font-size: 1.18rem; }
.process-list p { max-width: 530px; margin: 0; color: var(--slate); }

.statement {
  position: relative; overflow: hidden; padding: 110px 0; color: white;
  background: radial-gradient(circle at 85% 120%, rgba(21,151,255,.28), transparent 32%), var(--navy-800);
}
.statement-grid { opacity: .09; mask-image: linear-gradient(to left, black, transparent); }
.statement .container { position: relative; text-align: center; }
.statement p { font-size: clamp(3.1rem, 5.5vw, 5.4rem); line-height: .98; }
.statement span { display: block; margin-top: 30px; color: #89a0b2; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

.faq { background: var(--cloud); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro > p:not(.eyebrow) { max-width: 360px; margin: 28px 0; color: var(--slate); }
.dark-link { color: var(--ink); }
.accordion { border-top: 1px solid #cbd7df; }
.accordion details { border-bottom: 1px solid #cbd7df; }
.accordion summary {
  position: relative; display: flex; justify-content: space-between; align-items: center;
  padding: 27px 45px 27px 0; cursor: pointer; list-style: none; font-weight: 700;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 17px; height: 1px; background: var(--blue-500); transition: transform .2s;
}
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 650px; margin: -7px 0 27px; color: var(--slate); font-size: .91rem; line-height: 1.75; }

.contact { padding: 130px 0; color: white; background: var(--navy-950); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.contact-copy > p:not(.eyebrow) { max-width: 440px; margin: 28px 0 50px; color: #9baebb; }
.direct-contact { display: grid; border-top: 1px solid rgba(255,255,255,.13); }
.direct-contact a { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: .83rem; }
.direct-contact span { color: #718797; text-transform: uppercase; font-size: .61rem; letter-spacing: .14em; }
.quote-form { padding: 42px; background: var(--white); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 21px; color: #405266; font-size: .7rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid #c8d4dc; border-radius: 0; padding: 11px 2px;
  color: var(--ink); background: transparent; outline: none; text-transform: none; letter-spacing: normal;
}
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 1px 0 var(--blue-500); }
.quote-form :where(input, select, textarea):focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-color: transparent;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #95a2ad; }
.form-submit { width: 100%; margin-top: 8px; }
.form-submit:hover { color: white; background: var(--navy-800); border-color: var(--navy-800); }
.form-note, .form-status { margin: 14px 0 0; color: #778594; font-size: .68rem; text-align: center; }
.form-status { color: #166ca5; font-weight: 700; }
.form-fallback { margin-top: 18px; padding-top: 18px; border-top: 1px solid #e0e7ec; }
.form-fallback > p { margin: 0 0 14px; color: #526174; font-size: .8rem; text-align: center; }
.fallback-copy {
  display: block; width: 100%; margin: 0 0 14px; padding: 12px; resize: vertical;
  color: var(--ink); background: var(--cloud); border: 1px solid var(--line); font-size: .75rem; line-height: 1.5;
}
.fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.fallback-actions .button { flex: 1 1 auto; }

.site-footer { color: #90a3b2; background: #02070d; }
.footer-main { min-height: 250px; display: grid; grid-template-columns: 1fr 1.2fr .8fr; align-items: center; gap: 70px; }
.footer-brand { display: inline-block; width: min(220px, 100%); }
.footer-brand img { display: block; width: 100%; height: auto; }
.footer-main > p { font-size: .8rem; line-height: 1.8; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; color: #ccd8e1; font-size: .78rem; }
.footer-links a:hover, .footer-bottom a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }

.example-body { background: var(--cloud); }
.example-header { color: white; background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.12); }
.example-header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.example-header .brand { display: inline-block; }
.example-header a:not(.brand) { color: #c8d9e5; font-size: .8rem; font-weight: 700; }
.example-header a:not(.brand):hover { color: white; }
.example-main { padding: clamp(56px, 8vw, 110px) 0 96px; }
.example-intro { max-width: 880px; margin-bottom: 42px; }
.example-intro h1 { margin: 12px 0 18px; font-size: clamp(2.8rem, 7vw, 5.8rem); line-height: .95; letter-spacing: -.035em; }
.example-intro > p:last-child { max-width: 720px; color: #5c6e7e; font-size: 1.05rem; line-height: 1.75; }
.example-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.example-figure { margin: 0; background: white; box-shadow: 0 24px 60px rgba(7,22,35,.1); }
.example-figure img { display: block; width: 100%; height: auto; }
.example-figure figcaption { padding: 20px 24px 24px; color: #637484; font-size: .74rem; line-height: 1.65; }
.example-details { padding: 30px; background: white; border-top: 4px solid var(--blue-500); }
.example-details h2 { margin: 0 0 16px; font-size: 1.5rem; }
.example-details p { margin: 0 0 18px; color: #536678; line-height: 1.7; }
.example-details .example-price { color: #166ca5; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.example-actions { display: grid; gap: 12px; margin-top: 28px; }
.example-actions .button { width: 100%; }
.example-actions .button-primary:hover { color: white; background: var(--navy-900); border-color: var(--navy-900); }
.example-actions .button-secondary { color: #166ca5; background: transparent; border-color: #8fc2e5; }
.example-actions .button-secondary:hover { color: white; background: #166ca5; border-color: #166ca5; }
.example-back { color: #166ca5; font-size: .78rem; font-weight: 700; text-align: center; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { height: auto; min-height: 950px; }
  .hero-layout { grid-template-columns: 1fr; padding: 170px 0 100px; }
  .hero-visual { display: none; }
  .hero-copy { max-width: 760px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card, .work-card:nth-child(n + 4) { grid-column: auto; }
  .work-card:last-child { grid-column: 1 / -1; }
  .section-heading, .packages-intro, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .packages-intro .eyebrow { grid-column: auto; }
  .package-list { grid-template-columns: 1fr; }
  .package-card { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .package-card:last-child { border-bottom: 0; }
  .recommended { margin-top: 30px; }
  .package-summary { min-height: 0; }
  .package-card > a { margin-top: 35px; }
  .faq-intro { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .nav-wrap { height: 74px; }
  .brand img { width: 185px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 74px 0 auto; display: grid; gap: 0; padding: 20px 17px 27px;
    background: rgba(4,11,20,.98); border-bottom: 1px solid rgba(255,255,255,.12);
    transform: translateY(-130%); visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), visibility 0s linear .3s;
  }
  .site-nav.open { transform: none; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .site-nav > a:not(.button) { padding: 14px 7px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav .button { margin-top: 18px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: 850px; }
  .hero-layout { padding-top: 130px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.2rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .text-link { justify-content: center; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 45px; }
  .hero-meta div:last-child { grid-column: 1/-1; }
  .strip-inner { padding: 25px 0; align-items: start; }
  .strip-inner > div { display: grid; gap: 7px; text-align: right; }
  .strip-inner span + span::before { display: none; }
  .section, .contact { padding: 78px 0; }
  .section-heading { margin-bottom: 45px; }
  .section h2, .contact h2 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:last-child { grid-column: auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-events { grid-column: auto; }
  .service-card { min-height: 390px; padding: 32px; }
  .packages-intro { margin-bottom: 45px; }
  .package-card { padding: 30px; }
  .process-list li { grid-template-columns: 45px 1fr; gap: 15px; }
  .process-list div { grid-template-columns: 1fr; gap: 10px; }
  .statement { padding: 76px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 28px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 65px 0; }
  .footer-bottom { gap: 16px; align-items: flex-start; }
  .footer-bottom, .footer-bottom div { flex-direction: column; }
  .example-header-inner { min-height: 80px; }
  .example-grid { grid-template-columns: 1fr; }
  .example-details { padding: 26px 22px; }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
