:root {
  --background: oklch(0.973 0.005 80);
  --foreground: oklch(0.18 0.005 0);
  --card: oklch(1 0 0);
  --primary: oklch(0.745 0.04 40);
  --primary-foreground: oklch(1 0 0);
  --muted-foreground: oklch(0.555 0.018 40);
  --destructive: oklch(0.577 0.245 27.325);
  --border: oklch(0.92 0.012 40);
  --blush: oklch(0.945 0.012 40);
  --rose: oklch(0.745 0.04 40);
  --taupe: oklch(0.555 0.018 40);
  --shadow-soft: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-softer: 0 1px 8px rgba(0, 0, 0, 0.04);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 500;
}
p { margin: 0; }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--taupe);
  margin-bottom: 1rem;
}
.eyebrow .line { display: block; height: 1px; width: 2rem; background: var(--rose); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--rose);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  border: 1px solid color-mix(in oklab, var(--rose) 50%, transparent);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--blush); }

/* Icons */
.icon { width: 1rem; height: 1rem; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }

/* ============== Navbar ============== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .navbar-inner { height: 5rem; padding: 0 2.5rem; }
}
.logo { display: flex; flex-direction: column; min-width: 0; line-height: 1.1; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  color: var(--foreground);
}
.logo-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--taupe);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .logo-name { font-size: 1.25rem; }
  .logo-tag { font-size: 10px; letter-spacing: 0.25em; }
}
@media (min-width: 1024px) {
  .logo-name { font-size: 1.5rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--taupe);
  transition: color 0.3s ease;
  padding-bottom: 0.25rem;
}
.nav-link:hover, .nav-link.active { color: var(--foreground); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-link.active::after { width: 100%; }

.nav-cta { display: none; padding: 0.625rem 1.5rem; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  margin-right: -0.5rem;
  border-radius: 9999px;
  color: var(--foreground);
  transition: background 0.2s ease;
}
.menu-btn:hover { background: var(--blush); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--foreground) 45%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20rem;
  max-width: 88%;
  display: flex;
  flex-direction: column;
  background: color-mix(in oklab, var(--background) 90%, transparent);
  border-left: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (min-width: 640px) { .drawer { padding: 2rem; } }
.drawer-backdrop.open .drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--card) 70%, transparent);
  color: var(--foreground);
  box-shadow: var(--shadow-softer);
  transition: background 0.2s ease;
}
.drawer-close:hover { background: var(--blush); }
.drawer-divider { height: 1px; width: 100%; background: color-mix(in oklab, var(--border) 60%, transparent); margin: 1.5rem 0; }
.drawer-list { display: flex; flex-direction: column; gap: 0.5rem; }
.drawer-link {
  display: block;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--card) 60%, transparent);
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--foreground);
  transition: all 0.3s ease;
}
.drawer-link:hover {
  border-color: color-mix(in oklab, var(--rose) 30%, transparent);
  background: var(--blush);
  color: var(--rose);
}
.drawer-link.active {
  border-color: color-mix(in oklab, var(--rose) 40%, transparent);
  background: var(--blush);
  color: var(--foreground);
  box-shadow: var(--shadow-softer);
}
.drawer-cta {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  width: 100%;
}
.drawer-phone {
  margin-top: 1rem;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--taupe);
}

/* ============== Hero ============== */
.hero {
  position: relative;
  border-bottom: 1px solid var(--blush);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2.5rem; padding: 3rem 0; }
}
@media (min-width: 1024px) {
  .hero-grid { padding: 4rem 0; }
}
.hero-text { display: flex; flex-direction: column; justify-content: center; order: 2; }
@media (min-width: 768px) { .hero-text { order: 1; grid-column: span 7; } }
.hero-title {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin: 0;
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-title em { font-style: italic; color: var(--rose); }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-lead {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--taupe);
}
@media (min-width: 768px) { .hero-lead { font-size: 1.125rem; } }
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero-image-wrap { position: relative; order: 1; }
@media (min-width: 768px) { .hero-image-wrap { order: 2; grid-column: span 5; } }
.hero-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .hero-image { aspect-ratio: 4 / 5; } }
.hero-image img { height: 100%; width: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 16.25rem;
  padding: 1rem 1.25rem;
  background: var(--background);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .hero-badge { left: -2.5rem; } }
.hero-badge p { font-size: 0.75rem; line-height: 1.35; color: var(--foreground); }
.hero-badge p strong { font-weight: 500; }
.hero-badge .icon { color: var(--rose); width: 1.25rem; height: 1.25rem; }

/* ============== TrustBar ============== */
.trustbar { background: var(--blush); }
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .trustbar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding-top: 3rem; padding-bottom: 3rem; }
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item .icon { color: var(--rose); width: 1.25rem; height: 1.25rem; stroke-width: 1.5; }
.trust-item span { font-size: 0.875rem; letter-spacing: 0.02em; color: var(--foreground); }

/* ============== Section header ============== */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-head { max-width: 42rem; margin-bottom: 4rem; }
.section-head h2 {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--foreground);
}
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-head p { margin-top: 1rem; font-size: 1rem; color: var(--taupe); }
@media (min-width: 768px) { .section-head p { font-size: 1.125rem; } }

/* ============== Services ============== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--blush);
  border-radius: 2px;
  padding: 2rem;
  box-shadow: var(--shadow-softer);
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--rose);
}
.service-card .icon { color: var(--rose); width: 1.75rem; height: 1.75rem; stroke-width: 1.4; }
.service-card h3 {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--foreground);
}
.service-card p {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--taupe);
}
.service-card-foot {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in oklab, var(--rose) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-duration { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--taupe); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--foreground);
  transition: color 0.3s ease;
}
.service-link .icon { width: 0.875rem; height: 0.875rem; transition: transform 0.3s ease; }
.service-card:hover .service-link { color: var(--rose); }
.service-card:hover .service-link .icon { transform: translate(2px, -2px); }

/* ============== About ============== */
.about { background: color-mix(in oklab, var(--blush) 40%, var(--background)); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
.about-photo-wrap { display: flex; justify-content: center; }
@media (min-width: 768px) { .about-photo-wrap { grid-column: span 5; } }
.about-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 18rem;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .about-photo { width: 100%; max-width: 28rem; } }
.about-photo img { height: 100%; width: 100%; object-fit: cover; }
.about-text { display: flex; flex-direction: column; }
@media (min-width: 768px) { .about-text { grid-column: span 7; } }
.about-text h2 {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--foreground);
}
@media (min-width: 768px) { .about-text h2 { font-size: 3rem; } }
.about-text > p {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--taupe);
}
@media (min-width: 768px) { .about-text > p { font-size: 1.125rem; } }
.stats {
  margin-top: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid color-mix(in oklab, var(--rose) 20%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--rose) 20%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat-value { font-family: var(--serif); font-size: 1.875rem; color: var(--rose); }
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--taupe); }
.about-quote {
  position: relative;
  margin: 2.5rem 0 0;
  max-width: 36rem;
  padding-left: 2rem;
  border-left: none;
}
.about-quote .icon { position: absolute; left: -4px; top: 0; color: var(--rose); width: 1.5rem; height: 1.5rem; }
.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--foreground);
}
@media (min-width: 768px) { .about-quote p { font-size: 1.25rem; } }

/* ============== Pricing ============== */
.pricing-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 768px) { .pricing-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; } }
.price-col h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--foreground); }
.price-list { margin-top: 1.5rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid color-mix(in oklab, var(--rose) 15%, transparent);
  transition: background 0.3s ease;
}
.price-row:hover { background: color-mix(in oklab, var(--blush) 60%, var(--background)); }
.price-name { font-size: 0.875rem; color: var(--foreground); }
@media (min-width: 768px) { .price-name { font-size: 1rem; } }
.price-amount { font-size: 0.875rem; letter-spacing: 0.02em; color: var(--rose); white-space: nowrap; }
@media (min-width: 768px) { .price-amount { font-size: 1rem; } }
.price-note { margin-top: 4rem; max-width: 42rem; font-size: 0.875rem; font-style: italic; color: var(--taupe); }

/* ============== Testimonials ============== */
.testimonials { background: var(--blush); }
.testimonials-grid {
  display: flex;
  gap: 1.5rem;
  margin: 0 -1.5rem;
  padding: 0 1.5rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
@media (min-width: 768px) {
  .testimonials-grid {
    margin: 0;
    padding: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}
.testimonial-card {
  position: relative;
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: center;
  background: var(--background);
  border-radius: 2px;
  padding: 2.25rem;
  box-shadow: var(--shadow-softer);
}
@media (min-width: 768px) { .testimonial-card { width: auto; } }
.testimonial-mark { font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: var(--rose); }
.testimonial-text { margin-top: -1rem; font-size: 1rem; line-height: 1.6; color: var(--foreground); }
.testimonial-foot {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in oklab, var(--rose) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-name { font-family: var(--serif); font-size: 1.125rem; color: var(--foreground); }
.stars { display: flex; gap: 2px; }
.stars .icon { width: 14px; height: 14px; color: var(--rose); fill: var(--rose); stroke: var(--rose); }

/* ============== Booking CTA ============== */
.booking { background: var(--foreground); color: var(--background); padding: 6rem 0; }
@media (min-width: 768px) { .booking { padding: 8rem 0; } }
.booking-inner { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
@media (min-width: 768px) { .booking-inner { padding: 0 2.5rem; } }
.booking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--rose);
  margin-bottom: 1.5rem;
}
.booking-eyebrow .line { display: block; height: 1px; width: 2rem; background: var(--rose); }
.booking h2 {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--background);
}
@media (min-width: 768px) { .booking h2 { font-size: 3.75rem; } }
.booking-lead {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in oklab, var(--background) 70%, transparent);
}
@media (min-width: 768px) { .booking-lead { font-size: 1.125rem; } }
.booking-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .booking-actions { flex-direction: row; justify-content: center; } }
.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.booking-btn-primary { background: var(--rose); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.booking-btn-primary:hover { opacity: 0.9; }
.booking-btn-outline {
  border: 1px solid color-mix(in oklab, var(--background) 30%, transparent);
  color: var(--background);
}
.booking-btn-outline:hover { background: color-mix(in oklab, var(--background) 10%, transparent); }
.booking-foot {
  margin-top: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: color-mix(in oklab, var(--background) 50%, transparent);
}

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; } }
.contact-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--taupe);
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in oklab, var(--taupe) 60%, transparent); }
.field input:focus, .field textarea:focus { border-color: var(--rose); }
.field textarea { min-height: 120px; resize: none; }
.field-error { margin-top: 0.25rem; font-size: 0.75rem; color: var(--destructive); }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.submit-btn {
  align-self: flex-start;
  background: var(--rose);
  color: var(--primary-foreground);
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.submit-btn:hover { opacity: 0.9; }

.contact-success {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--blush);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-softer);
}
.contact-success .icon { margin-top: 2px; color: var(--rose); width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.contact-success p:first-child { font-family: var(--serif); font-size: 1.125rem; color: var(--foreground); }
.contact-success p + p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--taupe); }

.info-card {
  background: color-mix(in oklab, var(--blush) 60%, var(--background));
  border-radius: 2px;
  padding: 2rem;
  box-shadow: var(--shadow-softer);
}
@media (min-width: 768px) { .info-card { padding: 2.5rem; } }
.info-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--foreground); }
.info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; font-size: 0.875rem; }
.info-row { display: flex; gap: 1rem; }
.info-row .icon { margin-top: 2px; color: var(--rose); width: 1.25rem; height: 1.25rem; flex-shrink: 0; stroke-width: 1.5; }
.info-row .label-small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}
.info-row .hours { display: flex; flex-direction: column; gap: 0.25rem; }
.info-row .body-text { color: var(--foreground); }
.map-wrap { margin-top: 1.5rem; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 2px; box-shadow: var(--shadow-softer); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============== Footer ============== */
.footer { border-top: 1px solid var(--blush); background: var(--background); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 4rem 2.5rem; } }
.footer-name { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.18em; color: var(--foreground); }
.footer-tag { margin-top: 0.75rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--taupe); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: flex-start; }
@media (min-width: 768px) { .footer-links { justify-content: center; } }
.footer-links a { font-size: 0.875rem; color: var(--taupe); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--rose); }
.footer-social { }
@media (min-width: 768px) { .footer-social { text-align: right; } }
.footer-social-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--taupe); }
.footer-social-icons { margin-top: 1rem; display: flex; gap: 0.75rem; }
@media (min-width: 768px) { .footer-social-icons { justify-content: flex-end; } }
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--taupe);
  transition: all 0.3s ease;
}
.footer-social-icons a:hover { border-color: var(--rose); color: var(--rose); }
.footer-bottom { border-top: 1px solid var(--blush); }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--taupe);
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.5rem 2.5rem; }
}

/* Fade-in observer */
.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .fade-in-section { opacity: 1; transform: none; }
}
