/* ============================================================
   drlee.ru — Production stylesheet
   Brand: "Porcelain & Pearl"
   Type: Cormorant Garamond × Inter
============================================================ */

:root {
  /* Palette */
  --bone:        #F6F1EA;
  --ivory:       #FBF8F3;
  --pearl:       #ECE3D6;
  --ink:         #1B2A2E;
  --ink-2:       #243639;
  --teal:        #2F5D62;
  --teal-deep:   #21474B;
  --sage:        #8FA89A;
  --gold:        #B6904A;
  --gold-soft:   #C9A86A;
  --rose:        #C98E8E;
  --line:        rgba(27,42,46,0.12);
  --line-strong: rgba(27,42,46,0.22);
  --muted:       #6B7570;
  --muted-2:     #8A938F;

  /* Type scale */
  --text-xs:   clamp(11px, 0.75rem, 13px);
  --text-sm:   clamp(13px, 0.875rem, 14px);
  --text-base: clamp(15px, 1rem, 17px);
  --text-lg:   clamp(18px, 1.15rem, 20px);
  --text-xl:   clamp(22px, 1.5rem, 28px);
  --text-2xl:  clamp(28px, 2.4vw, 38px);
  --text-3xl:  clamp(36px, 3.4vw, 56px);
  --text-hero: clamp(44px, 6vw, 88px);

  /* Spacing */
  --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px; --space-16: 64px;
  --space-20: 80px; --space-24: 96px; --space-32: 128px;

  --r-sm: 6px; --r-md: 12px; --r-lg: 22px; --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(27,42,46,0.05), 0 1px 3px rgba(27,42,46,0.04);
  --shadow:    0 8px 24px -8px rgba(27,42,46,0.10), 0 2px 6px rgba(27,42,46,0.04);
  --shadow-lg: 0 24px 60px -20px rgba(27,42,46,0.20), 0 6px 14px rgba(27,42,46,0.06);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'calt';
}
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* Display type */
.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.italic { font-style: italic; font-weight: 400; }

.eyebrow, .lp-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--teal);
}
.eyebrow.gold, .lp-tag.gold { color: var(--gold); }
.lp-tag::before {
  content: ''; width: 22px; height: 1px; background: currentColor;
}

/* Container */
.wrap { width: min(var(--container), 100% - 48px); margin: 0 auto; }
@media (max-width: 600px) { .wrap { width: min(var(--container), 100% - 32px); } }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bone) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand .dot { color: var(--gold); font-style: italic; }
.brand .ru { font-size: 18px; opacity: 0.85; }
.nav-primary { display: flex; gap: 28px; }
.nav-primary a {
  font-size: 14px; color: var(--muted); transition: color .2s;
}
.nav-primary a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; }
@media (max-width: 900px) {
  .nav-primary { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  }
  .menu-toggle svg { width: 18px; height: 18px; }
  .header.menu-open .nav-primary {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .header.menu-open .nav-primary a {
    padding: 14px 24px; font-size: 16px; color: var(--ink);
    border-top: 1px solid var(--line);
  }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease-out), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn .arr { display: inline-block; transition: transform .25s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { color: var(--ivory); border-color: rgba(251,248,243,0.3); }
.btn-ghost-light:hover { border-color: var(--ivory); background: rgba(251,248,243,0.06); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   SECTIONS
============================================================ */
section { padding: clamp(72px, 10vw, 80px) 0; border-bottom: 1px solid var(--line)}
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl); line-height: 1.05; letter-spacing: -0.015em;
  max-width: 22ch;
}
.section-head h2 em { color: var(--teal); font-style: italic; font-weight: 400; }
.section-head .lead {
  margin-top: 16px; max-width: 60ch;
  font-size: var(--text-lg); line-height: 1.5; color: var(--muted);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(72px, 9vw, 112px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-hero); line-height: 1.02; letter-spacing: -0.02em;
}
.hero-copy h1 em { color: var(--teal); font-style: italic; font-weight: 400; }
.hero-copy .lead {
  margin-top: 28px; max-width: 50ch;
  font-size: var(--text-lg); line-height: 1.55; color: var(--muted);
}
.hero-actions {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-meta {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 36px;
  font-size: 13px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .lbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.hero-meta .val { color: var(--ink); font-weight: 500; }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hero-visual:hover img { transform: scale(1.06); }
.hero-visual::after {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 38%; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(27,42,46,0.55) 75%, rgba(27,42,46,0.78) 100%);
}
.hero-visual .badge {
  position: absolute; top: 24px; left: 24px;
  background: color-mix(in oklab, var(--ivory) 92%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; color: var(--ink);
}
.hero-visual .signature {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 28px;
  color: var(--ivory); text-shadow: 0 2px 16px rgba(27,42,46,0.65);
}
.hero-visual .signature span {
  display: block; font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 4px; opacity: 0.85;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 3 / 4; max-height: 70vh; order: -1; }
  .hero-meta { gap: 24px; }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust {
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.trust-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: clamp(20px, 4vw, 48px); flex-wrap: wrap;
}
.trust-item {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  min-height: 44px;
}
.trust-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; color: var(--ink);
  line-height: 1; display: inline-flex; align-items: center;
  white-space: nowrap;
}
.trust-item .lbl { letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; font-weight: 600; line-height: 1.35; }
@media (max-width: 900px) {
  .trust-row { gap: 18px 28px; }
  .trust-item { flex: 1 1 calc(50% - 28px); min-height: 0; }
  .trust-item strong { font-size: 22px; }
}

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: auto auto -1px -1px;
  width: 56%; height: 56%;
  background: linear-gradient(180deg, transparent, rgba(27,42,46,0.15));
  pointer-events: none;
}
.about-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl); line-height: 1.05; letter-spacing: -0.015em;
}
.about-copy h2 em { color: var(--teal); font-style: italic; font-weight: 400; }
.about-copy p { margin-top: 20px; font-size: var(--text-lg); line-height: 1.6; color: var(--ink); opacity: 0.82; max-width: 56ch; }
.about-copy p + p { margin-top: 14px; }
.about-copy .quote {
  margin-top: 28px; padding: 24px 28px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4; color: var(--ink);
  background: var(--ivory);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-creds {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.cred {
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--ivory);
}
.cred .lbl {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.cred .val {
  margin-top: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; line-height: 1.1; color: var(--ink);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 60vh; }
}

/* ============================================================
   FULL-BLEED IMAGE STRIP
============================================================ */
.bleed {
  position: relative;
  max-height: 140vh;
  overflow: hidden;
  background: var(--ink);
  width: 100%;
}
.bleed img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
.bleed-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  background: linear-gradient(180deg, rgba(27,42,46,0.15), rgba(27,42,46,0.45));
}
.bleed-text p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.2;
  color: var(--ivory);
  max-width: 28ch;
  text-shadow: 0 2px 24px rgba(27,42,46,0.3);
}

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service {
  padding: 36px 32px;
  background: var(--ivory);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s var(--ease-out);
  position: relative;
}
.service:hover { background: var(--bone); }
.service .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold); font-size: 18px;
}
.service .icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--ivory);
  border-radius: 50%;
  margin-bottom: 8px;
}
.service .icon svg { width: 26px; height: 26px; }
.service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; line-height: 1.15;
}
.service h3 em { font-style: italic; color: var(--teal); }
.service p {
  font-size: 14px; line-height: 1.55; color: var(--muted);
}
.service .price {
  margin-top: auto; padding-top: 16px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.service .price strong { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 0; text-transform: none; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — 4 step timeline
============================================================ */
.process {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ''; position: absolute; inset: -10% -5% auto auto;
  width: 50%; height: 60%;
  background: radial-gradient(circle, rgba(182,144,74,0.10), transparent 60%);
  pointer-events: none;
}
.process .section-head h2 { color: var(--ivory); }
.process .section-head h2 em { color: var(--gold); }
.process .section-head .lead { color: rgba(251,248,243,0.7); }
.process .eyebrow { color: var(--gold); }

.process-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.process-image {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg);
}
.process-image img { width: 100%; height: 100%; object-fit: cover; }

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(251,248,243,0.15);
}
.step:last-child { border-bottom: 1px solid rgba(251,248,243,0.15); }
.step .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 36px; color: var(--gold);
  line-height: 1;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; line-height: 1.2; color: var(--ivory);
  margin-bottom: 8px;
}
.step p { color: rgba(251,248,243,0.7); font-size: 15px; line-height: 1.55; }
.step .duration {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-top: 10px;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CASES
============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-image {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--pearl);
}
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.case-card:hover .case-image img { transform: scale(1.05); }
.case-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-body .tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.case-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; line-height: 1.2;
}
.case-body p { font-size: 14px; line-height: 1.55; color: var(--muted); }
.case-meta {
  margin-top: auto; padding-top: 16px;
  display: flex; gap: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}
.case-meta strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial {
  padding: 32px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.testimonial .stars {
  color: var(--gold); letter-spacing: 4px; font-size: 13px;
}
.testimonial blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; line-height: 1.4;
  color: var(--ink);
}
.testimonial .who {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px;
}
.testimonial .who .name { color: var(--ink); font-weight: 600; white-space: nowrap; }
.testimonial .who .meta { color: var(--muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING / FAQ
============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.pricing h3, .faq h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; margin-bottom: 24px;
}
.pricing-list { display: flex; flex-direction: column; }
.pricing-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 20px 0;
  border-top: 1px solid var(--line);
}
.pricing-row:last-child { border-bottom: 1px solid var(--line); }
.pricing-row .name { font-size: 15px; color: var(--ink); }
.pricing-row .name small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.pricing-row .price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--teal); white-space: nowrap; }
.pricing-row .price small { font-size: 12px; color: var(--muted); margin-right: 4px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.faq-question .chev {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), background .3s, color .3s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-question .chev {
  transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--ink);
}
.faq-question .chev svg { width: 12px; height: 12px; }
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease-out);
}
.faq-answer > div { overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  padding: 0 0 22px;
  font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 60ch;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CONTACT / CTA
============================================================ */
.contact {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: -20% auto auto -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(182,144,74,0.12), transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  position: relative; z-index: 1;
}
.contact-copy .eyebrow { color: var(--gold); margin-bottom: 24px; }
.contact-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl); line-height: 1.05; color: var(--ivory);
}
.contact-copy h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.contact-copy .lead {
  margin-top: 20px; max-width: 50ch;
  font-size: var(--text-lg); line-height: 1.55; color: rgba(251,248,243,0.75);
}
.contact-info {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.contact-info-item {
  padding: 18px; border-radius: var(--r-md);
  background: rgba(251,248,243,0.04);
  border: 1px solid rgba(251,248,243,0.10);
}
.contact-info-item .lbl {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.contact-info-item .val {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--ivory); line-height: 1.2;
}
.contact-info-item .val a { transition: color .2s; }
.contact-info-item .val a:hover { color: var(--gold); }

/* Form */
.form-card {
  background: rgba(251,248,243,0.04);
  border: 1px solid rgba(251,248,243,0.12);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--ivory); margin-bottom: 6px;
}
.form-card .sub { color: rgba(251,248,243,0.6); font-size: 14px; margin-bottom: 24px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(251,248,243,0.55);
  font-weight: 600; margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(251,248,243,0.04);
  color: var(--ivory);
  border: 1px solid rgba(251,248,243,0.18);
  border-radius: 8px;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(251,248,243,0.07);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(251,248,243,0.35); }
.form-row textarea { min-height: 80px; resize: vertical; }
.form-row select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(251,248,243,0.5) 50%), linear-gradient(135deg, rgba(251,248,243,0.5) 50%, transparent 50%); background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }

.form-card .btn-gold { width: 100%; justify-content: center; margin-top: 8px; }
.form-card .legal {
  margin-top: 14px;
  font-size: 11px; line-height: 1.5; color: rgba(251,248,243,0.5);
  text-align: center;
}
.form-card .legal a { color: rgba(251,248,243,0.7); text-decoration: underline; text-underline-offset: 2px; }

.form-success {
  display: none;
  text-align: center; padding: 24px 0;
}
.form-success.is-shown { display: block; }
.form-success .check {
  width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
}
.form-success h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--ivory); margin-bottom: 6px;
}
.form-success p { color: rgba(251,248,243,0.7); font-size: 14px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bone);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 36px;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--ink); transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-brand p {
  margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 36ch; line-height: 1.55;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   REVEAL ON SCROLL
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(16px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* Print niceties (just in case) */
@media print {
  .header, .contact, .form-card { display: none; }
}
