:root {
  --rose-50:  #fdf2f5;
  --rose-100: #fce7ec;
  --rose-200: #f9cfd9;
  --rose-400: #e58aa1;
  --rose-500: #d96d8a;
  --rose-600: #c14d6e;
  --rose-700: #9c3a57;
  --ink-900:  #1a1216;
  --ink-700:  #4a3c43;
  --ink-500:  #7a6b72;
  --ink-300:  #c8bfc4;
  --bg:       #fffafb;
  --white:    #ffffff;
  --shadow-sm: 0 1px 2px rgba(26, 18, 22, 0.06), 0 2px 6px rgba(26, 18, 22, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 18, 22, 0.08), 0 8px 24px rgba(26, 18, 22, 0.06);
  --radius:   14px;
  --maxw:     1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-700); }

a { color: var(--rose-600); text-decoration: none; }
a:hover { color: var(--rose-700); }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--rose-600);
  margin: 0 0 .8em;
}
.eyebrow.center, .section-title.center { text-align: center; }

.section-title { margin-bottom: .4em; }
.section-sub  { color: var(--ink-500); max-width: 620px; margin-bottom: 2.5rem; }
.section-sub.center, .center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.01em;
  transition: all .2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--rose-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-300);
}
.btn-ghost:hover {
  border-color: var(--ink-900);
  color: var(--ink-900);
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 251, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--rose-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.logo span { color: var(--rose-600); font-style: italic; font-weight: 600; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
}
.nav a:hover { color: var(--rose-600); }

@media (max-width: 720px) {
  .nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 80% 0%, var(--rose-100) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, var(--rose-50) 0%, transparent 50%),
    var(--bg);
  padding: 80px 0 100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: .5em; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 520px;
  margin: 0 0 2rem;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: var(--ink-500);
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid var(--rose-200);
  border-radius: var(--radius);
  z-index: -1;
  transform: rotate(-4deg);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 360px; margin: 0 auto; transform: none; }
  .hero-image::after { display: none; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-meta { justify-content: center; }
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--rose-50) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 2rem;
}
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-grid figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Services ---------- */
.services { padding: 90px 0; }
.services .section-title, .services .eyebrow, .services .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 1rem;
}
.service-card {
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-200);
}
.service-card h3 { margin-bottom: 8px; color: var(--ink-900); }
.service-card p  { margin: 0; color: var(--ink-500); font-size: .94rem; }

/* ---------- About ---------- */
.about {
  background: linear-gradient(180deg, var(--rose-50) 0%, var(--bg) 100%);
  padding: 90px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-700);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--rose-600);
  color: var(--white);
  border-radius: 50%;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.about-stats {
  display: grid;
  gap: 16px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rose-100);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rose-600);
  line-height: 1;
}
.stat-num span { font-size: 1.4rem; margin-left: 4px; }
.stat-label {
  margin-top: 6px;
  font-size: .9rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.review {
  background: var(--white);
  border-left: 3px solid var(--rose-500);
  padding: 28px 30px;
  margin: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.review p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-900);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.review cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--ink-500);
  letter-spacing: 0.05em;
}

/* ---------- Hours + Visit ---------- */
.hours-visit {
  background: var(--white);
  padding: 90px 0 0;
  border-top: 1px solid var(--rose-100);
}
.hours-visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 820px) {
  .hours-visit-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--rose-100);
  color: var(--ink-700);
}
.hours-table td:first-child { font-weight: 500; color: var(--ink-900); }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }

.address { font-size: 1.05rem; color: var(--ink-900); margin-bottom: .4rem; }
.phone { font-size: 1.4rem; font-weight: 600; margin-bottom: 1.5rem; }

.map-wrap {
  width: 100%;
  height: 380px;
  background: var(--rose-50);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Final CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--rose-600) 0%, var(--rose-700) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta h2 { color: var(--white); margin-bottom: .3em; }
.cta p  { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 1.8rem; }
.cta .btn-primary {
  background: var(--white);
  color: var(--rose-700);
}
.cta .btn-primary:hover {
  background: var(--rose-50);
  color: var(--rose-700);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.75);
  padding: 50px 0 30px;
}
.site-footer .logo { color: var(--white); }
.site-footer p { color: rgba(255,255,255,.6); margin: .3rem 0; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--white); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
}
.footer-meta { font-size: .85rem; }
