/* ===========================================================
   Studio Sagebrush - shared design system
   =========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sage-dark: #6b8e6f;
  --sage-light: #a8c1ac;
  --sage-medium: #7d9e81;
  --cream: #faf7f2;
  --warm-tan: #d4c4b8;
  --terracotta: #c8937c;
  --deep-charcoal: #2c2a27;
  --accent-gold: #c9a875;
  --dusty-rose: #b8a193;
  --soft-gray: #e5e1df;
  --sand: #e8dcc4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--deep-charcoal);
  background-color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(168, 193, 172, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(196, 147, 124, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* ---------- Header & Navigation ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 193, 172, 0.2);
  animation: slideDownIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

@keyframes slideDownIn {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo img { height: 48px; width: auto; }
.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: -0.03em;
}
.logo:hover { transform: scale(1.04); }

nav { display: flex; gap: 2.8rem; align-items: center; }

nav a {
  text-decoration: none;
  color: var(--deep-charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a:not(.cta-button)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage-dark), var(--terracotta));
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
nav a:not(.cta-button):hover::after { width: 100%; }
nav a:not(.cta-button):hover { color: var(--sage-dark); }

.cta-button {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage-medium));
  color: white !important;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.82rem !important;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(107, 142, 111, 0.15);
}
.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(107, 142, 111, 0.25);
  background: linear-gradient(135deg, var(--sage-medium), var(--sage-dark));
}

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.hamburger span { width: 25px; height: 2.5px; background: var(--deep-charcoal); border-radius: 3px; transition: all 0.4s ease; }

/* ---------- Section base ---------- */
section { scroll-margin-top: 90px; }
.section-container { max-width: 1400px; margin: 0 auto; padding: 6rem 2.5rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--deep-charcoal);
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--sage-dark);
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 1rem;
}
.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--sage-dark), transparent);
}

/* ---------- Hero ---------- */
.hero {
  margin-top: 76px;
  padding: 5rem 2.5rem 4rem;
  min-height: calc(100vh - 76px);
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 196, 184, 0.15) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -250px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168, 193, 172, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196, 147, 124, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(-25px); }
}

.hero-content { position: relative; z-index: 2; animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both; padding: 2rem; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  color: var(--deep-charcoal);
  margin-bottom: 1.8rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero h1 span {
  color: var(--sage-dark);
  display: block;
  font-family: 'Tangerine', cursive;
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 700;
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}
.hero-subtitle { font-size: 1.05rem; color: var(--deep-charcoal); margin-bottom: 2.5rem; line-height: 1.85; font-weight: 500; opacity: 0.9; }

.btn-primary, .hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage-medium));
  color: white;
  padding: 1.3rem 2.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  box-shadow: 0 12px 35px rgba(107, 142, 111, 0.2);
}
.btn-primary:hover, .hero-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(107, 142, 111, 0.35);
  background: linear-gradient(135deg, var(--sage-medium), var(--sage-dark));
}

.hero-image { position: relative; z-index: 2; animation: fadeInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
  border: 8px solid var(--cream);
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-medium) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite;
}
.about-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-text { animation: fadeInLeft 1s ease 0.3s both; padding: 1rem; }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.about h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.8rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; }
.about .section-subtitle { color: rgba(255,255,255,0.85); }
.about .section-subtitle::after { background: linear-gradient(90deg, rgba(255,255,255,0.7), transparent); }
.about p { font-size: 1.08rem; line-height: 1.9; margin-bottom: 1.4rem; font-weight: 500; opacity: 0.98; }
.about-image { position: relative; animation: fadeInRight 1s ease 0.5s both; }
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
  border: 6px solid rgba(255, 255, 255, 0.12);
}
.about-link {
  color: white; text-decoration: none; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  position: relative; display: inline-block; margin-top: 1rem;
  transition: all 0.3s ease; font-size: 0.95rem;
}
.about-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 100%; height: 2px; background: rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-link:hover { opacity: 0.9; }
.about-link:hover::after { bottom: -10px; background: white; }

/* ---------- Services ---------- */
.services { background: var(--cream); position: relative; }
.services::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(168, 193, 172, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(200, 147, 124, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative; z-index: 1;
}
.service-card {
  background: white;
  border-radius: 28px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(168, 193, 172, 0.15);
  animation: fadeInUp 0.8s ease both;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:hover {
  transform: translateY(-14px);
  border-color: var(--sage-dark);
  box-shadow: 0 25px 60px rgba(107, 142, 111, 0.18);
}
.service-card .card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.service-card .card-body { padding: 2rem 2rem 2.4rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; margin-bottom: 0.9rem;
  color: var(--deep-charcoal); font-weight: 700; letter-spacing: -0.01em;
}
.service-card p { color: #777; line-height: 1.8; margin-bottom: 1.4rem; font-size: 0.96rem; font-weight: 500; flex: 1; }
.service-card .price-from { font-weight: 700; color: var(--terracotta); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.2rem; }
.service-link {
  color: var(--sage-dark); text-decoration: none; font-weight: 700;
  font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em;
  position: relative; display: inline-block; transition: all 0.3s ease;
}
.service-link::after { content: '→'; margin-left: 0.6rem; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); display: inline-block; }
.service-card:hover .service-link { color: var(--terracotta); }
.service-card:hover .service-link::after { transform: translateX(6px); }

/* ---------- Menu / Pricing ---------- */
.menu { background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 196, 184, 0.18) 100%); position: relative; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem 4rem; margin-top: 3.5rem; }
.menu-group h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--sage-dark);
  font-weight: 700; margin-bottom: 1.4rem; padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(107, 142, 111, 0.2);
}
.menu-item { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1rem; }
.menu-item .name { font-weight: 600; color: var(--deep-charcoal); white-space: nowrap; }
.menu-item .dots { flex: 1; border-bottom: 1px dotted rgba(44,42,39,0.25); transform: translateY(-4px); }
.menu-item .price { font-weight: 700; color: var(--terracotta); font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.menu-note { margin-top: 2.5rem; font-size: 0.92rem; color: #888; font-style: italic; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); position: relative; }
.testimonials::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 193, 172, 0.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.testimonial-slider { margin-top: 4rem; position: relative; z-index: 1; max-width: 820px; margin-left: auto; margin-right: auto; }
.testimonial-card {
  background: white; padding: 3rem; border-radius: 30px; text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07); animation: slideInFade 0.7s ease-out;
  border: 2px solid rgba(168, 193, 172, 0.1); position: relative; overflow: hidden;
}
@keyframes slideInFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.stars { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 1.2rem; letter-spacing: 0.3em; }
.testimonial-card h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 0.6rem 0 1.2rem; color: var(--deep-charcoal); font-weight: 700; }
.testimonial-card p { font-size: 1.08rem; color: #777; line-height: 1.9; margin-bottom: 1.2rem; font-style: italic; font-weight: 500; }
.testimonial-author { font-weight: 700; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem; }
.slider-nav { display: flex; justify-content: center; gap: 1.2rem; margin-top: 2.5rem; }
.slider-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--soft-gray); cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border: 2px solid transparent; }
.slider-dot.active { background: var(--sage-dark); transform: scale(1.4); }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 196, 184, 0.12) 100%); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08); transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.gallery-grid img:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 20px 45px rgba(0,0,0,0.15); }

/* ---------- Visit / Location ---------- */
.visit { background: var(--deep-charcoal); color: white; position: relative; overflow: hidden; }
.visit-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.visit .section-subtitle { color: var(--sage-light); }
.visit .section-subtitle::after { background: linear-gradient(90deg, var(--sage-light), transparent); }
.visit h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 2rem; letter-spacing: -0.015em; }
.visit-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.visit-detail .ico { font-size: 1.3rem; line-height: 1.4; }
.visit-detail .label { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--sage-light); font-weight: 700; margin-bottom: 0.2rem; }
.visit-detail .val { font-size: 1.05rem; font-weight: 500; }
.visit-detail a { color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
.visit-detail a:hover { border-color: var(--sage-light); }
.visit-map { border-radius: 24px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.4); border: 6px solid rgba(255,255,255,0.08); }
.visit-map iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-medium) 100%);
  color: white; text-align: center; position: relative; overflow: hidden;
  min-height: 460px; display: flex; align-items: center; justify-content: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  animation: float 25s ease-in-out infinite;
}
.final-cta-content { position: relative; z-index: 2; animation: fadeInUp 1s ease 0.3s both; padding: 3rem; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.2rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; }
.final-cta p { font-family: 'Tangerine', cursive; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 3rem; font-weight: 700; letter-spacing: 0.05em; opacity: 0.95; }
.final-cta-button {
  background: white; color: var(--sage-dark); padding: 1.3rem 3rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; border: none;
  display: inline-block; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.final-cta-button:hover { transform: translateY(-6px); box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3); background: var(--warm-tan); color: white; }

/* ---------- Footer ---------- */
footer { background: var(--deep-charcoal); color: white; padding: 3.5rem 2rem 2.5rem; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; opacity: 0.7; line-height: 1.8; max-width: 320px; }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1rem; color: var(--sage-light); }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom { max-width: 1400px; margin: 2.5rem auto 0; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; opacity: 0.6; text-align: center; letter-spacing: 0.05em; }
.footer-bottom a { color: var(--accent-gold); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Scroll reveal (progressive enhancement: only hides when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.js .reveal.active { opacity: 1; transform: translateY(0); }

/* ---------- Service subpage hero ---------- */
.page-hero {
  margin-top: 76px;
  padding: 5rem 2.5rem;
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-medium) 100%);
  color: white; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%; animation: float 28s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem; font-weight: 700; opacity: 0.85; margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 1.4rem; }
.page-hero p { font-size: 1.1rem; line-height: 1.85; font-weight: 500; opacity: 0.95; }

/* service detail layout */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.svc-detail.flip .svc-photo { order: 2; }
.svc-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.svc-list { list-style: none; }
.svc-list li { padding: 1.5rem 0; border-bottom: 1px solid rgba(168,193,172,0.25); }
.svc-list li:last-child { border-bottom: none; }
.svc-list .row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.4rem; }
.svc-list .row .name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--deep-charcoal); }
.svc-list .row .price { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--terracotta); white-space: nowrap; }
.svc-list .desc { color: #777; font-size: 0.98rem; line-height: 1.8; font-weight: 500; }
.back-link { display: inline-block; margin-top: 2.5rem; color: var(--sage-dark); text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.88rem; }
.back-link:hover { color: var(--terracotta); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .visit-content { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .header-container { padding: 0.9rem 1.5rem; }
  nav {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(250, 247, 242, 0.98);
    padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(168, 193, 172, 0.2);
  }
  nav.active { display: flex; }
  nav a { font-size: 0.95rem; }
  nav a:not(.cta-button) { padding: 0.6rem 0; }
  .hamburger { display: flex; }
  /* prevent grid tracks from overflowing narrow screens */
  .services-grid, .menu-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(11px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-11px); }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; min-height: auto; }
  .hero-content { padding: 1rem; order: 1; }
  .hero-image { order: 2; max-width: 300px; margin: 0 auto; }
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { order: -1; max-width: 320px; margin: 0 auto; }
  .about-text { padding: 0; }
  .section-container { padding: 4rem 1.5rem; }
  .svc-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-detail.flip .svc-photo { order: -1; }
  .svc-photo { max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero::before, .hero::after, .about::before { display: none; }
  .final-cta { min-height: auto; padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .logo span { font-size: 1.2rem; }
  .logo img { height: 40px; }
  .testimonial-card { padding: 2rem; }
}
