/* ============================================================
   GEMS of NC — Master Stylesheet
   Aligned to Brand & Copy Brief v5 + Brand Standards v6
   Direction: Editorial Estate Hybrid (Variant 3)
   ============================================================ */

/* -------------------- DESIGN TOKENS -------------------- */
:root {
  /* Colors — locked v6 palette */
  --forest: #1B5E20;
  --emerald: #2E7D32;
  --accent: #4CAF50;
  --gold: #C9A84C;
  --gold-pale: #F5EDD4;
  --mint: #F4F9F4;
  --slate: #4A5568;
  --deep: #0D2B0D;
  --paper: #FAFAF7;
  --cream: #F5F1E8;
  --white: #FFFFFF;

  /* Typography stacks */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', Menlo, monospace;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  /* Layout */
  --container-max: 1400px;
  --content-pad: 60px;
}

/* -------------------- RESET & BASE -------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* -------------------- ACCESSIBILITY -------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--deep);
  color: var(--gold);
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
}
.skip-link:focus { top: 0; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -------------------- HEADER / NAV -------------------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--content-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--deep);
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--forest); }
.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 12px 24px;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
}
.nav-cta:hover { background: var(--deep); color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* -------------------- HERO -------------------- */
.hero {
  background: var(--paper);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
  gap: 80px;
  padding: 0 var(--content-pad);
}
.hero-content { padding: 80px 0 100px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-subhead {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--cream);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 48px;
  font-style: italic;
}
.hero .phone-link { color: var(--gold); }
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* -------------------- BUTTONS -------------------- */
.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 18px 36px;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--deep);
  padding: 20px 48px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-gold:hover { background: var(--white); transform: translateY(-2px); }
.phone-link {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* -------------------- HEALTH SCORE PANEL -------------------- */
.health-panel {
  background: var(--deep);
  color: var(--white);
  padding: 40px;
  position: relative;
  border: 1px solid var(--gold);
  box-shadow: 0 24px 60px rgba(13, 43, 13, 0.18);
}
.health-panel::before {
  content: 'GEMS HEALTH SCORE™';
  position: absolute;
  top: -1px;
  left: 0;
  background: var(--gold);
  color: var(--deep);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.health-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.health-row:last-of-type { border-bottom: none; }
.health-row .label {
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.health-row .value { color: var(--accent); font-weight: 500; }
.health-big {
  margin: 28px 0 24px;
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.health-big .num {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}
.health-big .num strong {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.health-big .big-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.health-chart {
  margin-top: 8px;
  height: 56px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  height: 100%;
  gap: 3px;
  padding: 8px;
}
.chart-bars .bar {
  flex: 1;
  background: var(--accent);
  opacity: 0.4;
}
.chart-bars .bar.peak { background: var(--gold); opacity: 1; }
.health-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* -------------------- TRUST STRIP -------------------- */
.trust-strip {
  background: var(--cream);
  padding: 28px var(--content-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  flex-wrap: wrap;
  gap: 16px;
}
.trust-strip span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--forest);
  font-size: 16px;
}
.trust-strip strong {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep);
}

/* -------------------- SECTION DIVIDER -------------------- */
.section-divider {
  background: var(--cream);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 20px var(--content-pad);
  text-align: center;
}
.section-divider span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--forest);
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* -------------------- FOUNDER -------------------- */
.founder {
  background: var(--cream);
  padding: var(--space-3xl) var(--content-pad) var(--space-2xl);
}
.founder-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.founder-image-wrap { position: relative; }
.founder-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
  position: relative;
  overflow: hidden;
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-image-tag {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--deep);
  color: var(--gold);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  z-index: 3;
}
.founder h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.founder h2 em { font-style: italic; color: var(--forest); }

/* -------------------- MISSION CARD -------------------- */
.mission-card {
  background: var(--white);
  padding: 56px 56px 48px;
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 16px 40px rgba(13, 43, 13, 0.06);
}
.mission-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
  opacity: 0.6;
}
.mission-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  margin-left: 32px;
  position: relative;
  z-index: 1;
}
.mission-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--deep);
  margin-bottom: 32px;
  margin-left: 32px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.mission-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 20px;
  margin-left: 32px;
}
.mission-body strong { color: var(--deep); font-weight: 500; }
.mission-signature {
  margin-top: 36px;
  margin-left: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--forest);
  font-size: 18px;
}
.mission-signature strong {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--deep);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 6px;
}

/* -------------------- CREDENTIALS -------------------- */
.founder-credentials {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.credential { font-family: var(--font-display); }
.credential-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.credential-value {
  font-size: 22px;
  color: var(--deep);
  font-weight: 500;
}
.credential-value em { font-style: italic; color: var(--forest); }

/* -------------------- WHY WE BUILT GEMS (Nam Jai) -------------------- */
.why-callout {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(76, 175, 80, 0.08) 0%, transparent 60%),
    var(--paper);
  padding: 120px var(--content-pad);
  position: relative;
  overflow: hidden;
}
.why-callout::before,
.why-callout::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.why-callout::before { top: 0; }
.why-callout::after { bottom: 0; }
.why-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 80px;
  align-items: center;
}
.why-photo-wrap { position: relative; order: 2; }
.why-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #4a6b4d 0%, #2c4a30 50%, #1a3320 100%);
  overflow: hidden;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo-stamp {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--deep);
  color: var(--gold);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.3;
  z-index: 3;
  max-width: 200px;
}
.why-content { position: relative; order: 1; }
.why-callout h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.why-callout h3 em { font-style: italic; color: var(--forest); }
.why-thai-word {
  display: inline-block;
  margin: 24px 0 36px;
  padding: 24px 40px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.why-thai-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.1;
}
.why-thai-translit {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.why-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 20px;
}
.why-body strong { color: var(--deep); font-weight: 500; }
.why-body em { font-style: italic; color: var(--forest); }
.why-promise {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
  line-height: 1.5;
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials {
  background: var(--cream);
  padding: var(--space-3xl) var(--content-pad);
  position: relative;
}
.testimonials-header {
  max-width: var(--container-max);
  margin: 0 auto 80px;
  text-align: center;
}
.eyebrow.centered {
  display: inline-flex;
  justify-content: center;
}
.eyebrow.centered::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.testimonials h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  margin-top: 24px;
}
.testimonials h3 em { font-style: italic; color: var(--forest); }
.test-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
}
.test-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.test-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(13, 43, 13, 0.1);
}
.test-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4c5a8 0%, #b89968 50%, #8b7355 100%);
  overflow: hidden;
}
.test-photo img { width: 100%; height: 100%; object-fit: cover; }
.test-body {
  padding: 32px 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.test-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.test-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--deep);
  margin-bottom: 24px;
  flex: 1;
}
.test-attribution {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
}
.test-name {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--deep);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.test-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* -------------------- COMMERCIAL PAGE -------------------- */
.commercial {
  background: var(--deep);
  color: var(--cream);
  padding: var(--space-3xl) var(--content-pad);
  position: relative;
  overflow: hidden;
}
.commercial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.commercial-inner { max-width: var(--container-max); margin: 0 auto; }
.commercial h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
  letter-spacing: -0.015em;
}
.commercial h2 em { font-style: italic; color: var(--gold); }
.commercial-lede {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: rgba(245, 241, 232, 0.8);
  max-width: 700px;
  margin-bottom: 80px;
  font-style: italic;
}
.commercial-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin-bottom: 80px;
}
.service-card {
  background: var(--deep);
  padding: 48px 40px;
  transition: background 0.4s ease;
}
.service-card:hover { background: rgba(27, 94, 32, 0.4); }
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 32px;
  font-style: italic;
}
.service-name {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}
.service-name em { font-style: italic; }
.service-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.7);
  margin-bottom: 32px;
}
.service-list {
  list-style: none;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 24px;
}
.service-list li {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(245, 241, 232, 0.85);
  padding: 6px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.service-list li::before {
  content: '·';
  color: var(--gold);
  font-size: 24px;
}

/* -------------------- COMPLIANCE READOUT -------------------- */
.compliance-readout {
  background: rgba(76, 175, 80, 0.04);
  border: 1px solid var(--accent);
  padding: 48px;
  position: relative;
}
.readout-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent);
  flex-wrap: wrap;
  gap: 16px;
}
.readout-header h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.readout-header h3 em { font-style: italic; color: var(--gold); }
.readout-header .stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.readout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.readout-item .k {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.readout-item .v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.commercial-cta {
  margin-top: 60px;
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}

/* -------------------- CONTACT FORM -------------------- */
.contact {
  background: var(--paper);
  padding: var(--space-3xl) var(--content-pad);
}
.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 24px;
  margin-top: 24px;
  letter-spacing: -0.015em;
}
.contact h2 em { font-style: italic; color: var(--forest); }
.contact p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--slate);
  margin-bottom: 56px;
}
.contact-form {
  text-align: left;
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--deep);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  text-align: center;
  margin-top: 16px;
}

/* -------------------- FOOTER -------------------- */
.site-footer {
  background: var(--deep);
  color: rgba(245, 241, 232, 0.7);
  padding: 80px var(--content-pad) 32px;
}
.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.5);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(245, 241, 232, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245, 241, 232, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* -------------------- LEGAL / PRIVACY PAGE -------------------- */
.legal {
  background: var(--paper);
  padding: 100px var(--content-pad);
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.legal h1 em { font-style: italic; color: var(--forest); }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--deep);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal h3 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}
.legal p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: var(--slate);
}
.legal strong { color: var(--deep); font-weight: 500; }
.legal ul { margin: 16px 0 16px 24px; }
.legal li { font-size: 16px; line-height: 1.85; margin-bottom: 8px; color: var(--slate); }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {
  :root {
    --content-pad: 24px;
    --space-3xl: 80px;
    --space-2xl: 60px;
  }
  /* Nav */
  .nav-menu { display: none; }
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  }
  .nav-toggle { display: block; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-content { padding: 60px 0; }
  .health-panel { padding: 32px 24px; }
  .health-big .num { font-size: 72px; }
  .trust-strip { flex-direction: column; gap: 16px; }

  /* Founder */
  .founder-grid { grid-template-columns: 1fr; gap: 60px; }
  .founder h2 { font-size: 40px; }
  .mission-card { padding: 40px 28px 36px; }
  .mission-tag, .mission-text, .mission-body, .mission-signature { margin-left: 0; }
  .founder-credentials { grid-template-columns: 1fr; }

  /* Why callout */
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-photo-wrap { order: 1; }
  .why-content { order: 2; }
  .why-thai-word { padding: 20px 28px; }
  .why-thai-script { font-size: 28px; }

  /* Testimonials */
  .test-grid { grid-template-columns: 1fr; }

  /* Commercial */
  .commercial-services { grid-template-columns: 1fr; }
  .compliance-readout { padding: 32px 24px; }
  .readout-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}
