:root {
  --pearl: #f6f1ea;
  --ivory: #fffaf6;
  --gold: #b08a5b;
  --gold-deep: #8a6840;
  --ink: #1a1612;
  --muted: #6b635b;
  --sage: #4f6f68;
  --line: rgba(176, 138, 91, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

.serif { font-family: "Cormorant Garamond", serif; }

.pearl-page {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(176, 138, 91, 0.14), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(79, 111, 104, 0.08), transparent 50%),
    linear-gradient(180deg, #fbf7f2 0%, #fffaf6 40%, #f3eee7 100%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.nav-blur {
  background: rgba(255, 250, 246, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nap-bar {
  background: #1a1612;
  color: #f6f1ea;
}

.nap-bar a { color: #e4c9a4; }

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn-gold {
  background: linear-gradient(180deg, #c4a06f 0%, #9b7547 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(138, 104, 64, 0.28);
}

.btn-gold:hover { filter: brightness(1.05); }

.card-pearl {
  background: rgba(255, 252, 249, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(26, 22, 18, 0.06);
}

.visit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .visit-row {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .visit-row > * {
    min-height: 32rem;
  }
}

.map-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: var(--ivory);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 138, 91, 0.5);
}

input, select, textarea {
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(176, 138, 91, 0.15);
}

.hero-tooth {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-tooth { animation: none; }
}
