:root,
[data-theme="dark"] {
  --bg: #0b0b0b;
  --bg-elevated: #111111;
  --text: #f3f1ec;
  --text-muted: #a8a29a;
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.16);
  --border: rgba(196, 165, 116, 0.35);
  --line: rgba(255, 255, 255, 0.12);
  --btn-primary-bg: #c4a574;
  --btn-primary-text: #0b0b0b;
  --btn-outline-text: #f3f1ec;
  --header-bg: rgba(11, 11, 11, 0.88);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --header-h: 84px;
  --section-y: 72px;
  --section-head-mb: 32px;
  --block-pad-y: 24px;
  --fs-body: 14px;
  --lh-body: 1.65;
  --fs-label: 11px;
  --ls-label: 0.28em;
  --fs-card-title: 12px;
  --ls-card-title: 0.14em;
  --fs-title: clamp(24px, 2.8vw, 36px);
  --fs-title-sm: clamp(20px, 2.2vw, 28px);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f3f1ec;
  --bg-elevated: #ffffff;
  --text: #141414;
  --text-muted: #5c574f;
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.12);
  --border: rgba(196, 165, 116, 0.45);
  --line: rgba(20, 20, 20, 0.12);
  --btn-primary-bg: #141414;
  --btn-primary-text: #f3f1ec;
  --btn-outline-text: #141414;
  --header-bg: rgba(243, 241, 236, 0.9);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: blur(0);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark,
.cta-star,
.pillar-icon,
.approach-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  aspect-ratio: 1 / 1;
  color: var(--accent);
  flex-shrink: 0;
  flex-grow: 0;
  display: block;
  overflow: visible;
  object-fit: contain;
  box-sizing: content-box;
}























.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.logo-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
}

.logo-sub {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.header-actions .btn-sm,
.header-cta {
  color: var(--accent);
  border-color: var(--accent);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  display: none;
}

.nav-backdrop,
.mobile-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  flex-shrink: 0;
}

.theme-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.theme-toggle-sun,
.theme-toggle-moon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle-sun {
  box-shadow: 8px 0 0 -5px currentColor, -8px 0 0 -5px currentColor, 0 8px 0 -5px currentColor, 0 -8px 0 -5px currentColor;
}

.theme-toggle-moon {
  border-radius: 50%;
  box-shadow: inset -4px -1px 0 -1px currentColor;
  background: transparent;
  border-color: transparent;
}

[data-theme="dark"] .theme-toggle-moon,
[data-theme="light"] .theme-toggle-sun {
  opacity: 0;
  transform: scale(0.6);
}

[data-theme="dark"] .theme-toggle-sun,
[data-theme="light"] .theme-toggle-moon {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-outline {
  background: transparent;
  color: var(--btn-outline-text);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero — one grid: content | photo | pillars + stats */
.hero {
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-block {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(240px, 0.85fr) minmax(350px, 0.65fr);
  grid-template-areas:
    "content media pillars";
  column-gap: 24px;
  row-gap: 0;
  align-items: stretch;
  padding-bottom: 8px;
  min-height: 0;
  position: relative;
}

.hero-content {
  grid-area: content;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
  max-width: none;
  width: 100%;
  align-self: start;
  justify-content: flex-start;
  padding: 8px 0 0;
}

.hero-title {
  margin: 0;
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}

.hero-title .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-title .hero-sub {
  font-family: var(--font-serif);
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--text);
}

.hero-title .accent + .hero-sub {
  margin-top: 0.4em;
}

.hero-rule {
  width: 38%;
  max-width: 10rem;
  height: 1px;
  margin: 18px 0 0;
  background: var(--accent);
  opacity: 0.9;
}

.hero-lead {
  margin: 16px 0 0;
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: rgba(243, 241, 236, 0.88);
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 18px;
}

.hero-actions .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-media {
  grid-area: media;
  position: relative;
  z-index: 1;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 16%, transparent 62%, var(--bg) 100%);
}

.hero-media img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: radial-gradient(
    ellipse 68% 72% at 50% 42%,
    #000 28%,
    rgba(0, 0, 0, 0.85) 48%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 68% 72% at 50% 42%,
    #000 28%,
    rgba(0, 0, 0, 0.85) 48%,
    transparent 78%
  );
  filter: contrast(1.04) saturate(0.75) brightness(0.9);
}

.hero-pillars {
  grid-area: pillars;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-top: 0;
  border-right: 0;
  text-align: left;
}

.pillar {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0 12px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196, 165, 116, 0.28);
}

.pillar:first-child {
  padding-top: 0;
}

.pillar:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pillar-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  aspect-ratio: 1 / 1;
  color: var(--accent);
  margin-top: 1px;
}

.pillar-text {
  min-width: 0;
}

.pillar h3 {
  margin: 0 0 6px;
  font-size: var(--fs-card-title);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.pillar p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--text);
  opacity: 0.88;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 14px;
  padding: 0;
  text-align: center;
}

.hero-stats .stat {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.hero-stats .stat:first-child {
  padding-left: 0;
}

.hero-stats .stat:last-child {
  padding-right: 0;
}

.hero-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 48px;
  background: rgba(196, 165, 116, 0.35);
}

.hero-stats .stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent);
  line-height: 1;
}

.hero-stats .stat .stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-muted);
  text-align: center;
}

.hero-stats .stat .stat-line {
  display: block;
  margin-top: 0;
  white-space: nowrap;
}

/* Sections */
.section-head {
  margin-bottom: var(--section-head-mb);
}

.section-head-center {
  text-align: center;
}

.section-label {
  margin: 0 0 12px;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  color: var(--accent);
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--fs-title);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Approach */
.approach {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.approach .section-head {
  margin-bottom: var(--section-head-mb);
}

.approach-label {
  margin: 0 0 12px;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  color: var(--accent);
}

.approach .section-title {
  font-size: var(--fs-title-sm);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.approach-card {
  text-align: center;
  padding: var(--block-pad-y) 20px;
  border-right: 1px solid var(--line);
}

.approach-card:last-child {
  border-right: none;
}

.approach-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  aspect-ratio: 1 / 1;
  color: var(--accent);
  margin: 0 auto 16px;
  display: block;
}

.approach-card h3 {
  margin: 0 0 10px;
  font-size: var(--fs-card-title);
  font-weight: 500;
  letter-spacing: var(--ls-card-title);
  text-transform: uppercase;
  color: var(--text);
}

.approach-card p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-muted);
}

/* Formats */
.formats {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.formats-label {
  color: var(--text);
  letter-spacing: var(--ls-label);
}

.formats .section-head {
  margin-bottom: var(--section-head-mb);
}

.formats-layout {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px) 1fr;
  gap: 28px;
  align-items: center;
}

.format-block h3 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: var(--fs-title-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.format-block ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.format-block li {
  position: relative;
  padding-left: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-muted);
}

.format-block li::before {
  display: none;
}

.format-left {
  text-align: right;
}

.format-left .btn {
  margin-left: auto;
}

.format-copy {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.format-copy p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-muted);
}

.formats-media {
  justify-self: center;
  width: 100%;
  max-width: 280px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.formats-media img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
  background: transparent;
  filter: brightness(0.92) saturate(0.8) contrast(1.02);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    transparent 100%
  );
}

/* Shared photo integration */
.media-frame {
  isolation: isolate;
}

.media-glow {
  position: absolute;
  inset: 8% 4% 12%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 165, 116, 0.14) 0%,
    rgba(196, 165, 116, 0.04) 42%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-media img {
  z-index: 1;
}

.formats-media .media-glow {
  inset: 4% 0 8%;
}

/* Mission */
.mission {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  color: var(--text);
  background: var(--bg);
  border-block: 1px solid var(--line);
}

.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 48px;
  align-items: stretch;
}

.mission-copy {
  min-width: 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission .section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
}

.mission .section-title {
  margin: 0;
  max-width: 12em;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: var(--fs-title-sm);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.mission-text {
  margin: 20px 0 0;
  max-width: 34em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-muted);
}

.mission-quote {
  margin: 0;
  padding: var(--block-pad-y) 8px var(--block-pad-y) 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  justify-self: stretch;
}

.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 0.65;
  color: var(--accent);
  opacity: 0.9;
}

.quote-mark-open {
  margin: 0 0 14px;
}

.quote-mark-close {
  margin: 16px 0 0;
  align-self: flex-end;
  line-height: 0.4;
}

.mission-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* Reviews */
.reviews {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  margin: 0;
  padding: var(--block-pad-y) 24px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.review-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
}

.review-card figcaption {
  margin-top: 16px;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Final CTA */
.final-cta {
  padding: var(--section-y) 0;
  border-block: 1px solid rgba(196, 165, 116, 0.28);
  background: #0b0b0b;
  color: #f3f1ec;
  overflow: hidden;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.final-cta-copy {
  max-width: 38em;
  position: relative;
  z-index: 1;
}

.final-cta-lead {
  margin: 0 0 14px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(243, 241, 236, 0.62);
}

.final-cta-bridge {
  margin: 0 0 12px;
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--accent);
}

.final-cta .section-title {
  margin: 0;
  max-width: 18em;
  color: #f3f1ec;
  font-size: var(--fs-title-sm);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: none;
}

.final-cta-text {
  margin: 20px 0 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(243, 241, 236, 0.8);
}

.final-cta .hero-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.final-cta .hero-actions .btn {
  flex: 0 1 auto;
  white-space: nowrap;
}

.final-cta .btn-primary {
  background: #c4a574;
  color: #0b0b0b;
  border-color: #c4a574;
}

.final-cta .btn-outline {
  color: #c4a574;
  border-color: #c4a574;
}

.final-cta .btn-outline:hover {
  color: #0b0b0b;
  background: #c4a574;
}

.final-cta-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  color: #c4a574;
}

.final-cta-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0b0b0b;
  z-index: 1;
}

.final-cta-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: brightness(0.9) saturate(0.7);
  -webkit-mask-image:
    radial-gradient(ellipse 80% 85% at 65% 40%, #000 30%, transparent 72%),
    linear-gradient(to top, transparent 0%, #000 28%);
  mask-image:
    radial-gradient(ellipse 80% 85% at 65% 40%, #000 30%, transparent 72%),
    linear-gradient(to top, transparent 0%, #000 28%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.final-cta-visual .media-glow {
  inset: 5% 0 8% 15%;
  z-index: 0;
}

.final-cta-visual .cta-star {
  position: absolute;
  left: 8px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  opacity: 0.9;
  z-index: 2;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--block-pad-y) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.logo-footer .logo-title {
  font-size: 22px;
}

.logo-footer .logo-mark {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  aspect-ratio: 1 / 1;
}



/* Tablet / mobile header + side drawer */
@media (max-width: 1100px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .site-nav-desktop {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 400;
    background: var(--bg);
    border-bottom: 1px solid transparent;
  }

  body {
    padding-top: var(--header-h);
  }

  .site-header.is-scrolled,
  body.nav-open .site-header {
    background: var(--bg);
    backdrop-filter: none;
    border-bottom-color: var(--line);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 350;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    z-index: 360;
    width: min(300px, 82vw);
    margin: 0;
    padding: 12px 24px 32px;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav a:not(.nav-cta) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--text);
  }

  .mobile-nav a:not(.nav-cta):hover {
    color: var(--accent);
  }

  .mobile-nav .nav-cta {
    display: inline-flex;
    margin-top: 28px;
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    position: relative;
    z-index: 410;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .header-actions .btn-sm {
    display: none;
  }

  .hero-block {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "media media"
      "content content"
      "pillars pillars";
    min-height: 0;
    align-items: start;
    row-gap: 28px;
  }

  .hero-media {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: auto;
    min-height: 420px;
    pointer-events: auto;
    overflow: hidden;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-pillars {
    max-width: none;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    padding-right: 0;
    border-right: 0;
  }

  .hero-content {
    max-width: none;
    padding: 0;
  }

  .hero-title .hero-line,
  .hero-lead {
    white-space: normal;
  }

  .hero-rule {
    max-width: none;
    width: 42%;
  }

  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-card:nth-child(3) {
    border-right: none;
  }

  .approach-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    margin-top: 8px;
  }

  .formats-layout {
    grid-template-columns: 1fr 1fr;
  }

  .formats-media {
    grid-column: 1 / -1;
    order: -1;
    max-width: 360px;
  }

  .format-left,
  .format-right {
    text-align: left;
  }

  .format-left li {
    padding-left: 18px;
    padding-right: 0;
  }

  .format-left li::before {
    left: 0;
    right: auto;
  }

  .format-left .btn {
    margin-left: 0;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .mission-copy {
    padding-right: 0;
    border-right: none;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(196, 165, 116, 0.22);
  }

  .mission-quote {
    padding-left: 0;
    justify-self: stretch;
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --header-h: 60px;
    --section-y: 56px;
    --section-head-mb: 28px;
    --block-pad-y: 22px;
    --fs-title: clamp(22px, 6vw, 28px);
    --fs-title-sm: clamp(18px, 5vw, 24px);
  }

  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .logo {
    gap: 8px;
  }

  .logo .logo-mark {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .logo-title {
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .logo-sub {
    font-size: 7.5px;
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40vw;
  }

  .theme-toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: normal;
    line-height: 1.35;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content"
      "pillars";
    gap: 24px;
    min-height: 0;
    padding-bottom: 28px;
  }

  .hero-content {
    padding: 0;
    text-align: left;
    align-items: stretch;
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.32;
    letter-spacing: 0.02em;
    text-align: left;
    max-width: none;
  }

  .hero-title .hero-line,
  .hero-lead {
    white-space: normal;
  }

  .hero-title .accent {
    display: block;
    margin-top: 0.2em;
  }

  .hero-title .accent + .accent {
    margin-top: 0;
  }

  .hero-title .hero-sub {
    font-size: 0.78em;
    line-height: 1.4;
    letter-spacing: 0.03em;
    opacity: 1;
  }

  .hero-title .accent + .hero-sub {
    margin-top: 0.45em;
  }

  .hero-rule {
    margin: 18px 0 0;
    width: 42%;
    max-width: 10rem;
    opacity: 0.9;
  }

  .hero-lead {
    margin: 16px 0 0;
    max-width: none;
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.55;
    letter-spacing: 0.04em;
    text-align: left;
    color: var(--text);
  }

  .hero-lead br {
    display: none;
  }

  .hero-media {
    width: min(100%, 280px);
    max-width: 280px;
    margin: 0 auto;
    height: auto;
    min-height: 320px;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin-top: 24px;
    margin-inline: 0;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 16px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    width: 100%;
    max-width: none;
    margin-top: 28px;
    margin-inline: 0;
    border: 1px solid rgba(196, 165, 116, 0.28);
    background: rgba(196, 165, 116, 0.28);
  }

  .hero-stats .stat {
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: auto;
    min-height: 96px;
    padding: 16px 10px;
    text-align: center;
    border: 0;
    background: var(--bg);
  }

  .hero-stats .stat:nth-child(2n),
  .hero-stats .stat:nth-child(n + 3),
  .hero-stats .stat:first-child,
  .hero-stats .stat:last-child {
    border: 0;
    padding: 16px 10px;
  }

  .hero-stats .stat strong {
    flex: none;
    width: auto;
    font-size: 26px;
    line-height: 1;
    text-align: center;
  }

  .hero-stats .stat .stat-label {
    flex: none;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-align: center;
    color: var(--text-muted);
  }

  .hero-stats .stat .stat-line {
    display: block;
    white-space: normal;
  }

  .hero-stats .stat .stat-line + .stat-line::before {
    content: none;
  }

  .hero-stats .stat:not(:last-child)::after {
    display: none;
  }

  .hero-pillars {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    max-width: none;
    width: 100%;
    padding: 0;
    border-right: 0;
    gap: 0;
  }

  .pillar {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 14px;
    padding: var(--block-pad-y) 0;
    text-align: left;
  }

  .pillar-text {
    max-width: none;
    width: 100%;
  }

  .pillar h3 {
    font-size: var(--fs-card-title);
  }

  .pillar p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }

  .section-head {
    margin-bottom: var(--section-head-mb);
  }

  .section-label {
    font-size: var(--fs-label);
    letter-spacing: var(--ls-label);
  }

  .section-title {
    font-size: var(--fs-title);
    line-height: 1.3;
  }

  .approach,
  .formats,
  .mission,
  .reviews,
  .final-cta {
    padding: var(--section-y) 0;
  }

  .approach .section-title {
    font-size: var(--fs-title-sm);
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }

  .approach-card {
    text-align: left;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: var(--block-pad-y) 0;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }

  .approach-card:last-child {
    border-bottom: none;
  }

  .approach-card:nth-child(n + 4) {
    border-top: none;
    margin-top: 0;
    padding-top: var(--block-pad-y);
  }

  .approach-icon {
    margin: 2px 0 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    grid-row: 1 / span 2;
  }

  .approach-card h3 {
    margin: 0 0 8px;
    font-size: var(--fs-card-title);
  }

  .approach-card p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    grid-column: 2;
  }

  .formats-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .formats-media {
    order: -1;
    max-width: min(260px, 72vw);
    margin-inline: auto;
  }

  .format-block h3 {
    font-size: var(--fs-title-sm);
  }

  .format-block li,
  .format-copy p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }

  .format-left,
  .format-right {
    text-align: center;
  }

  .format-left ul,
  .format-copy {
    text-align: left;
  }

  .format-left .btn,
  .format-right .btn {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
    display: inline-flex;
    justify-content: center;
  }

  .format-left .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    text-align: left;
  }

  .mission-copy {
    padding-right: 0;
    padding-bottom: var(--block-pad-y);
    border-right: none;
    border-bottom: 1px solid rgba(196, 165, 116, 0.22);
  }

  .mission .section-title {
    max-width: none;
    font-size: var(--fs-title-sm);
  }

  .mission-text {
    margin-inline: 0;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }

  .mission-quote {
    justify-self: stretch;
    max-width: none;
    padding: var(--block-pad-y) 0 0;
  }

  .mission-quote p {
    max-width: none;
    font-size: 16px;
    line-height: 1.55;
  }

  .quote-mark {
    font-size: 40px;
  }

  .quote-mark-close {
    align-self: flex-end;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: var(--block-pad-y) 20px;
  }

  .review-card blockquote {
    font-size: 17px;
    line-height: 1.45;
  }

  .final-cta-lead,
  .final-cta-text {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }

  .final-cta .section-title {
    max-width: none;
    font-size: var(--fs-title-sm);
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .final-cta-visual {
    order: -1;
    justify-self: center;
    max-width: min(280px, 78vw);
    width: 100%;
  }

  .final-cta-photo {
    aspect-ratio: 4 / 5;
  }

  .final-cta-visual .cta-star {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  .final-cta .hero-actions {
    flex-direction: column;
    align-items: center;
    max-width: 360px;
    margin-inline: auto;
    gap: 10px;
  }

  .final-cta .hero-actions .btn {
    width: 100%;
    flex: none;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .mobile-nav {
    width: min(280px, 84vw);
    padding: 8px 22px 28px;
  }
}

@media (max-width: 400px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-title {
    font-size: 18px;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-stats .stat {
    min-height: 88px;
    padding: 14px 8px;
  }

  .hero-stats .stat strong {
    font-size: 24px;
  }

  .approach-card {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
