/* ═══════════════════════════════════════════════════════════════════════════
   INA'S BEAUTYLOUNGE — Stylesheet
   Farben: Roségold + Cream + Champagne + Mauve
═══════════════════════════════════════════════════════════════════════════ */

:root {
  --cream: #FBF7F2;
  --champagne: #F2E8DD;
  --mauve: #B7806E;
  --rose-deep: #8C5A4D;
  --rose-soft: #C9A4A0;
  --gold: #B8956A;
  --gold-light: #D9BE99;
  --ink: #3D2E2A;
  --ink-soft: #6B5751;
  --ink-mute: #998880;
  --line: rgba(143, 109, 91, 0.12);
  --line-strong: rgba(143, 109, 91, 0.28);
  --white: #FFFFFF;
  --shadow-soft: 0 6px 32px rgba(94, 60, 40, 0.10);
  --shadow-strong: 0 16px 60px rgba(94, 60, 40, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mauve); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rose-deep); }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -0.005em; color: var(--ink); }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.italic { font-style: italic; }
.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.script { font-family: 'Dancing Script', cursive; color: var(--mauve); font-weight: 600; }

/* ═══ HEADER ═══ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.01em;
}
.logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--gold-light); }
.logo .logo-sub { font-size: 11px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  color: var(--ink); font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em;
  position: relative; padding: 4px 0;
}
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--mauve); transform: scaleX(0); transform-origin: center; transition: transform .25s; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .btn-cta {
  background: var(--mauve); color: white; padding: 10px 22px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; transition: all .2s;
}
.nav .btn-cta:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.nav .btn-cta::after { display: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--ink); }

@media (max-width: 880px) {
  .header-inner { padding: 14px 20px; }
  .menu-toggle { display: block; }
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; gap: 18px; box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  background: linear-gradient(135deg, #FCF5EF 0%, #F4E5D8 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 80% 20%, rgba(184, 149, 106, 0.18) 0%, transparent 60%),
                    radial-gradient(ellipse at 20% 80%, rgba(183, 128, 110, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(40px, 6vw, 78px);
  margin: 18px 0 24px;
}
.hero-text h1 em { font-family: 'Dancing Script', cursive; color: var(--mauve); font-style: normal; font-weight: 600; font-size: 0.85em; }
.hero-text p {
  font-size: 18px; color: var(--ink-soft); max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.05em;
  border: none; transition: all .25s;
}
.btn-primary { background: var(--mauve); color: white; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.hero-image {
  position: relative;
  aspect-ratio: 4/5; border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 28px; left: -28px;
  background: var(--white); padding: 18px 24px;
  border-radius: 14px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.hero-badge-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.hero-badge-text { font-size: 13px; }
.hero-badge-text strong { display: block; color: var(--ink); font-weight: 700; }
.hero-badge-text span { color: var(--ink-mute); }

.hero-nail-tile {
  position: absolute; top: 28px; right: 24px;
  width: 180px; height: 230px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--white);
  z-index: 2;
  transform: rotate(4deg);
  display: flex; flex-direction: column;
}
.hero-nail-tile img {
  width: 100%; height: 100%; object-fit: cover;
  flex: 1; min-height: 0;
}
.hero-nail-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  text-align: center;
  padding: 22px 8px 10px;
}

.hero-trust {
  margin-top: 44px;
  display: flex; gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.hero-trust-item { display: flex; gap: 12px; align-items: flex-start; }
.hero-trust-item .ico {
  font-size: 22px; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--champagne); color: var(--mauve);
  display: flex; align-items: center; justify-content: center;
}
.hero-trust-item .label { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; text-transform: uppercase; }
.hero-trust-item strong { display: block; font-size: 14px; color: var(--ink); margin-top: 2px; }

@media (max-width: 880px) {
  .hero { padding: 50px 20px 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { border-radius: 100px 100px 12px 12px; }
  .hero-badge { left: 12px; bottom: 18px; padding: 12px 16px; }
  .hero-nail-tile { top: 16px; right: 24px; width: 135px; height: 170px; }
  .hero-nail-label { font-size: 10px; padding: 18px 6px 8px; }
}

/* ═══ SECTIONS ═══ */
.section { padding: 100px 32px; }
.section-narrow { padding: 80px 32px; }
.container { max-width: 1280px; margin: 0 auto; }
.container-tight { max-width: 980px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(34px, 4.5vw, 56px); margin: 16px 0 20px; }
.section-head p { font-size: 17px; color: var(--ink-soft); max-width: 620px; margin: 0 auto; }

/* ═══ SERVICES GRID ═══ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: all .35s;
  border: 1px solid var(--line);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: var(--gold-light); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px 26px 30px; }
.service-card h3 { font-size: 26px; margin-bottom: 8px; }
.service-card .price { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.service-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.service-card a { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mauve); display: inline-flex; align-items: center; gap: 6px; }
.service-card a:hover { color: var(--rose-deep); }

/* ═══ ABOUT SECTION ═══ */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
  padding: 100px 32px;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 12px; box-shadow: var(--shadow-strong); }
.about-img-deco {
  position: absolute; inset: 0;
  border: 2px solid var(--gold-light); border-radius: 12px;
  transform: translate(20px, 20px); z-index: -1;
}
.about-img-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(61, 46, 42, 0.85);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}
.about-text h2 { font-size: clamp(36px, 5vw, 60px); margin: 14px 0 26px; }
.about-text p { font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; }
.about-text .signature { font-family: 'Dancing Script', cursive; color: var(--mauve); font-size: 36px; margin-top: 24px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line-strong); }
.about-stat strong { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--mauve); display: block; line-height: 1; }
.about-stat span { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; display: block; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ═══ GALLERY (Index Preview) ═══ */
.gallery-preview {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-preview .item {
  aspect-ratio: 3/4; border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-preview .item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gallery-preview .item:hover img { transform: scale(1.08); }
.gallery-preview .item.tall { grid-row: span 2; aspect-ratio: 3/8; }
.gallery-cta { text-align: center; margin-top: 40px; }

@media (max-width: 880px) { .gallery-preview { grid-template-columns: repeat(2, 1fr); } .gallery-preview .item.tall { grid-row: span 1; aspect-ratio: 3/4; } }

/* ═══ TESTIMONIALS ═══ */
.testimonials { background: var(--ink); color: white; padding: 110px 32px; }
.testimonials .section-head h2 { color: white; }
.testimonials .section-head p { color: rgba(255,255,255,0.7); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '"'; font-family: 'Cormorant Garamond', serif;
  font-size: 90px; color: var(--gold); line-height: 1;
  position: absolute; top: 8px; left: 22px;
  opacity: 0.5;
}
.testimonial-text { font-style: italic; color: rgba(255,255,255,0.92); margin: 30px 0 24px; font-size: 16px; line-height: 1.7; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
.testimonial-author .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-soft), var(--gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.testimonial-author .name { font-weight: 600; color: white; font-size: 14px; }
.testimonial-author .meta { font-size: 12px; color: rgba(255,255,255,0.55); }
.testimonial .stars { color: var(--gold); margin-bottom: 10px; }

@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ═══ CTA STRIP ═══ */
.cta-strip {
  padding: 90px 32px;
  background: linear-gradient(135deg, var(--mauve), var(--rose-deep));
  color: white; text-align: center;
}
.cta-strip h2 { color: white; font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.cta-strip p { font-size: 18px; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 32px; }
.cta-strip .btn-primary { background: white; color: var(--rose-deep); }
.cta-strip .btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 70px 32px 30px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; font-weight: 700; }
.footer-brand .logo-line { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .logo-line img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand .logo-line strong { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: white; font-weight: 500; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a, .footer-info a { color: rgba(255,255,255,0.78); font-size: 14px; transition: color .2s; }
.footer ul li a:hover, .footer-info a:hover { color: white; }
.footer-info p { font-size: 14px; line-height: 1.8; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: inherit; }
.powered { font-style: italic; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ═══ STICKY WHATSAPP FAB ═══ */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform .25s, box-shadow .25s;
}
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); color: white; }
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-whatsapp::after {
  content: 'Termin per WhatsApp';
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: white; padding: 8px 14px;
  border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.fab-whatsapp:hover::after { opacity: 1; }
@media (max-width: 600px) { .fab-whatsapp::after { display: none; } }

/* ═══ PAGE HEADER (Sub-Pages) ═══ */
.page-header {
  background: linear-gradient(135deg, #FCF5EF 0%, #F4E5D8 100%);
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at center, rgba(184, 149, 106, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 { font-size: clamp(46px, 6vw, 80px); margin: 14px 0 18px; position: relative; }
.page-header p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 17px; position: relative; }
.breadcrumbs { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; position: relative; }
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs a:hover { color: var(--mauve); }

/* ═══ LEISTUNGEN PAGE ═══ */
.leistungen-list {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 60px;
}
.leistung-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.leistung-row:nth-child(even) { direction: rtl; }
.leistung-row:nth-child(even) > * { direction: ltr; }
.leistung-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-strong); }
.leistung-img img { width: 100%; height: 100%; object-fit: cover; }
.leistung-content h2 { font-size: clamp(34px, 4.5vw, 52px); margin: 14px 0 18px; }
.leistung-content > p { color: var(--ink-soft); font-size: 16px; margin-bottom: 26px; line-height: 1.75; }
.leistung-prices { background: var(--white); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.leistung-prices h4 { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 700; }
.leistung-prices ul { list-style: none; }
.leistung-prices li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.leistung-prices li:last-child { border-bottom: none; }
.leistung-prices li .label { color: var(--ink); font-weight: 500; }
.leistung-prices li .price { color: var(--mauve); font-weight: 700; font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.leistung-note { font-size: 12px; color: var(--ink-mute); margin-top: 14px; font-style: italic; }

@media (max-width: 880px) {
  .leistung-row, .leistung-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; gap: 30px; }
  .leistungen-list { gap: 70px; }
}

/* ═══ GALERIE PAGE ═══ */
.gallery-tabs {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto 50px; padding: 0 32px;
}
.gallery-tab {
  padding: 10px 22px; border-radius: 999px;
  background: white; border: 1px solid var(--line); color: var(--ink);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: all .2s;
}
.gallery-tab:hover { border-color: var(--mauve); color: var(--mauve); }
.gallery-tab.active { background: var(--mauve); color: white; border-color: var(--mauve); }
.gallery-masonry {
  max-width: 1280px; margin: 0 auto; padding: 0 32px 80px;
  columns: 4; column-gap: 14px;
}
.gallery-masonry .item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: 8px; overflow: hidden;
  cursor: pointer; transition: opacity .25s;
  display: block;
}
.gallery-masonry .item img { width: 100%; height: auto; display: block; transition: transform .8s; }
.gallery-masonry .item:hover img { transform: scale(1.03); }
.gallery-masonry .item.hidden { display: none; }
@media (max-width: 1100px) { .gallery-masonry { columns: 3; } }
@media (max-width: 700px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 2; } }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.1); color: white; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; cursor: pointer; }

/* ═══ KONTAKT PAGE ═══ */
.contact-grid {
  max-width: 1280px; margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info h2 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 24px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 36px; font-size: 16px; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all .2s; color: inherit;
}
.contact-card:hover { border-color: var(--mauve); transform: translateY(-2px); box-shadow: var(--shadow-soft); color: inherit; }
.contact-card .ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--champagne); color: var(--mauve);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 22px;
}
.contact-card h4 { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.contact-card strong { font-size: 17px; color: var(--ink); display: block; font-weight: 600; }
.contact-card span { font-size: 13px; color: var(--ink-mute); display: block; margin-top: 4px; }

.contact-form { background: white; border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.contact-form h3 { font-size: 28px; margin-bottom: 8px; }
.contact-form > p { font-size: 14px; color: var(--ink-mute); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 14px; font-size: 14px; color: var(--ink);
  font-family: inherit; transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--mauve); background: white; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; background: var(--mauve); color: white; border: none; border-radius: 999px; font-weight: 600; letter-spacing: 0.05em; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: var(--rose-deep); }

.map-section { padding: 0 0 80px; }
.map-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.map-wrap iframe { width: 100%; height: 460px; border-radius: var(--radius); border: 1px solid var(--line); display: block; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; padding: 50px 20px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══ FAQ ═══ */
.faq { max-width: 800px; margin: 0 auto; padding: 80px 32px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ink);
  font-weight: 600;
}
.faq-q::after { content: '+'; font-size: 28px; color: var(--mauve); transition: transform .25s; font-weight: 300; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 12px 0 6px; color: var(--ink-soft);
  font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .8s ease-out both; }
.fade-up-d2 { animation: fadeUp .8s ease-out .15s both; }
.fade-up-d3 { animation: fadeUp .8s ease-out .3s both; }
