/* ── Variables ── */
:root {
  --bg:         #fdfaf8;
  --cream:      #f5f0eb;
  --card:       #ffffff;
  --border:     rgba(0,0,0,0.08);
  --text:       #1c1c1c;
  --text-muted: #7a7a7a;
  --accent:     #c47b8a; /* overridden by JS */
  --accent-light: #f7eaed;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --radius:     8px;
  --nav-h:      68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--text);
  font-weight: 600;
}
h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  border: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; }
.btn-lg { padding: 15px 36px; font-size: 0.9375rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,248,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 20px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.nav-links {
  display: none;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-phone {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
}
.nav-phone:hover { opacity: 0.8; }
.nav-book { display: none; }
.nav-hamburger {
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.nav-drawer.open { max-height: 420px; }
.drawer-link {
  display: block;
  padding: 14px 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.drawer-link:hover { color: var(--text); }
.drawer-book { margin: 16px 24px; text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1218 center/cover no-repeat;
  /* JS sets background-image when CLIENT.hero.image is provided */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,18,24,0.55) 0%,
    rgba(26,18,24,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero .eyebrow { color: #e8b4bf; }
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 16px;
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .eyebrow { display: block; }
.section-head h2 { margin-top: 6px; }

/* ── SERVICES ── */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-item:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.service-name { font-weight: 500; font-size: 1rem; }
.service-price {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 16px;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.18s, transform 0.18s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--accent-light);
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-light);
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--accent);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.team-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent-light);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-text {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
  padding-top: 8px;
}
.review-name { font-weight: 600; font-size: 0.875rem; }

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
.about-text h2 { margin: 6px 0 18px; }
.about-body {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 30px;
}

/* Shared placeholder */
.img-placeholder {
  background: var(--cream);
  border: 1.5px dashed #d9d0c8;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5bbb3;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── HOURS + LOCATION ── */
.hours-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.hours-location h2 { margin: 6px 0 28px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 13px 0; font-size: 0.9375rem; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.closed td { color: #bbb; }
.location-address {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }
.map-placeholder { height: 300px; }

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.contact-inner h2 { margin: 6px 0 30px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 13px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  resize: vertical;
  box-shadow: var(--shadow-sm);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-msg { font-size: 0.875rem; min-height: 1.4em; }
.form-msg.success { color: #3b9f6e; }
.form-msg.error { color: #c0504d; }

.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.sidebar-block p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }
.sidebar-block a { color: var(--accent); font-weight: 500; }
.sidebar-block a:hover { opacity: 0.8; }

/* ── FOOTER ── */
.footer {
  background: #1a1218;
  padding: 48px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #f0eae8;
  letter-spacing: 0.02em;
}
.footer-addr { color: #7a6c70; font-size: 0.875rem; }
.footer-social { display: flex; gap: 22px; margin: 8px 0; }
.footer-social a {
  color: #7a6c70;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--accent); }
.footer-copy { color: #4a3f44; font-size: 0.75rem; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .nav-links { display: flex; margin-left: auto; }
  .nav-actions { margin-left: 0; }
  .nav-book { display: inline-block; }
  .nav-hamburger { display: none; }
  .services-list { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .hours-location { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1.5fr 1fr; }
}
@media (min-width: 1024px) {
  .section { padding: 108px 0; }
}
