/* ===== Skeuomorphism Design System =====
   Oluchi Hair Salon — physical materials: marble, leather, rose gold, paper
*/

:root {
  --bg: #e8e2da;
  --bg-alt: #ddd6cc;
  --bg-dark: #3d2e28;
  --ink: #2c221c;
  --muted: #6b5f56;
  --brand: #9b5b6d;
  --brand-dark: #6d3f4f;
  --brand-light: #c47a8e;
  --accent: #c4a35a;
  --accent-light: #e8cc7a;
  --accent-dark: #8a6f32;
  --line: #b8aea4;
  --marble-light: #f5f0e8;
  --marble-mid: #ebe4d8;
  --leather: #4a382f;
  --gold-highlight: rgba(255, 248, 220, 0.85);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  /* Skeuo depth tokens */
  --raise-sm:
    inset 0 1px 0 var(--gold-highlight),
    inset 0 -1px 0 rgba(0,0,0,0.08),
    0 2px 4px rgba(0,0,0,0.12),
    0 4px 10px rgba(0,0,0,0.08);
  --raise-md:
    inset 0 2px 0 rgba(255,255,255,0.7),
    inset 0 -2px 0 rgba(0,0,0,0.06),
    0 3px 6px rgba(0,0,0,0.15),
    0 8px 20px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.5);
  --raise-lg:
    inset 0 3px 0 rgba(255,255,255,0.75),
    inset 0 -3px 0 rgba(0,0,0,0.05),
    0 4px 8px rgba(0,0,0,0.18),
    0 12px 32px rgba(0,0,0,0.15),
    0 1px 0 rgba(255,255,255,0.6);
  --inset:
    inset 0 3px 6px rgba(0,0,0,0.18),
    inset 0 1px 2px rgba(0,0,0,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.4);
  --inset-deep:
    inset 0 4px 10px rgba(0,0,0,0.25),
    inset 0 2px 4px rgba(0,0,0,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.25);
  --pressed:
    inset 0 3px 8px rgba(0,0,0,0.3),
    inset 0 1px 2px rgba(0,0,0,0.2),
    0 1px 0 rgba(255,255,255,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Marble + linen texture background */
body.skeuo {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(200,190,175,0.4) 0%, transparent 45%),
    radial-gradient(circle at 60% 20%, rgba(155,91,109,0.04) 0%, transparent 30%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.012) 2px,
      rgba(0,0,0,0.012) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.008) 2px,
      rgba(0,0,0,0.008) 4px
    ),
    linear-gradient(165deg, #ebe5dc 0%, #d9d2c8 40%, #e5dfd6 100%);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

h1 em {
  font-style: italic;
  color: var(--brand-dark);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.8),
    0 -1px 0 rgba(0,0,0,0.05);
}

a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ===== Top bar — brushed dark leather ===== */
.top-bar {
  background:
    linear-gradient(180deg, #5a4538 0%, var(--leather) 15%, #3a2a22 85%, #2e201a 100%);
  color: rgba(255,248,235,0.92);
  font-size: 0.82rem;
  padding: 11px 0;
  border-bottom: 3px solid var(--accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 4px 12px rgba(0,0,0,0.25);
  position: relative;
}

.top-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 3px
  );
  pointer-events: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.top-contacts { display: flex; gap: 22px; }
.top-contacts a {
  color: #fff8e8;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  transition: color 0.15s;
}
.top-contacts a:hover { color: var(--accent-light); }

.top-badge {
  font-size: 0.78rem;
  color: rgba(255,248,235,0.7);
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.15) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 3px rgba(0,0,0,0.3);
}

/* ===== Buttons — glossy physical push buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: box-shadow 0.12s, transform 0.12s;
  position: relative;
  user-select: none;
}

.btn-primary {
  color: #fff8f0;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  background: linear-gradient(
    180deg,
    #c47a8e 0%,
    var(--brand) 35%,
    var(--brand-dark) 70%,
    #5a3040 100%
  );
  border: 1px solid #5a3040;
  border-top-color: #d490a0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 3px 0 #4a2835,
    0 5px 10px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: linear-gradient(
    180deg,
    #d490a0 0%,
    #b06a7e 35%,
    var(--brand-dark) 70%,
    #5a3040 100%
  );
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 4px 0 #4a2835,
    0 7px 14px rgba(0,0,0,0.28);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: var(--pressed), 0 1px 0 #4a2835;
}

.btn-secondary {
  color: var(--brand-dark);
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  background: linear-gradient(180deg, #faf6f0 0%, #ebe4da 50%, #d9d0c4 100%);
  border: 1px solid #b0a498;
  border-top-color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 3px 0 #a89888,
    0 4px 8px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #fff 0%, #f0ebe3 50%, #e0d8cc 100%);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(2px);
  box-shadow: var(--pressed), 0 1px 0 #a89888;
}

.btn-block { width: 100%; }
.contact-call { margin-top: 24px; }

/* ===== Header — raised marble slab ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #faf7f2 0%, #f0ebe3 40%, #e8e2d8 100%);
  border-bottom: 1px solid #c4bab0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 4px 16px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Rose-gold medallion logo */
.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: #fff8f0;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.4);
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 120%, rgba(0,0,0,0.2) 0%, transparent 50%),
    linear-gradient(145deg, #e8cc7a 0%, var(--accent) 30%, #9a7a38 60%, #6d5520 100%);
  border: 2px solid #8a6f32;
  border-top-color: #f0d890;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 3px 6px rgba(0,0,0,0.3),
    0 0 0 3px rgba(196,163,90,0.2);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.brand-type {
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links { display: flex; gap: 8px; }

/* Tab-like nav buttons */
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent 0%, transparent 100%);
  border: 1px solid transparent;
  transition: all 0.15s;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.nav-links a:hover {
  color: var(--brand-dark);
  background: linear-gradient(180deg, #faf6f0 0%, #e8e0d4 100%);
  border-color: #c8beb2;
  border-top-color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 2px 4px rgba(0,0,0,0.1);
}

.nav-cta { padding: 11px 20px; font-size: 0.84rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f5f0e8 0%, #ddd6cc 100%);
  border: 1px solid #b8aea4;
  border-top-color: #fff;
  box-shadow: var(--raise-sm);
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  background: linear-gradient(180deg, #5a5048 0%, #3a322c 100%);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px 4% 22px;
  background: linear-gradient(180deg, #ebe4da 0%, #ddd6cc 100%);
  border-bottom: 2px solid #b8aea4;
  box-shadow: inset 0 4px 8px rgba(0,0,0,0.06);
}

.mobile-menu a {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8f4ee 0%, #ebe4da 100%);
  border: 1px solid #c8beb2;
  box-shadow: var(--raise-sm);
  font-weight: 600;
  font-size: 0.88rem;
}

.mobile-menu.open { display: flex; }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 64px;
  position: relative;
  border-bottom: 2px solid #c4bab0;
  box-shadow: inset 0 -8px 24px rgba(0,0,0,0.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 6px;
  background: linear-gradient(180deg, #faf0d8 0%, #e8d8a8 50%, #d4c088 100%);
  border: 1px solid #b8a060;
  border-top-color: #fff8e0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 2px 4px rgba(0,0,0,0.12);
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
}

.lede {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Recessed hours plaque */
.hero-hours {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(180deg, #d4cdc3 0%, #e8e2d8 100%);
  border: 1px solid #b8aea4;
  box-shadow: var(--inset);
}

.hero-hours strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
}

/* Hero panel — leather-bound appointment book */
.hero-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #5a4538 0%, var(--leather) 30%, #3a2a22 100%);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 22px;
  border: 2px solid #2e201a;
  border-top-color: #6a5548;
  box-shadow: var(--raise-lg);
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2a1e18 0%, #4a382f 40%, #2a1e18 100%);
  box-shadow:
    inset 0 0 4px rgba(0,0,0,0.5),
    2px 0 4px rgba(0,0,0,0.2);
}

.hero-panel .panel-stat {
  margin-left: 20px;
}

.panel-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #faf6f0 0%, #ebe4da 100%);
  border: 1px solid #c8beb2;
  border-top-color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 6px rgba(0,0,0,0.2);
}

.panel-stat:last-child { margin-bottom: 0; }
.panel-icon { font-size: 1.5rem; margin-bottom: 6px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2)); }
.panel-label {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}
.panel-sub { font-size: 0.82rem; color: var(--muted); }

/* ===== Trust strip — dark wood shelf ===== */
.trust-strip {
  background:
    linear-gradient(180deg, #5a4538 0%, var(--leather) 50%, #3a2a22 100%);
  color: #fff8e8;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid #2e201a;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.06),
    inset 0 -4px 8px rgba(0,0,0,0.2),
    0 6px 16px rgba(0,0,0,0.2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.1) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.2);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #3a2a22;
  background: linear-gradient(145deg, #f0d890 0%, var(--accent) 40%, #8a6f32 100%);
  border: 2px solid #6d5520;
  border-top-color: #fff8d0;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.5),
    0 2px 4px rgba(0,0,0,0.3);
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.trust-sub {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,248,232,0.55);
  margin-top: 2px;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }

.section-alt {
  background:
    linear-gradient(180deg, #d9d2c8 0%, #cfc8be 50%, #d9d2c8 100%);
  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.06),
    inset 0 -4px 12px rgba(0,0,0,0.04);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #faf7f2 0%, #f0ebe3 100%);
  border: 1px solid #c8beb2;
  border-top-color: #fff;
  box-shadow: var(--raise-md);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-top: 8px;
}

.section-head > p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1rem;
}

/* ===== Cards — raised paper tiles ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #fff 0%, #faf6f0 30%, #ebe4da 100%);
  border: 1px solid #c8beb2;
  border-top: 2px solid #fff;
  box-shadow: var(--raise-md);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--raise-lg);
}

.icon {
  font-size: 1.35rem;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.6) 0%, transparent 50%),
    linear-gradient(145deg, #f0d8c8 0%, #d4a8a8 40%, var(--brand) 100%);
  border: 2px solid var(--brand-dark);
  border-top-color: #e8c0c8;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.4),
    0 3px 6px rgba(0,0,0,0.2);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.88rem; }

/* ===== Process — stepped wooden blocks ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #faf6f0 0%, #e8e0d4 60%, #d8d0c4 100%);
  border: 1px solid #b8aea4;
  border-top: 2px solid #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 4px 0 #a89888,
    0 6px 12px rgba(0,0,0,0.15);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff8f0;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.3);
  margin-bottom: 14px;
  background: linear-gradient(145deg, #c47a8e 0%, var(--brand) 50%, var(--brand-dark) 100%);
  border: 2px solid var(--brand-dark);
  border-top-color: #e0a0b0;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.3),
    0 3px 6px rgba(0,0,0,0.2);
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.88rem; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.about-copy {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #faf7f2 0%, #f0ebe3 100%);
  border: 1px solid #c8beb2;
  border-top: 2px solid #fff;
  box-shadow: var(--raise-md);
}

.about-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 8px 0 18px;
}

.about-copy > p { color: var(--muted); }

.about-detail {
  margin-top: 14px;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--muted);
  padding: 14px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e8e2d8 0%, #ddd6cc 100%);
  box-shadow: var(--inset);
  border: 1px solid #c0b6ac;
}

.checklist {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding: 10px 14px 10px 38px;
  position: relative;
  font-size: 0.94rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f5f0e8 100%);
  border: 1px solid #d8d0c4;
  box-shadow: var(--raise-sm);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.65rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, #6aaa6a 0%, #3d8a3d 100%);
  border: 1px solid #2d6a2d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 1px 2px rgba(0,0,0,0.2);
}

.about-info { display: grid; gap: 20px; }

/* Embossed info plaques */
.info-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #faf6f0 0%, #ebe4da 100%);
  border: 2px solid #c8beb2;
  border-left: 5px solid var(--accent);
  border-top-color: #fff;
  box-shadow: var(--raise-md);
}

.info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--brand-dark);
  padding-bottom: 10px;
  border-bottom: 2px groove #d8d0c4;
}

.info-card dl { display: grid; gap: 14px; }
.info-card dt {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.info-card dd {
  font-weight: 500;
  margin-top: 2px;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #e8e2d8 0%, #f0ebe3 100%);
  box-shadow: var(--inset);
  border: 1px solid #c0b6ac;
}
.info-card dd a { color: var(--brand-dark); font-weight: 600; }
.info-card dd a:hover { text-decoration: underline; }

.hours-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #e8e2d8 0%, #f0ebe3 100%);
  box-shadow: var(--inset);
  border: 1px solid #c0b6ac;
}

.hours-list span:last-child { color: var(--muted); font-weight: 600; }

/* ===== Stats — rose gold metal plates ===== */
.stats {
  background:
    linear-gradient(180deg, #5a3545 0%, var(--brand-dark) 30%, #4a2835 70%, #3a2030 100%);
  border-top: 3px solid #2a1825;
  border-bottom: 3px solid #2a1825;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.08),
    inset 0 -4px 12px rgba(0,0,0,0.3),
    0 8px 24px rgba(0,0,0,0.2);
  color: #fff8f0;
}

.stats .eyebrow {
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.1) 100%);
  border-color: rgba(255,255,255,0.2);
  color: var(--accent-light);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.stats .section-head {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.08) 100%);
  border-color: rgba(255,255,255,0.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 4px 12px rgba(0,0,0,0.2);
}

.stats .section-head h2 {
  color: #fff8f0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 30px 14px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 30% 15%, rgba(255,255,255,0.2) 0%, transparent 50%),
    linear-gradient(165deg, #c47a8e 0%, var(--brand) 40%, var(--brand-dark) 100%);
  border: 2px solid #5a3040;
  border-top-color: #e0a0b0;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.2),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 4px 8px rgba(0,0,0,0.3);
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  display: block;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat p {
  margin-top: 10px;
  font-size: 0.86rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ===== Quote — engraved marble plaque ===== */
.quote-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 36px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 25% 20%, rgba(255,255,255,0.6) 0%, transparent 45%),
    linear-gradient(165deg, #faf7f2 0%, #ebe4da 50%, #ddd6cc 100%);
  border: 3px solid #c8beb2;
  border-top-color: #fff;
  box-shadow: var(--raise-lg);
  position: relative;
}

.quote-wrap::before,
.quote-wrap::after {
  content: "❝";
  position: absolute;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.35;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  font-family: var(--font-display);
}

.quote-wrap::before { top: 12px; left: 20px; }
.quote-wrap::after {
  content: "❞";
  bottom: 12px;
  right: 20px;
  top: auto;
  left: auto;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5f0e8 0%, #e8e0d4 100%);
  border: 1px solid #c8beb2;
  box-shadow: var(--raise-sm);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff8f0;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.3);
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.4) 0%, transparent 50%),
    linear-gradient(145deg, #c47a8e 0%, var(--brand) 50%, var(--brand-dark) 100%);
  border: 2px solid var(--brand-dark);
  border-top-color: #e0a0b0;
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.3),
    0 3px 6px rgba(0,0,0,0.25);
}

.quote-author strong { display: block; color: var(--brand-dark); }
.quote-sub { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #faf7f2 0%, #f0ebe3 100%);
  border: 1px solid #c8beb2;
  border-top: 2px solid #fff;
  box-shadow: var(--raise-md);
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 8px 0 14px;
}

.contact-copy > p { color: var(--muted); }

.contact-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-list li {
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e8e2d8 0%, #f0ebe3 100%);
  border: 1px solid #c0b6ac;
  box-shadow: var(--inset);
}

.contact-list li strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-list a {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.contact-list a:hover { text-decoration: underline; }

/* Form — leather desk pad with recessed inputs */
.contact-form {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #5a4538 0%, var(--leather) 100%);
  border: 2px solid #2e201a;
  border-top-color: #6a5548;
  box-shadow: var(--raise-lg);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: #fff8e8;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.field { margin-bottom: 16px; margin-top: 18px; }
.contact-form .field:first-of-type { margin-top: 14px; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #f0e8d8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font: inherit;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #d4cdc3 0%, #ebe4da 100%);
  border: 1px solid #a89888;
  border-top-color: #8a7a6a;
  box-shadow: var(--inset-deep);
  transition: box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  box-shadow:
    var(--inset-deep),
    0 0 0 2px rgba(196,163,90,0.5);
}

.form-privacy {
  font-size: 0.78rem;
  color: rgba(255,248,232,0.65);
  margin-top: 4px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--accent-light);
  min-height: 1.2em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ===== Footer — dark leather base ===== */
.site-footer {
  background:
    linear-gradient(180deg, #4a382f 0%, var(--bg-dark) 40%, #1e1612 100%);
  color: rgba(255,248,235,0.75);
  padding: 56px 0 28px;
  border-top: 4px solid var(--accent-dark);
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 40px;
}

.footer-brand .brand-name { color: #fff8e8; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.footer-brand .brand-type { color: rgba(255,248,235,0.45); }

.footer-tag { margin-top: 14px; font-size: 0.88rem; }

.footer-legal {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,248,235,0.4);
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-cols h5 {
  color: var(--accent-light);
  font-family: var(--font);
  font-size: 0.76rem;
  margin-bottom: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.footer-cols a {
  display: block;
  color: rgba(255,248,235,0.55);
  padding: 6px 0;
  font-size: 0.86rem;
  transition: color 0.15s;
}

.footer-cols a:hover { color: var(--accent-light); }

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,248,235,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .cards,
  .process-grid { grid-template-columns: 1fr; }
  .stat-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-contacts { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-primary:active,
  .btn-secondary:active { transform: none; }
}
