:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --surface: #111111;
  --surface-2: #181818;
  --line: rgba(220, 170, 86, 0.34);
  --line-strong: rgba(238, 193, 111, 0.7);
  --gold: #d8aa55;
  --gold-2: #f1d08a;
  --gold-dark: #8b6122;
  --text: #fff7e9;
  --muted: #b8b2a8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(216, 170, 85, 0.14), transparent 32rem),
    linear-gradient(180deg, #000 0%, var(--bg) 38%, #070707 100%);
  color: var(--text);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    Arial,
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
summary {
  outline-color: var(--gold-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand span {
  color: transparent;
  background: linear-gradient(135deg, #fff7e8 0%, var(--gold-2) 52%, var(--gold) 100%);
  background-clip: text;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  justify-self: center;
}

.site-nav a {
  position: relative;
  padding: 1.5rem 0;
  color: #f5efe4;
  font-size: 0.96rem;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-2);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.gold-btn,
.outline-btn,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta,
.gold-btn {
  border: 1px solid #ffe0a5;
  background: linear-gradient(180deg, #ffe3ac 0%, var(--gold) 58%, #af7629 100%);
  color: #1a1106;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.header-cta {
  justify-self: end;
  padding: 0 1.45rem;
}

.gold-btn {
  padding: 0.05rem 1.8rem;
}

.outline-btn,
.small-btn {
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 10, 0.72);
  color: var(--gold-2);
}

.outline-btn {
  padding: 0.05rem 1.65rem;
}

.small-btn {
  min-height: 34px;
  padding: 0.1rem 1rem;
  font-size: 0.9rem;
}

.header-cta:hover,
.gold-btn:hover,
.outline-btn:hover,
.small-btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.94);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-2);
}

#app {
  min-height: 60vh;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  min-height: clamp(620px, 78vh, 820px);
  padding: clamp(4rem, 7vw, 7.5rem) 4vw clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 36%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0.24) 100%),
    var(--hero-image) right center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(216, 170, 85, 0.08), transparent 30rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(5, 5, 5, 0.22) 78%, #050505 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(820px, 58vw);
  max-width: 820px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(135deg, #fff9ec 0%, #ffe6ad 42%, #c9913d 100%);
  background-clip: text;
  font-size: clamp(3.6rem, 8.5vw, 7.4rem);
  font-weight: 950;
  line-height: 0.98;
  text-shadow: 0 14px 52px rgba(0, 0, 0, 0.48);
}

.hero-subtitle {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: #f7efe2;
  font-size: clamp(1.25rem, 2.2vw, 2.05rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.7rem 0 0;
}

.hero-chips span,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.74);
  color: #f2dfbd;
}

.hero-chips span {
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-founder {
  background-position: center center;
}

.hero-brand {
  background-position: center center;
}

.page-wrap {
  width: min(var(--max), calc(100% - 8vw));
  margin: 0 auto;
}

.page-wrap > section,
.metric-strip {
  margin: clamp(2rem, 4.5vw, 4.5rem) 0;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}

.section-title span:last-of-type {
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.section-title h2 {
  margin: 0;
  color: #fff3da;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.section-title p {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(16, 16, 16, 0.92);
  box-shadow: var(--shadow);
}

.metric-strip article {
  min-height: 116px;
  padding: 1.35rem 1rem;
  text-align: center;
}

.metric-strip article + article {
  border-left: 1px solid rgba(216, 170, 85, 0.22);
}

.metric-strip strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 0.75rem;
  color: #f1eadf;
}

.metric-proof strong {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.feature-grid,
.image-card-grid,
.location-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature-card,
.image-card,
.featured-case,
.booking-section,
.booking-form,
.founder-band,
.intro-split,
.contact-layout,
.contact-strip article,
.location-grid article,
.map-card,
.cta-panel,
.promise-band,
.trust-section,
.quote-section,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(15, 15, 15, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.feature-card {
  display: flex;
  gap: 1rem;
  min-height: 154px;
  padding: 1.5rem;
}

.feature-icon {
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(216, 170, 85, 0.1);
  color: var(--gold-2);
  font-size: 1.15rem;
  font-weight: 900;
}

.feature-card h3,
.image-card h3,
.process h3,
.contact-strip strong,
.location-grid h3 {
  margin: 0 0 0.45rem;
  color: #ffe2a3;
  font-size: 1.3rem;
}

.feature-card p,
.image-card p,
.process p,
.founder-band p,
.intro-split p,
.trust-section li,
.faq-list p,
.contact-strip p,
.location-grid p,
.location-grid span,
.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.image-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid rgba(216, 170, 85, 0.28);
  transform: translateZ(0);
}

.image-card-body {
  padding: 1.1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.tag-row span {
  padding: 0.18rem 0.55rem;
  font-size: 0.82rem;
}

.image-card .small-btn {
  margin-top: 1rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.82);
}

.process article {
  position: relative;
  text-align: center;
}

.process article:not(:last-child)::after {
  position: absolute;
  top: 35px;
  right: -0.62rem;
  width: 1.15rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

.process-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}

.founder-band,
.intro-split,
.featured-case,
.contact-layout,
.cta-panel,
.trust-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 2rem);
}

.founder-band {
  grid-template-columns: 0.85fr 0.82fr 1fr;
}

.founder-band img,
.intro-split img,
.featured-case img,
.trust-section img,
.cta-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
}

.founder-band h2,
.booking-section h2,
.cta-panel h2,
.trust-section h2,
.featured-case h2,
.contact-layout h2,
.quote-section blockquote {
  margin: 0 0 0.75rem;
  color: #fff1d2;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.18;
}

.founder-band blockquote,
.quote-section blockquote {
  color: var(--gold-2);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.4;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.88);
}

.filter-bar button {
  min-height: 42px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #f1eadf;
  cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover {
  border-color: #ffe0a5;
  background: linear-gradient(180deg, #f3d18d, #c8913d);
  color: #1a1106;
  font-weight: 800;
}

.featured-case dl {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
}

.featured-case div div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.8rem;
}

.featured-case dt {
  color: var(--gold-2);
  font-weight: 900;
}

.featured-case dd {
  margin: 0;
  color: #f4eadc;
}

.promise-band {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
}

.promise-band strong {
  color: var(--gold-2);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.promise-band span {
  color: #f4eadc;
  text-align: center;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background:
    linear-gradient(90deg, rgba(216, 170, 85, 0.12), rgba(216, 170, 85, 0.03)),
    rgba(14, 14, 14, 0.94);
}

.booking-section p,
.contact-layout aside p {
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 0.85rem;
  align-items: end;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.28);
}

.booking-form-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
}

.booking-form span {
  color: #f6dfb1;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 0.75rem;
  border: 1px solid rgba(216, 170, 85, 0.28);
  border-radius: 6px;
  background: #151515;
  color: var(--text);
}

.booking-form option {
  background: #151515;
}

.booking-form .gold-btn {
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
}

.booking-form .gold-btn:disabled {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.72;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.form-note,
.submit-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.submit-message {
  color: var(--gold-2);
  font-weight: 800;
}

.submit-message-success {
  color: #f6d88f;
}

.submit-message-error {
  color: #ffb199;
}

.intro-split .section-title {
  grid-template-columns: 1fr auto 1fr;
  text-align: left;
}

.trust-section ul,
.contact-layout ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.trust-section li,
.contact-layout li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
}

.trust-section li::before,
.contact-layout li::before {
  position: absolute;
  left: 0;
  color: var(--gold-2);
  content: "✓";
}

.quote-section {
  padding: 2rem;
}

.quote-section blockquote {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-strip article {
  padding: 1.5rem;
}

.contact-strip span {
  display: block;
  margin: 0.25rem 0;
  color: var(--gold-2);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
}

.contact-layout {
  grid-template-columns: 0.38fr 1fr;
  align-items: start;
}

.location-grid {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
}

.map-card {
  position: relative;
  grid-row: span 2;
  min-height: 360px;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.86)),
    repeating-linear-gradient(45deg, rgba(216, 170, 85, 0.12) 0 1px, transparent 1px 32px),
    #151515;
}

.map-pin {
  width: 72px;
  height: 72px;
  margin-bottom: 4rem;
  border: 18px solid var(--gold-2);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-card-photo {
  padding: 0;
  background: #111;
}

.location-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
  opacity: 0.68;
}

.map-card-copy {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(216, 170, 85, 0.32);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9));
  backdrop-filter: blur(8px);
}

.location-grid article {
  min-height: 166px;
  padding: 1.4rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr 0.42fr;
  background:
    linear-gradient(90deg, rgba(216, 170, 85, 0.13), rgba(216, 170, 85, 0.02)),
    #111;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-panel img {
  height: 230px;
  opacity: 0.78;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  color: #ffe2a3;
  font-weight: 900;
}

.faq-list p {
  margin-top: 0.8rem;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #070707;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
  width: min(var(--max), calc(100% - 8vw));
  margin: 0 auto;
  padding: 3rem 0;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0 0 0.8rem;
  color: var(--gold-2);
}

.footer-brand h2 {
  color: #fff1d2;
  font-size: 2.2rem;
}

.footer-inner p,
.footer-inner a {
  display: block;
  margin: 0.4rem 0;
  color: var(--muted);
}

.footer-inner a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 8vw));
  margin: 0 auto;
  padding: 1rem 0;
  border-top: 1px solid rgba(216, 170, 85, 0.18);
  color: #8c867b;
  font-size: 0.9rem;
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero {
    min-height: clamp(560px, 72vh, 720px);
  }

  .hero-content {
    width: min(760px, 74vw);
  }

  .metric-strip,
  .feature-grid.six,
  .image-card-grid.five,
  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-section,
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    padding: 0 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-content {
    width: min(100%, 680px);
  }

  .feature-grid.three,
  .feature-grid.four,
  .image-card-grid.three,
  .image-card-grid.four,
  .metric-strip,
  .contact-strip,
  .location-grid,
  .faq-list,
  .footer-inner,
  .founder-band,
  .intro-split,
  .featured-case,
  .contact-layout,
  .cta-panel,
  .trust-section,
  .promise-band {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process article::after {
    display: none;
  }

  .metric-strip article + article {
    border-top: 1px solid rgba(216, 170, 85, 0.22);
    border-left: 0;
  }

  .promise-band span {
    text-align: left;
  }

  .booking-section,
  .booking-form,
  .booking-form-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 1rem;
  }

  .brand {
    font-size: 1.45rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 0.75rem;
    font-size: 0.9rem;
  }

  .site-header .header-cta {
    display: none;
  }

  .page-wrap {
    width: calc(100% - 2rem);
  }

  .hero {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .founder-band img,
  .intro-split img,
  .featured-case img,
  .trust-section img,
  .cta-panel img {
    height: 230px;
  }

  .image-card img {
    height: 190px;
  }

  .feature-card {
    flex-direction: column;
  }

  .process,
  .feature-grid.six,
  .image-card-grid.five {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.35rem;
  }
}
