:root {
  --navy: #0e2a47;
  --navy-deep: #111827;
  --gold: #c6a461;
  --ivory: #f7f6f2;
  --line: #d9d6cf;
  --text: #1c2430;
  --muted: #5f6875;
  --surface: #ffffff;
  --surface-alt: #f2efe8;
  --shadow: 0 18px 48px rgba(13, 29, 52, 0.08);
  --shadow-soft: 0 10px 24px rgba(17, 24, 39, 0.04);
  --radius: 24px;
  --container: 1180px;
  --heading-font: "Baskerville", "Times New Roman", "Noto Serif TC", "PMingLiU", serif;
  --body-font: "Aptos", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 164, 97, 0.07), transparent 18%),
    linear-gradient(180deg, #faf9f5 0%, #f5f2eb 100%);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(14, 42, 71, 0.014) 0,
      rgba(14, 42, 71, 0.014) 1px,
      transparent 1px,
      transparent 28px
    );
  opacity: 0.4;
  z-index: -1;
}

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

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

p,
h1,
h2,
h3,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(249, 248, 243, 0.88);
  border-bottom: 1px solid rgba(217, 214, 207, 0.72);
  box-shadow: var(--shadow-soft);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 320px;
}

.brand-kicker,
.footer-brand {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.brand-subtitle {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-kicker-legal {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.brand-subtitle-local {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  font-size: 0.97rem;
  color: var(--muted);
  transition: color 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 0.96rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #173b62;
}

.button-ghost,
.button-outline {
  background: transparent;
  color: var(--navy);
}

.button-ghost:hover,
.button-outline:hover {
  background: rgba(14, 42, 71, 0.06);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.hero-section,
.page-hero,
.page-hero-compact {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.page-hero::before,
.page-hero-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(198, 164, 97, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(14, 42, 71, 0.98), rgba(17, 24, 39, 0.94));
  z-index: -2;
}

.hero-section::after,
.page-hero::after,
.page-hero-compact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent 58%, rgba(255, 255, 255, 0.05) 58%, rgba(255, 255, 255, 0.05) 58.15%, transparent 58.15%, transparent 100%);
  z-index: -1;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  padding: 110px 0 96px;
  color: #fff;
}

.hero-grid-v2 {
  align-items: end;
}

.page-hero-grid {
  align-items: center;
}

.page-hero-compact .container {
  padding: 92px 0 72px;
  color: #fff;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 1.12;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.03em;
}

.page-hero h1,
.page-hero-compact h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

h3 {
  font-size: 1.35rem;
  color: var(--navy-deep);
}

.hero-text,
.page-lead {
  max-width: 58ch;
  font-size: 1.08rem;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.panel-card,
.info-card,
.process-card,
.quote-card,
.gallery-card,
.mentor-card,
.contact-card,
.service-row,
.cta-box,
.hero-proof-card,
.authority-band,
.credibility-item,
.executive-timeline,
.executive-pillars {
  background: linear-gradient(180deg, #ffffff, #faf7f0);
  border: 1px solid rgba(217, 214, 207, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-proof-card {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.page-hero .panel-card,
.page-hero-compact .panel-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.page-hero .panel-card .panel-label,
.page-hero-compact .panel-card .panel-label {
  color: var(--gold);
}

.page-hero .panel-card h3,
.page-hero-compact .panel-card h3 {
  color: #fff;
}

.page-hero .panel-card .check-list li,
.page-hero-compact .panel-card .check-list li {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof-head h2,
.hero-proof-head p,
.hero-proof-kicker,
.hero-proof-notes li,
.hero-proof-metrics span,
.hero-proof-metrics strong {
  color: #fff;
}

.hero-proof-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-proof-head h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.hero-proof-head p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-proof-metrics {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof-metrics div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-proof-metrics strong {
  font-family: var(--heading-font);
  font-size: 2rem;
}

.hero-proof-metrics span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-proof-notes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof-notes li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-proof-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 92px 0;
}

.section-tinted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(243, 239, 231, 0.78));
  border-top: 1px solid rgba(217, 214, 207, 0.68);
  border-bottom: 1px solid rgba(217, 214, 207, 0.68);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading p,
.split-copy p,
.info-card p,
.process-card p,
.feature-list p,
.mentor-card p,
.service-row p,
.contact-card p,
.quote-source,
.authority-grid p,
.credibility-item p,
.founder-summary,
.timeline-list p,
.pillar-grid p {
  color: var(--muted);
}

.section-heading h2 + p {
  margin-top: 16px;
  font-size: 1.04rem;
}

.authority-band {
  display: grid;
  gap: 34px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 235, 0.95));
}

.authority-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.authority-grid article {
  padding-top: 18px;
  border-top: 1px solid rgba(217, 214, 207, 0.9);
}

.authority-grid span,
.credibility-item span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--navy-deep);
}

.editorial-grid {
  display: grid;
  gap: 30px;
}

.editorial-cards,
.card-grid.three-up,
.mentor-grid,
.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.mentor-card,
.contact-card,
.process-card {
  padding: 28px;
}

.info-card h3,
.mentor-card h3,
.contact-card h2,
.feature-list h3,
.service-row h3,
.credibility-item h3 {
  margin-bottom: 12px;
}

.process-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card span,
.service-index,
.quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(198, 164, 97, 0.36);
  background: rgba(198, 164, 97, 0.12);
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.15rem;
}

.split-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.editorial-side-card,
.hero-side-card {
  position: relative;
  overflow: hidden;
}

.editorial-side-card::before,
.hero-side-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(198, 164, 97, 0.12));
}

.editorial-side-card,
.hero-side-card {
  padding: 30px 32px;
}

.editorial-side-card h3,
.hero-side-card h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.editorial-side-intro {
  margin-bottom: 22px;
  font-size: 0.98rem;
  color: var(--muted);
}

.direction-list,
.fit-list {
  display: grid;
  gap: 0;
}

.direction-list li,
.fit-list li {
  position: relative;
  padding: 18px 0 18px 42px;
  line-height: 1.55;
}

.direction-list li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(198, 164, 97, 0.48);
  background: rgba(198, 164, 97, 0.18);
  box-shadow: 0 0 0 5px rgba(198, 164, 97, 0.08);
}

.direction-list li + li,
.fit-list li + li {
  border-top: 1px solid rgba(217, 214, 207, 0.72);
}

.hero-side-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.09));
  backdrop-filter: blur(8px);
}

.hero-side-card .panel-label {
  margin-bottom: 14px;
}

.hero-side-card .fit-list li {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-side-card .fit-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-side-card .fit-list li::before {
  border-color: rgba(198, 164, 97, 0.62);
  background: rgba(198, 164, 97, 0.28);
  box-shadow: 0 0 0 5px rgba(198, 164, 97, 0.09);
}

.quote-card {
  padding: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.95));
}

.quote-mark {
  width: 58px;
  height: 58px;
  font-size: 1.7rem;
}

.quote-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  line-height: 1.36;
  color: var(--navy-deep);
}

.quote-source {
  margin-top: 22px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid,
.founder-visits-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img,
.credibility-feature img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.gallery-card figcaption,
.credibility-feature figcaption {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(217, 214, 207, 0.75);
}

.credibility-layout {
  display: grid;
  gap: 34px;
}

.credibility-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.credibility-feature {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 235, 0.95));
  border: 1px solid rgba(217, 214, 207, 0.9);
  box-shadow: var(--shadow);
}

.credibility-feature strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--navy-deep);
}

.credibility-list {
  display: grid;
  gap: 16px;
}

.credibility-item {
  padding: 24px;
}

.founder-profile-grid,
.founder-executive-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.founder-profile-main,
.executive-timeline,
.executive-pillars {
  padding: 30px;
}

.founder-role {
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder-summary {
  font-size: 1.02rem;
}

.leadership-name {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.leadership-section .section-heading {
  max-width: 760px;
}

.leadership-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr) minmax(0, 0.92fr);
}

.leadership-visual img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.leadership-pillars .pillar-grid article:last-child {
  background: linear-gradient(180deg, rgba(198, 164, 97, 0.1), rgba(198, 164, 97, 0.04));
  border-radius: 18px;
  padding: 18px;
  border-top: none;
}

.founder-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.founder-tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 164, 97, 0.28);
  background: rgba(198, 164, 97, 0.08);
  color: var(--navy);
  font-size: 0.92rem;
}

.timeline-list,
.pillar-grid {
  display: grid;
  gap: 16px;
}

.timeline-list article,
.pillar-grid article {
  padding-top: 16px;
  border-top: 1px solid rgba(217, 214, 207, 0.85);
}

.timeline-list span {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: var(--navy-deep);
}

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

.service-stack {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px 20px;
  align-items: start;
  padding: 28px;
}

.service-index {
  margin-bottom: 0;
}

.contact-link {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.1rem;
}

.contact-section {
  padding-top: 78px;
}

.contact-editorial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.contact-primary-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.95));
  border: 1px solid rgba(217, 214, 207, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-primary-card h2 {
  margin-bottom: 14px;
}

.contact-link-large {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 18px;
  word-break: break-word;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.qr-modal[hidden] {
  display: none;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 37, 0.62);
  backdrop-filter: blur(10px);
}

.qr-modal-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(217, 214, 207, 0.88);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.96));
  box-shadow: 0 28px 80px rgba(10, 24, 42, 0.24);
}

.qr-modal-dialog h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.qr-modal-copy {
  max-width: 34ch;
  color: var(--muted);
}

.qr-modal-frame {
  margin-top: 26px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(217, 214, 207, 0.82);
  display: flex;
  justify-content: center;
}

.qr-modal-frame img {
  display: block;
  width: min(100%, 360px);
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.qr-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 42, 71, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.qr-modal-close:hover {
  background: rgba(14, 42, 71, 0.06);
}

.contact-side-stack {
  display: grid;
  gap: 18px;
}

.cta-section {
  padding-top: 28px;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  background: linear-gradient(135deg, rgba(14, 42, 71, 0.98), rgba(17, 24, 39, 0.97));
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-box h2,
.cta-box .eyebrow {
  color: #fff;
}

.cta-box .eyebrow {
  opacity: 0.84;
}

.site-footer {
  padding: 34px 0 48px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(217, 214, 207, 0.8);
  padding-top: 22px;
}

.footer-row p:last-child,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(14, 42, 71, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .process-grid,
  .gallery-grid,
  .founder-visits-grid,
  .card-grid.three-up,
  .mentor-grid,
  .contact-grid,
  .contact-editorial-grid,
  .credibility-grid,
  .authority-grid,
  .founder-profile-grid,
  .founder-executive-grid,
  .pillar-grid,
  .editorial-cards {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  h1,
  .page-hero h1,
  .page-hero-compact h1 {
    max-width: 14ch;
  }
}

@media (max-width: 860px) {
  .brand-mark {
    min-width: 0;
    max-width: calc(100% - 64px);
  }

  .brand-kicker-legal {
    font-size: 0.94rem;
  }

  .brand-subtitle-local {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .header-row {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .desktop-cta {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 0 6px;
  }

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

  .hero-grid,
  .page-hero-grid {
    padding: 88px 0 72px;
  }

  .section,
  .cta-section {
    padding: 72px 0;
  }

  .page-hero-compact .container {
    padding: 80px 0 60px;
  }
}

@media (max-width: 560px) {
  .brand-kicker-legal {
    font-size: 0.86rem;
  }

  .brand-subtitle-local {
    font-size: 0.74rem;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .panel-card,
  .info-card,
  .process-card,
  .quote-card,
  .mentor-card,
  .contact-card,
  .service-row,
  .cta-box,
  .hero-proof-card,
  .authority-band,
  .credibility-item,
  .founder-profile-main,
  .executive-timeline,
  .executive-pillars {
    border-radius: 20px;
    padding: 22px;
  }

  .quote-text {
    font-size: 1.26rem;
  }

  .qr-modal-dialog {
    padding: 26px 20px 20px;
    border-radius: 24px;
    max-height: calc(100vh - 24px);
  }

  .qr-modal-frame {
    padding: 12px;
    border-radius: 18px;
  }

  .qr-modal-frame img {
    width: min(100%, 300px);
  }

  .hero-actions,
  .contact-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
