:root {
  --cream: #FBF6F1;
  --white: #FFFFFF;
  --blush: #D98A86;
  --blush-dark: #C4726E;
  --rose-deep: #5C3A38;
  --rose-mid: #A4726F;
  --rose-soft: #8A625F;
  --sand: #EFE0D6;
  --pill: #F3E2DD;
  --line: #E9D5CF;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', Arial, sans-serif;
  background: var(--cream);
  color: var(--rose-deep);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--rose-deep);
}

h1 { font-size: clamp(2rem, 6vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: 1.2rem; }

a { color: var(--blush-dark); text-decoration: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1080px; margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem; color: var(--rose-deep); letter-spacing: 0.5px;
}
.logo span { color: var(--blush-dark); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a { color: var(--rose-soft); font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); }
.btn {
  display: inline-block; background: var(--blush); color: #FFF7F4;
  padding: 11px 24px; border-radius: 999px; font-weight: 700;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--blush-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--rose-deep);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { background: var(--pill); border-color: var(--pill); }
.btn-small { padding: 8px 16px; font-size: 0.85rem; }
.nav-cta { margin-left: 4px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--rose-deep);
  margin: 5px auto; border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Hero ---------- */
.hero { padding: 40px 0 24px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.hero-media img {
  border-radius: 24px; width: 100%; height: 420px; object-fit: cover;
  background: var(--sand);
}
.eyebrow {
  display: inline-block; font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rose-mid); margin-bottom: 14px;
}
.hero h1 { margin-bottom: 8px; }
.stroke { position: relative; display: inline-block; }
.stroke::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 10px; background: var(--pill); z-index: -1; border-radius: 4px;
}
.hero .lead { color: var(--rose-mid); margin: 14px 0 24px; max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.trust-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px;
}
.chip {
  background: var(--white); border: 1px solid var(--line); color: var(--rose-soft);
  font-size: 0.8rem; padding: 7px 14px; border-radius: 999px;
}

/* ---------- Sections ---------- */
section { padding: 48px 0; }
.section-head { margin-bottom: 28px; }
.section-head p { color: var(--rose-mid); max-width: 60ch; margin-top: 8px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; display: block; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(92, 58, 56, 0.10); }
.cat-card img { height: 200px; width: 100%; object-fit: cover; background: var(--sand); }
.cat-card .card-body { padding: 18px 20px 22px; }
.cat-card h3 { margin-bottom: 6px; }
.cat-card p { color: var(--rose-mid); font-size: 0.92rem; }
.cat-card .from { color: var(--blush-dark); font-weight: 700; font-size: 0.9rem; margin-top: 10px; display: block; }

/* ---------- Service list ---------- */
.service-list { display: grid; gap: 12px; }
.service-row {
  background: var(--white); border-radius: var(--radius);
  padding: 16px 18px; display: flex; gap: 16px; align-items: center;
}
.service-row img {
  width: 72px; height: 72px; border-radius: 14px; object-fit: cover;
  background: var(--sand); flex-shrink: 0;
}
.service-info { flex: 1; min-width: 0; }
.service-info h3 { font-size: 1.05rem; }
.service-info p { color: var(--rose-mid); font-size: 0.88rem; margin-top: 3px; }
.service-price {
  font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem;
  color: var(--rose-deep); white-space: nowrap;
}
.service-row .btn { flex-shrink: 0; }

/* ---------- Steps / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 22px;
}
.step .dot {
  width: 34px; height: 34px; border-radius: 50%; background: var(--pill);
  color: var(--rose-deep); display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 12px; font-size: 0.9rem;
}
.step p { color: var(--rose-mid); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Review strip ---------- */
.review-strip {
  background: var(--white); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.stars { color: var(--blush); font-size: 1.2rem; letter-spacing: 3px; }
.review-strip p { color: var(--rose-mid); margin-top: 8px; }

/* ---------- Booking panel ---------- */
.booking-panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px; margin-top: 20px;
}
.booking-panel h3 { margin-bottom: 8px; }
.booking-panel p { color: var(--rose-mid); font-size: 0.95rem; }
.booking-embed { margin-top: 18px; min-height: 120px; }
.booking-fallback {
  margin-top: 18px; background: var(--pill); border-radius: 14px;
  padding: 18px; font-size: 0.95rem;
}
.notice {
  font-size: 0.85rem; color: var(--rose-mid); margin-top: 14px;
}

/* ---------- Prose / about ---------- */.prose { max-width: 68ch; }
.prose p { margin-bottom: 18px; color: var(--rose-soft); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.two-col img { border-radius: 20px; width: 100%; height: 380px; object-fit: cover; background: var(--sand); }
/* Portrait photos: show the whole image, never cropped */
.two-col img.portrait {
  height: auto; object-fit: contain; aspect-ratio: auto;
  max-width: 420px; margin-inline: auto; display: block;
}

/* ---------- FAQ ---------- */
details {
  background: var(--white); border-radius: 14px; padding: 16px 18px; margin-bottom: 10px;
}
details summary { cursor: pointer; font-weight: 700; color: var(--rose-deep); }
details p { margin-top: 10px; color: var(--rose-mid); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white); border-top: 1px solid var(--line);
  margin-top: 40px; padding: 40px 0 90px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.site-footer h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tagline { font-family: 'Fraunces', Georgia, serif; color: var(--rose-mid); font-style: italic; }
.site-footer h4 { font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose-mid); margin-bottom: 10px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 6px; font-size: 0.93rem; }
.site-footer a { color: var(--rose-soft); }
.site-footer a:hover { color: var(--rose-deep); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: var(--rose-mid); }

/* ---------- Floating book pill (mobile) ---------- */
.book-pill {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 60; display: none;
  box-shadow: 0 8px 24px rgba(92, 58, 56, 0.25);
}

/* ---------- Focus & motion ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blush); outline-offset: 2px; border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .hero-media img { height: 280px; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 18px 20px 24px; gap: 16px; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .book-pill { display: inline-block; }
  .service-row { flex-wrap: wrap; }
  .service-row .btn { width: 100%; text-align: center; }
  section { padding: 34px 0; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-grid figure {
  background: var(--white); border-radius: var(--radius); overflow: hidden; margin: 0;
}
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; background: var(--sand); }
.gallery-grid figcaption {
  padding: 10px 14px; font-size: 0.88rem; color: var(--rose-mid);
}
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
}

/* ---------- Booking: coming soon ---------- */
.coming-soon {
  text-align: center; padding: 32px 22px;
  background: var(--pill); border-radius: 16px;
}
.cs-badge {
  display: inline-block; background: var(--white); color: var(--blush-dark);
  font-size: 0.72rem; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.coming-soon h4 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: 1.3rem; color: var(--rose-deep); margin-bottom: 8px;
}
.coming-soon p {
  color: var(--rose-soft); font-size: 0.95rem; max-width: 46ch;
  margin: 0 auto 18px;
}
.cs-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
