/* Dodi USA LLC — styles.css */

:root {
  /* Palette — emerald, antique gold, bone */
  --ink: #0E2A24;           /* deep forest */
  --ink-2: #143832;         /* elevated surfaces */
  --ink-3: #1C4940;         /* hover / borders on dark */
  --gold: #B08D3F;          /* antique brass */
  --gold-2: #96762E;        /* gold on hover */
  --gold-soft: rgba(176, 141, 63, 0.22);
  --cream: #F4EFE3;         /* bone */
  --cream-2: #EBE4D2;       /* warm sand */
  --white: #FFFFFF;
  --muted: #5B6B64;         /* sage-grey body copy */
  --muted-2: #7E8C86;
  --hairline: #DFD8C4;
  --hairline-dark: rgba(176, 141, 63, 0.28);
  --success-bg: #E3E9DE;

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-body: 17px;
  --fs-small: 13px;
  --fs-h1: clamp(44px, 7vw, 82px);
  --fs-h2: clamp(32px, 4.2vw, 52px);
  --fs-h3: 24px;
  --lh-body: 1.65;
  --lh-tight: 1.08;
  --lh-serif: 1.1;

  /* Space */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 960px;
  --radius: 2px;
  --radius-lg: 4px;
  --dur: 260ms;
  --dur-slow: 480ms;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --shadow-sm: 0 1px 0 var(--hairline), 0 8px 24px rgba(14, 42, 36, 0.05);
  --shadow-md: 0 1px 0 var(--hairline), 0 18px 48px rgba(14, 42, 36, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: var(--lh-serif);
  margin: 0 0 var(--s-4) 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); font-weight: 500; letter-spacing: -0.025em; line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-h3); font-weight: 600; }

h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

p { margin: 0 0 var(--s-3) 0; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold); }

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

button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s-4);
}
@media (min-width: 768px) { .container { padding-inline: var(--s-6); } }

section { padding-block: var(--s-8); position: relative; }
@media (max-width: 768px) { section { padding-block: var(--s-7); } }
@media (max-width: 480px) { section { padding-block: var(--s-6); } }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-2) var(--s-3);
}
.skip-link:focus { left: var(--s-2); top: var(--s-2); z-index: 1000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(176, 141, 63, 0.24);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.btn--lg { padding: 18px 34px; }

/* -------- Eyebrow / labels -------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4) 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow--gold { color: var(--gold-2); font-weight: 600; }
.eyebrow--on-dark { color: var(--gold); }
.eyebrow__line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: currentColor;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow span { transition: transform var(--dur) var(--ease); display: inline-block; }

/* -------- Hairlines -------- */
.hairline {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}
.hairline--gold { background: var(--gold); height: 1px; width: 40px; margin-bottom: var(--s-4); }

/* -------- Section heads -------- */
.section-head {
  max-width: 780px;
  margin-bottom: var(--s-7);
}
.section-title {
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4) 0;
}
.section-lede {
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 19px);
  max-width: 620px;
  line-height: 1.55;
  margin: 0;
}
.section-head--dark .section-title { color: var(--cream); }
.section-head--dark .section-lede { color: rgba(244, 239, 227, 0.72); }

/* -------- Scroll reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =================== NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 227, 0.9);
  backdrop-filter: saturate(1.3) blur(10px);
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  box-shadow: 0 8px 24px rgba(14, 42, 36, 0.06);
  background: rgba(244, 239, 227, 0.96);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.nav__brand:hover { color: var(--ink); }
.nav__mark { border-radius: 2px; }
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--s-5);
  align-items: center;
}
.nav__list a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__list a:hover { color: var(--ink); }
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  background: transparent;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--s-7) var(--s-4) var(--s-6);
    gap: var(--s-5);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .nav__menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: var(--s-4); }
  .nav__list a { font-size: 22px; font-family: var(--font-serif); letter-spacing: 0; }
  .nav__cta { align-self: flex-start; }
}

/* =================== HERO =================== */
.hero {
  padding-block: var(--s-8) var(--s-9);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 500px at 92% 0%, rgba(176, 141, 63, 0.08) 0%, transparent 70%),
    var(--cream);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-9);
  align-items: center;
  min-height: 72vh;
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); min-height: 0; }
}

.hero__title {
  font-size: var(--fs-h1);
  margin: var(--s-5) 0;
  line-height: var(--lh-tight);
}
.hero__title-accent {
  display: inline-block;
  color: var(--ink-2);
  font-weight: 500;
}
.hero__title-accent em {
  color: var(--gold-2);
  font-weight: 500;
  font-style: italic;
}

.hero__sub {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: var(--s-6);
  line-height: 1.55;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: var(--s-5);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-6);
  margin: 0;
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
  max-width: 540px;
}
.hero__meta > div { display: grid; gap: 2px; }
.hero__meta dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
@media (max-width: 480px) {
  .hero__meta { grid-template-columns: 1fr; gap: var(--s-3); }
}

.hero__figure {
  position: relative;
}
.figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 4 / 5;
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.hero__figure:hover .figure img { transform: scale(1.03); }
.figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 36, 0.05) 0%, rgba(14, 42, 36, 0.45) 100%);
  pointer-events: none;
}
.figure__caption {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  right: var(--s-5);
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.figure__bar {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__badge {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 8px 24px rgba(14, 42, 36, 0.22));
}
@media (max-width: 1024px) {
  .hero__badge { bottom: -24px; left: 0; width: 88px; height: 88px; }
  .hero__badge svg { width: 88px; height: 88px; }
}

/* =================== STATS =================== */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--s-7);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.stats__cell {
  padding-inline: var(--s-4);
  border-left: 1px solid rgba(176, 141, 63, 0.22);
  text-align: left;
}
.stats__cell:first-child { border-left: 0; padding-left: 0; }
.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 var(--s-2) 0;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stats__sym { font-size: 0.6em; vertical-align: top; margin-left: 2px; color: var(--gold); }
.stats__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.75);
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .stats__cell { padding-inline: 0; border-left: 0; padding-top: var(--s-3); border-top: 1px solid rgba(176, 141, 63, 0.22); }
  .stats__cell:nth-child(1), .stats__cell:nth-child(2) { border-top: 0; padding-top: 0; }
}

/* =================== SERVICES =================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.service-card {
  padding: var(--s-6) var(--s-6) var(--s-6) var(--s-6);
  background: var(--cream);
  position: relative;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  color: var(--ink);
}
.service-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  color: var(--gold);
  margin-bottom: var(--s-4);
  transition: transform var(--dur) var(--ease);
}
.service-card:hover .service-card__icon { transform: translateY(-2px); }
.service-card__num {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--muted);
  margin: 0 0 var(--s-4) 0;
  line-height: 1.6;
}
.service-card__points {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0 0;
  display: grid;
  gap: var(--s-2);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
}
.service-card__points li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.service-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: var(--s-5); }
  .service-card h3 { font-size: 22px; }
}

/* =================== PHILOSOPHY =================== */
.philosophy {
  background: var(--cream-2);
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 1024px) {
  .philosophy__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.philosophy__figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
}
.philosophy__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.philosophy__frame {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.75;
}

.philosophy__lede {
  font-size: clamp(18px, 1.3vw, 21px);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: var(--s-6);
  max-width: 540px;
}

.philosophy__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-5);
}
.philosophy__points li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  align-items: baseline;
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
}
.philosophy__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.philosophy__points h3 {
  font-size: 22px;
  margin-bottom: var(--s-2);
}
.philosophy__points p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* =================== APPROACH =================== */
.approach {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.approach__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(176, 141, 63, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 82% 82%, rgba(176, 141, 63, 0.07) 0%, transparent 42%);
  pointer-events: none;
}
.approach__inner { position: relative; z-index: 1; }
.approach h2, .approach h3 { color: var(--cream); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-7);
}
.approach-step {
  text-align: left;
  padding-right: var(--s-4);
}
.approach-step__mark {
  margin-bottom: var(--s-4);
}
.approach-step h3 {
  font-size: 26px;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.approach-step p {
  color: rgba(244, 239, 227, 0.75);
  margin: 0;
  line-height: 1.6;
  max-width: 320px;
}
@media (max-width: 900px) {
  .approach__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* =================== WHY =================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-6);
}
.value-prop {
  padding-top: var(--s-5);
  border-top: 2px solid var(--ink);
  position: relative;
}
.value-prop::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.value-prop h3 {
  margin-bottom: var(--s-3);
  font-size: 24px;
  font-weight: 500;
}
.value-prop p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.value-prop__num {
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 16px;
  font-style: italic;
  margin-bottom: var(--s-3);
}
@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* =================== TESTIMONIAL =================== */
.testimonial {
  background: var(--cream);
  padding-block: var(--s-8);
  text-align: center;
}
.testimonial__inner {
  max-width: 860px;
  margin-inline: auto;
  position: relative;
}
.testimonial__quote {
  width: 60px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: var(--s-3);
}
.testimonial__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 var(--s-5) 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.testimonial__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.testimonial__footer .hairline { width: 40px; }
.testimonial__attrib {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* =================== ABOUT =================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.about__copy { max-width: 680px; }
.about__lede {
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink);
  line-height: 1.55;
  margin-top: var(--s-4);
  font-weight: 300;
}
.about__tenets {
  margin-top: var(--s-5);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-2);
}
.about__principal {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
}
.about__principal-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.about__principal-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 0 0;
  font-weight: 500;
}

.about__card {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-6);
  border-radius: var(--radius);
  position: relative;
}
.about__card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: var(--gold);
}
.about__card-title {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  margin: 0 0 var(--s-4) 0;
}
.about__dl {
  margin: 0;
  display: grid;
  gap: var(--s-4);
}
.about__dl > div {
  display: grid;
  gap: 2px;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(176, 141, 63, 0.18);
}
.about__dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.about__dl dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.65);
  font-weight: 500;
}
.about__dl dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--cream);
  font-style: italic;
}

/* =================== CONTACT =================== */
.contact {
  background: var(--cream-2);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.contact__lede {
  color: var(--muted);
  margin-bottom: var(--s-5);
  max-width: 440px;
  line-height: 1.6;
}
.contact__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.contact__info li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--s-3);
  align-items: baseline;
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
}
.contact__info strong {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact__info span {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}
.contact__info a { color: var(--ink); }
.contact__info a:hover { color: var(--gold); }

.contact__form {
  background: var(--white);
  padding: var(--s-6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--s-4);
  position: relative;
}
.contact__form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact__hp { position: absolute; left: -9999px; }
.form-row { display: grid; gap: var(--s-2); }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.form-row--split > div { display: grid; gap: var(--s-2); }
@media (max-width: 600px) {
  .form-row--split { grid-template-columns: 1fr; }
}

.form-row__hint { color: var(--muted-2); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-row label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-row input, .form-row textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 13px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--muted-2); font-weight: 300; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.contact__note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.contact__success {
  margin-top: var(--s-3);
  color: var(--ink);
  background: var(--success-bg);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
  font-size: 15px;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--s-7) var(--s-5);
}
.footer a { color: var(--cream); }
.footer a:hover { color: var(--gold); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
  padding-bottom: var(--s-6);
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.footer__brand {
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 14px;
  margin: 0;
}
.footer__tag { color: rgba(244, 239, 227, 0.72); margin: 0; max-width: 360px; line-height: 1.55; }

.footer__heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-3) 0;
  font-weight: 500;
}
.footer__links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.footer__links a { font-size: 15px; }
.footer__addr { font-style: normal; color: rgba(244, 239, 227, 0.85); line-height: 1.7; font-size: 15px; }

.footer__rule { background: rgba(176, 141, 63, 0.28); margin: 0; }
.footer__legal {
  display: grid;
  gap: var(--s-3);
  padding-top: var(--s-5);
}
.footer__copy { margin: 0; font-size: 13px; color: rgba(244, 239, 227, 0.6); letter-spacing: 0.05em; }
.footer__disclaimer {
  font-size: 12px;
  color: rgba(244, 239, 227, 0.52);
  margin: 0;
  max-width: 900px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-5); padding-bottom: var(--s-5); }
}
