:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-alt: #f5f1ee;
  --text: #2a2421;
  --text-soft: #6b605a;
  --accent: #c9304a;
  --accent-soft: #e9b6bf;
  --accent-dark: #9b1f33;
  --border: #ece7e3;
  --shadow: 0 8px 30px rgba(40, 25, 30, 0.06);
  --shadow-strong: 0 18px 50px rgba(40, 25, 30, 0.12);
  --radius: 4px;
  --radius-lg: 18px;
  --transition: 220ms cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.2; margin-bottom: .8rem; }
h3 { font-size: 1.3rem; margin-bottom: .6rem; }

p { color: var(--text-soft); }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bg-alt);
  font-size: .82rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a:hover { color: var(--accent); }
.topbar .info-group { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar .info-group span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.brand-mark .dot { color: var(--accent); }
.brand-tag {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--accent); }

.nav .btn,
.nav .btn-outline {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  font-size: .82rem;
}
.nav .btn::after,
.nav .btn-outline::after { display: none; }
.nav .btn:hover,
.nav .btn-outline:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-ghost { border: 1px solid var(--border); background: #fff; color: var(--text); }
.btn-ghost:hover { background: var(--bg-alt); color: var(--text); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .topbar .info-group { gap: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.85) 100%),
    url('https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, #fff 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 0;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero p.lead {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Section ---------- */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head .eyebrow { display: block; }
.section-head p { margin-top: 12px; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 32px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-soft);
}
.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  font-size: 1.4rem;
}

/* ---------- Split / About preview ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-soft);
  margin: -16px;
  z-index: -1;
}
.split-text .eyebrow { display: block; margin-bottom: 14px; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
}

/* ---------- Services preview / list ---------- */
.bg-soft { background: var(--bg-soft); }
.bg-alt { background: var(--bg-alt); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card h3 { color: var(--text); }
.service-card .price {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 16px;
}
.service-card ul {
  list-style: none;
  margin-top: 14px;
}
.service-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-soft);
  font-size: .95rem;
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li span:last-child {
  color: var(--accent);
  font-weight: 500;
}

/* ---------- Pricing table (full services page) ---------- */
.price-block { margin-bottom: 56px; }
.price-block h3 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.price-block h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.price-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  gap: 20px;
}
.price-list li .name { color: var(--text); font-weight: 500; }
.price-list li .desc { display: block; font-size: .85rem; color: var(--text-soft); margin-top: 2px; }
.price-list li .amt {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .price-list { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--bg-alt);
}
.gallery a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery a::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(40,25,30,.18);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery a:hover::after { opacity: 1; }

.gallery .tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent-soft);
  line-height: 1;
}
.testimonial p { font-style: italic; color: var(--text); margin-bottom: 20px; }
.testimonial .author {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-style: normal;
  font-size: .92rem;
}
.stars { color: #d4a017; letter-spacing: 2px; }

/* ---------- Contact / Hours grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.info-block {
  margin-bottom: 32px;
}
.info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.info-block p, .info-block a { color: var(--text); font-size: 1.05rem; }

.hours-list {
  list-style: none;
  border-top: 1px solid var(--border);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.hours-list li.closed { color: var(--text-soft); }
.hours-list li.closed span:last-child { color: var(--accent); }

/* Form */
form { display: grid; gap: 18px; }
form label {
  display: block;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}
form input, form select, form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  transition: border-color var(--transition);
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Map */
.map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 24px;
  border-radius: var(--radius-lg);
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { max-width: 540px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1c1715;
  color: #d8cfc9;
  padding: 72px 0 24px;
  margin-top: 80px;
}
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer p, .site-footer a, .site-footer li { color: #b8aea8; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid ul { list-style: none; display: grid; gap: 8px; }
.site-footer .brand-mark { color: #fff; font-size: 1.6rem; }
.site-footer .brand-tag { color: #8c8079; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #2c2522;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: #8c8079;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page header (subpages) ---------- */
.page-header {
  background: var(--bg-alt);
  padding: 80px 0 64px;
  text-align: center;
}
.page-header .eyebrow { display: block; margin-bottom: 12px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { max-width: 560px; margin: 14px auto 0; }

/* ---------- Float WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  font-size: 1.6rem;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
