/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ivory: #FBF9F5;
  --ivory-warm: #F5EFE6;
  --teal-deep: #10322E;
  --teal-mid: #1E5C53;
  --mint: #D3E9DE;
  --mint-soft: #E7F2EA;
  --coral: #E1735F;
  --coral-deep: #C85A48;
  --gold: #C9A15A;
  --ink: #16211E;
  --ink-soft: #4B5B56;
  --line: rgba(16, 50, 46, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 14px 40px -18px rgba(16, 50, 46, 0.35);
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 96px 0; }

@media (max-width: 720px) {
  section { padding: 64px 0; }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-block;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ============================================================
   SIGNATURE ELEMENT — the smile arc
   A single hand-drawn curve used as underline / divider,
   echoing the shape of a smile without resorting to tooth clipart.
   ============================================================ */
.smile-arc {
  width: 84px;
  height: 20px;
  margin: 0 auto;
}
.smile-arc.left { margin: 18px 0 0; }
.smile-arc path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw-smile 1.1s ease forwards;
}
@keyframes draw-smile {
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 3px; }

.btn-primary {
  background: var(--coral);
  color: var(--ivory);
  box-shadow: 0 10px 26px -12px rgba(225, 115, 95, 0.65);
}
.btn-primary:hover { background: var(--coral-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.btn-ghost:hover { background: var(--teal-deep); color: var(--ivory); }

.btn-light {
  background: var(--ivory);
  color: var(--teal-deep);
}
.btn-light:hover { background: var(--mint-soft); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal-deep);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-deep);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 74px; left: 0; right: 0; background: var(--ivory);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 28px 20px;
    border-bottom: 1px solid var(--line); transform: translateY(-8px); opacity: 0;
    pointer-events: none; transition: transform 0.22s ease, opacity 0.22s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 76px 0 90px;
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--mint-soft), transparent 60%),
    var(--ivory);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--coral-deep);
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.trust-item .stat {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-deep);
  display: block;
}
.trust-item .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero-card {
  background: var(--teal-deep);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(211,233,222,0.18), transparent 70%);
  top: -60px; right: -60px;
  border-radius: 50%;
}
.hero-card h3 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.hero-card-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(251,249,245,0.14);
}
.hero-card-row:first-of-type { border-top: none; }
.hero-card-row .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(211,233,222,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-row .icon svg { width: 18px; height: 18px; stroke: var(--mint); }
.hero-card-row .txt strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.hero-card-row .txt span { font-size: 0.85rem; color: rgba(251,249,245,0.72); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--ivory-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--mint) 0%, var(--mint-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-portrait .initials {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal-deep);
  opacity: 0.85;
}
.about-copy h2 { margin-bottom: 8px; }
.about-copy p { color: var(--ink-soft); margin-top: 18px; font-size: 1.04rem; }

.testimonial-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.testimonial-list li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--teal-mid);
  padding-left: 18px;
  border-left: 2px solid var(--coral);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   VISIT / HOURS + MAP
   ============================================================ */
.visit {
  background: var(--teal-deep);
  color: var(--ivory);
}
.visit .section-head h2 { color: var(--ivory); }
.visit .section-head p { color: rgba(251,249,245,0.72); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 780px) {
  .visit-grid { grid-template-columns: 1fr; }
}
.visit-card {
  background: rgba(251,249,245,0.06);
  border: 1px solid rgba(251,249,245,0.14);
  border-radius: var(--radius);
  padding: 32px;
}
.visit-card h3 {
  color: var(--mint);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 16px;
}
.visit-card .big {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.visit-card p { color: rgba(251,249,245,0.78); }
.visit-card .btn { margin-top: 20px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p {
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto 30px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ivory-warm);
  border-top: 1px solid var(--line);
  padding: 46px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-deep);
}
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.mobile-call-bar {
  display: none;
}
@media (max-width: 640px) {
  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-call-bar .btn { flex: 1; justify-content: center; }
  body { padding-bottom: 64px; }
}
