/* ================================================================
   Resonant — Shared Stylesheet
   Aesthetic: Refined luxury minimalism
   Palette: White · Ivory · Beige · Champagne Gold
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --white:        #ffffff;
  --ivory:        #f9f6f1;
  --ivory-2:      #f4ede3;
  --beige:        #ede3d6;
  --warm-gray:    #d6cfc6;

  /* Corporate color — Bordeaux */
  --bordeaux:       #7a1f35;
  --bordeaux-deep:  #5c1626;
  --bordeaux-light: #f5eaed;
  --bordeaux-mid:   rgba(122,31,53,.12);

  /* Secondary accent — Champagne Gold */
  --gold:         #b89a60;
  --gold-light:   #dcc99a;
  --gold-pale:    #f0e7d4;

  --text-dark:    #2a2218;
  --text-body:    #4a3f35;
  --text-muted:   #7e7268;
  --text-light:   #a89e96;
  --border:       #e0d8ce;
  --border-light: #ede8e2;

  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-serif:   'Noto Serif JP', serif;
  --font-sans:    'Noto Sans JP', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 6px rgba(42,34,24,.06);
  --shadow-md:  0 4px 20px rgba(42,34,24,.08);
  --shadow-lg:  0 12px 48px rgba(42,34,24,.10);

  --transition: .35s cubic-bezier(.25,.46,.45,.94);
  --container:  1160px;
  --gutter:     clamp(20px, 5vw, 80px);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout Utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section--ivory  { background: var(--ivory); }
.section--beige  { background: var(--ivory-2); }
.section--gold-pale { background: var(--gold-pale); }

/* ── Typography ─────────────────────────────────────────────────── */
.label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bordeaux);
  display: block;
  margin-bottom: 16px;
}

.h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.h3 {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.lead {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
  color: var(--text-body);
  font-weight: 300;
}

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

/* Gold divider */
.divider-gold {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.divider-gold--center { margin: 20px auto; }

/* ── Header / Navigation ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo__img {
  height: 38px;
  width: auto;
  display: block;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .15em;
  color: var(--text-dark);
}

.site-logo span {
  color: var(--bordeaux);
}

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

.site-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--text-body);
  transition: color var(--transition);
  white-space: nowrap;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--bordeaux);
  border-radius: var(--radius-sm);
  font-size: 11px !important;
  letter-spacing: .12em;
  color: var(--bordeaux) !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover {
  background: var(--bordeaux) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 30px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--text-dark);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 998;
  padding: 40px var(--gutter);
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

/* ── Hero / Page Header ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(249,246,241,.88) 0%, rgba(249,246,241,.55) 55%, rgba(249,246,241,.20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter);
  width: 100%;
}

.hero-content--narrow {
  max-width: 560px;
}

/* Page Hero (smaller) */
.page-hero {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,34,24,.55) 0%, rgba(42,34,24,.15) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--gutter);
  width: 100%;
}

.page-hero-content .label { color: rgba(255,255,255,.7); }
.page-hero-content .h1   { color: var(--white); }

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--warm-gray);
}

.breadcrumb-list a:hover { color: var(--bordeaux); }
.breadcrumb-list [aria-current] { color: var(--text-body); }

/* ── Section Headers ────────────────────────────────────────────── */
.section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--center { text-align: center; }

/* ── Two-Column Layout ──────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.two-col--reverse .two-col__img { order: 2; }
.two-col--reverse .two-col__text { order: 1; }

.two-col__img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}

.two-col__img:hover img { transform: scale(1.03); }

/* ── Card Grid ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .6s ease;
}

.card:hover .card__img img { transform: scale(1.05); }

.card__body {
  padding: 28px;
}

.card__label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .7s ease;
}

.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-card__sub {
  font-size: 11px;
  color: var(--bordeaux);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-card__desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--bordeaux);
  color: var(--white);
  border: 1px solid var(--bordeaux);
}

.btn--gold:hover {
  background: var(--bordeaux-deep);
  border-color: var(--bordeaux-deep);
  box-shadow: 0 4px 16px rgba(122,31,53,.28);
}

.btn--outline {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}

.btn--outline:hover {
  background: var(--bordeaux);
  color: var(--white);
}

.btn--dark {
  background: var(--text-dark);
  color: var(--white);
  border: 1px solid var(--text-dark);
}

.btn--dark:hover {
  background: var(--text-body);
  border-color: var(--text-body);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 13px;
}

.btn-icon {
  font-size: 14px;
  transition: transform var(--transition);
}

.btn:hover .btn-icon { transform: translateX(4px); }

/* ── News / List Items ──────────────────────────────────────────── */
.news-list {
  border-top: 1px solid var(--border);
}

.news-item {
  display: grid;
  grid-template-columns: 120px auto 1fr;
  gap: 20px 32px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}

.news-item:hover { background: var(--ivory); }

.news-item a {
  display: contents;
}

.news-date {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.news-cat {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(122,31,53,.3);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  white-space: nowrap;
}

.news-title {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  transition: color var(--transition);
}

.news-item:hover .news-title { color: var(--bordeaux); }

/* ── FAQ Accordion ──────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--bordeaux); }

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(122,31,53,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bordeaux);
  margin-top: 1px;
}

.faq-toggle {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--bordeaux);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-toggle::before {
  width: 100%; height: 1px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}

.faq-toggle::after {
  width: 1px; height: 100%;
  top: 0; left: 50%;
  transform: translateX(-50%);
}

.faq-item.open .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94);
}

.faq-a-inner {
  padding: 0 0 28px 48px;
  font-size: 14px;
  line-height: 2;
  color: var(--text-body);
}

/* ── Contact Form ───────────────────────────────────────────────── */
.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-body);
  margin-bottom: 10px;
  font-weight: 400;
}

.form-label span {
  color: var(--bordeaux);
  margin-left: 4px;
  font-size: 10px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: rgba(122,31,53,.4);
  box-shadow: 0 0 0 3px rgba(122,31,53,.08);
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  min-height: 160px;
  resize: vertical;
  line-height: 1.8;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a1f35' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 8px;
}

/* ── CTA Section ────────────────────────────────────────────────── */
.cta-section {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--bordeaux);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section .label { color: rgba(255,255,255,.6); }
.cta-section .h2   { color: var(--white); }
.cta-section .lead { color: rgba(255,255,255,.65); }

/* CTA with portrait */
.cta-portrait {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}

.cta-portrait__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.cta-portrait__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bordeaux-deep);
  color: rgba(255,255,255,.55);
  padding: 64px 0 36px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .15em;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-logo__img {
  height: 32px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-logo span { color: var(--gold-light); }

.footer-tagline {
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: .05em;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: .06em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

/* ── Table (Company, Law) ───────────────────────────────────────── */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--border-light);
}

.info-table th {
  width: 200px;
  min-width: 160px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-muted);
  vertical-align: top;
  padding-right: 32px;
}

.info-table td {
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-body);
  vertical-align: top;
}

/* ── Feature Highlights ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
}

.feature-item__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: .03em;
}

.feature-item__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* ── Stat strip ─────────────────────────────────────────────────── */
.stat-strip {
  background: var(--text-dark);
  padding: 52px 0;
}

.stat-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: .04em;
  line-height: 1.2;
}

.stat-unit {
  font-size: 16px;
  color: var(--gold-light);
}

.stat-label {
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ── Scroll animations ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cta-portrait {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-portrait__img {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 3/2;
  }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col--reverse .two-col__img { order: 0; }
  .two-col--reverse .two-col__text { order: 0; }

  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero { min-height: 70vh; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(249,246,241,.80) 0%, rgba(249,246,241,.60) 100%);
  }

  .info-table th {
    display: block;
    width: 100%;
    padding: 16px 0 4px;
    border-bottom: none;
  }

  .info-table td {
    display: block;
    padding: 0 0 16px;
  }

  .info-table tr { display: block; }

  .stat-strip-inner { gap: 32px; }
}

@media (max-width: 480px) {
  .page-hero { height: clamp(200px, 50vw, 300px); }
}
