:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --cream: #f8f7f5;
  --warm-white: #fdfcfa;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--stone-700);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(248, 247, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-cart {
  color: var(--stone-700);
}

.navbar.scrolled .nav-cta {
  background: var(--stone-700);
  color: var(--cream);
}

/* For pages with no full-bleed hero, force the dark-on-light navbar by default */
.navbar.solid {
  background: rgba(248, 247, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.navbar.solid .nav-logo,
.navbar.solid .nav-links a,
.navbar.solid .nav-cart { color: var(--stone-700); }
.navbar.solid .nav-cta { background: var(--stone-700); color: var(--cream); }

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  display: block;
  height: 28px;
  width: auto;
  /* Logo art is black-on-transparent; over the hero we need it cream/white. */
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.navbar.scrolled .nav-logo img,
.navbar.solid .nav-logo img {
  /* On light nav backgrounds, show the original black artwork */
  filter: none;
}

@media (max-width: 768px) {
  .nav-logo img { height: 22px; }
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  transition: opacity 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-cart {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-cta {
  background: rgba(68, 64, 60, 0.7);
  color: var(--cream);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.nav-cta:hover {
  background: var(--stone-700);
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 13.6%;
}

/* Auto-rotating hero background carousel */
.hero-bg--carousel .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-position: center;
  transition: opacity 1.6s ease-in-out;
}

.hero-bg--carousel .hero-slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg--carousel .hero-slide { transition: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.46) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.26) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0.38) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 3rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 22px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(248, 247, 245, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1.5px solid rgba(248, 247, 245, 0.6);
  color: var(--cream);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--stone-700);
  border-color: var(--cream);
}

/* Compact hero variant for inner pages */
.hero--compact { min-height: 60vh; }
.hero--compact .hero-content { text-align: center; margin: 0 auto; }
.hero--compact .hero-subtitle { margin-left: auto; margin-right: auto; }

/* Scrolling text at bottom */
.hero-scroll-text {
  position: absolute;
  bottom: 8vh;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollText 25s linear infinite;
}

.scroll-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: rgba(248, 247, 245, 0.9);
  white-space: nowrap;
  padding-right: 3rem;
  font-style: italic;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Curved hero text band — SVG textPath, scrolls along an arc */
.hero-curved-band {
  position: absolute;
  bottom: 2vh;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-curved-band svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-curved-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-style: italic;
  font-weight: 300;
  fill: rgba(248, 247, 245, 0.92);
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .hero-curved-text { font-size: 78px; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION COMMON ===== */
section { position: relative; }
.section-bg-light { background: var(--warm-white); }
.section-bg-cream { background: var(--cream); }

/* ===== OUR STORY ===== */
.story-section {
  padding: 8rem 0;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  align-items: start;
}

.story-left { position: relative; }

.story-watermark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: var(--stone-300);
  line-height: 0.85;
  margin-bottom: 2rem;
  opacity: 0.6;
}

.story-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone-600);
  max-width: 480px;
}

.story-text + .story-text { margin-top: 1.2rem; }

.story-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--stone-700);
  color: var(--stone-700);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.3s;
}

.story-cta:hover {
  background: var(--stone-700);
  color: var(--cream);
}

.story-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.story-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-img-main:hover img { transform: scale(1.03); }

.story-img-founder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}

.story-img-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-img-founder:hover img { transform: scale(1.03); }

.founder-label {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--stone-400);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.services-left { padding-top: 2rem; }

.accordion {
  border-top: 1px solid var(--stone-300);
}

.accordion-item {
  border-bottom: 1px solid var(--stone-300);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--stone-700);
  text-align: left;
  text-decoration: none;
  transition: color 0.3s;
}

.accordion-header:hover { color: var(--stone-500); }

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}

.accordion-icon::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--stone-400);
  border-right: 1px solid var(--stone-400);
  top: 50%;
  left: 50%;
  transform: translate(-65%, -50%) rotate(45deg);
  transition: border-color 0.3s;
}

.accordion-header:hover .accordion-icon {
  transform: translateX(4px);
}

.accordion-header:hover .accordion-icon::before {
  border-color: var(--stone-500);
}

.services-right { position: relative; }

.services-watermark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--stone-300);
  line-height: 0.9;
  text-align: right;
  margin-bottom: 2rem;
  opacity: 0.5;
}

.services-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone-500);
  max-width: 400px;
  margin-left: auto;
  text-align: right;
}

.services-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--stone-700);
  color: var(--stone-700);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.3s;
  float: right;
}

.services-cta:hover {
  background: var(--stone-700);
  color: var(--cream);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active { opacity: 1; }

.testimonial-bg {
  position: absolute;
  inset: 0;
}

.testimonial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 3rem;
  color: var(--cream);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--cream);
}

.testimonial-nav:hover { background: rgba(255,255,255,0.35); }
.testimonial-nav.prev { left: 2rem; }
.testimonial-nav.next { right: 2rem; }
.testimonial-nav svg { width: 20px; height: 20px; }

/* ===== CLIENT RESULTS ===== */
.results-section {
  padding: 8rem 0;
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
}

.results-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  min-height: 600px;
}

.results-watermark-client {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--stone-300);
  line-height: 0.85;
  position: absolute;
  left: -2rem;
  top: 0;
  opacity: 0.5;
  pointer-events: none;
}

.results-watermark-results {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--stone-300);
  line-height: 0.85;
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  opacity: 0.5;
  pointer-events: none;
  font-style: italic;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 80px);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.result-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.result-img:hover img { transform: scale(1.05); }

.result-img-1 { grid-column: 2 / 5; grid-row: 1 / 4; }
.result-img-2 { grid-column: 6 / 8; grid-row: 1 / 3; }
.result-img-3 { grid-column: 9 / 12; grid-row: 2 / 5; }
.result-img-4 { grid-column: 7 / 9; grid-row: 4 / 6; }

.results-text {
  grid-column: 4 / 8;
  grid-row: 3 / 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.results-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone-500);
  margin-bottom: 1.5rem;
}

.results-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--stone-700);
  color: var(--stone-700);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.3s;
  width: fit-content;
}

.results-cta:hover {
  background: var(--stone-700);
  color: var(--cream);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.newsletter-bg { position: absolute; inset: 0; }

.newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 3rem;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 1rem 1.5rem;
  border: none;
  background: rgba(255,255,255,0.95);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--stone-700);
  min-width: 180px;
  outline: none;
}

.newsletter-form input::placeholder { color: var(--stone-400); }

.newsletter-form button {
  padding: 1rem 1.8rem;
  border: none;
  background: var(--cream);
  color: var(--stone-700);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: var(--stone-700);
  color: var(--cream);
}

.newsletter-form .form-status {
  flex-basis: 100%;
  color: rgba(248, 247, 245, 0.86);
  text-align: center;
}

.newsletter-subtitle {
  color: rgba(248, 247, 245, 0.8);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 2fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-brand h3 {
  font-size: 2rem;
  color: var(--stone-400);
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--stone-400);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.3rem;
  color: var(--stone-600);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  color: var(--stone-400);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  position: relative;
}

.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--stone-600);
  transition: width 0.3s;
}

.footer-col a:hover { color: var(--stone-600); }
.footer-col a:hover::after { width: 100%; }

.footer-subscribe p {
  font-size: 0.85rem;
  color: var(--stone-400);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-subscribe-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-subscribe-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--stone-200);
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  outline: none;
}

.footer-subscribe-form button {
  padding: 0.8rem 1.5rem;
  background: var(--stone-300);
  color: var(--stone-700);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
}

.footer-subscribe-form button:hover {
  background: var(--stone-700);
  color: var(--cream);
}

.footer-subscribe-form .form-status {
  flex-basis: 100%;
}

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 2rem 3rem 0;
  border-top: 1px solid var(--stone-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.75rem;
  color: var(--stone-400);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--stone-600); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== INNER PAGE LAYOUTS ===== */
.page-section {
  padding: 6rem 0;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.page-container--wide { max-width: 1400px; }

.lede {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone-600);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--stone-700);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 1rem;
  display: block;
}

.prose {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--stone-600);
}

.prose p + p { margin-top: 1.2rem; }
.prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 2.5rem 0 1rem;
  color: var(--stone-700);
}
.prose h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
  color: var(--stone-700);
}
.prose ul { padding-left: 1.4rem; margin: 1rem 0; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--stone-700); text-decoration: underline; text-decoration-color: var(--stone-300); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--stone-700); }

/* Service catalogue page */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0;
  border-top: 1px solid var(--stone-200);
  align-items: start;
}

.service-block:first-of-type { border-top: none; }

.service-block__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.service-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block__img:hover img { transform: scale(1.03); }

.service-block__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--stone-700);
}

.service-block__body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--stone-600);
  margin-bottom: 1.5rem;
}

.service-block__list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--stone-200);
}

.service-block__list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--stone-200);
  font-size: 0.9rem;
  color: var(--stone-600);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.service-block__list li span:last-child {
  color: var(--stone-400);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.service-block:nth-child(even) .service-block__img { order: 2; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info dl {
  margin-top: 1.5rem;
}

.contact-info dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--stone-700);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.contact-info dd {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.7;
}

.contact-info a { color: var(--stone-700); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone-500);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.9rem 1rem;
  border: 1px solid var(--stone-200);
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--stone-700);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--stone-700);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form button {
  margin-top: 0.5rem;
  align-self: flex-start;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--stone-700);
  background: var(--stone-700);
  color: var(--cream);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: transparent;
  color: var(--stone-700);
}

.contact-form button:disabled,
.newsletter-form button:disabled,
.footer-subscribe-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0.25rem 0 0;
  color: var(--stone-500);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-status.success { color: #46664f; }
.form-status.error { color: #8f3838; }
.form-status.pending { color: var(--stone-500); }

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  margin-top: 3rem;
  filter: grayscale(0.3) contrast(0.95);
  border-radius: 4px;
}

/* Blog index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.blog-card:hover { transform: translateY(-4px); }
.blog-card.is-coming-soon { pointer-events: none; opacity: 0.55; }

.blog-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--stone-700);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--stone-500);
}

/* Treatment index card grid (used on category landing pages) */
.treatment-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.treatment-index-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--warm-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.treatment-index-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.treatment-index-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-index-card:hover .treatment-index-card__img img {
  transform: scale(1.04);
}

.treatment-index-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-index-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone-700);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.treatment-index-card__desc {
  font-size: 0.85rem;
  color: var(--stone-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.treatment-index-card__cta {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-700);
  border-top: 1px solid var(--stone-200);
  padding-top: 0.8rem;
}

@media (max-width: 1024px) {
  .treatment-index { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .treatment-index { grid-template-columns: 1fr; }
}

/* Pricelist page — minimal */
.pricelist {
  max-width: 760px;
  margin: 0 auto;
}

.pricelist__category {
  margin-top: 4rem;
}

.pricelist__category:first-of-type { margin-top: 0; }

.pricelist__category h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--stone-700);
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--stone-300);
}

.pricelist__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--stone-100);
}

.pricelist__row:last-child { border-bottom: none; }

.pricelist__name {
  font-size: 0.95rem;
  color: var(--stone-700);
}

.pricelist__name small {
  display: block;
  font-size: 0.78rem;
  color: var(--stone-400);
  margin-top: 0.2rem;
  font-weight: 300;
}

.pricelist__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone-500);
  white-space: nowrap;
}

/* Treatment page (single service detail) */
.treatment-quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 3rem 0;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}

.treatment-quickfacts__cell {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--stone-200);
}

.treatment-quickfacts__cell:last-child { border-right: none; }

.treatment-quickfacts__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.4rem;
  display: block;
}

.treatment-quickfacts__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--stone-700);
  font-weight: 400;
}

.treatment-steps {
  counter-reset: step;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}

.treatment-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-bottom: 1px solid var(--stone-200);
}

.treatment-steps li:last-child { border-bottom: none; }

.treatment-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--stone-400);
  font-style: italic;
}

.treatment-steps strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--stone-700);
  margin-bottom: 0.3rem;
}

.treatment-steps p {
  font-size: 0.92rem;
  color: var(--stone-500);
  line-height: 1.7;
  margin: 0;
}

.related-treatments {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--stone-200);
}

.related-treatments h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--stone-700);
  text-align: center;
  margin-bottom: 2rem;
}

.related-treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-treatment-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
  border: 1px solid var(--stone-200);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.related-treatment-card:hover {
  border-color: var(--stone-700);
  transform: translateY(-2px);
}

.related-treatment-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  display: block;
  margin-bottom: 0.4rem;
}

.related-treatment-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--stone-700);
  font-weight: 400;
  margin: 0;
}

.book-banner {
  margin: 4rem 0 0;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--warm-white);
  border-radius: 4px;
}

.book-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--stone-700);
  margin-bottom: 0.6rem;
}

.book-banner p {
  font-size: 0.95rem;
  color: var(--stone-500);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.book-banner .story-cta {
  background: var(--stone-700);
  color: var(--cream);
}

.book-banner .story-cta:hover {
  background: transparent;
  color: var(--stone-700);
}

@media (max-width: 768px) {
  .treatment-quickfacts {
    grid-template-columns: repeat(2, 1fr);
    border: none;
  }
  .treatment-quickfacts__cell {
    border: 1px solid var(--stone-200);
    margin: -0.5px;
  }
  .related-treatments__grid { grid-template-columns: 1fr; }
}

/* Before/after compare slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  user-select: none;
  cursor: ew-resize;
  background: var(--stone-200);
  --ba-pos: 50%;
}

.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__after {
  clip-path: inset(0 0 0 var(--ba-pos));
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.ba-slider__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-700);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.ba-slider__grip::before,
.ba-slider__grip::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
}

.ba-slider__grip::before {
  left: 10px;
  border-width: 5px 7px 5px 0;
  border-color: transparent var(--stone-700) transparent transparent;
}

.ba-slider__grip::after {
  right: 10px;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--stone-700);
}

.ba-slider__label {
  position: absolute;
  top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(28, 25, 23, 0.6);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  pointer-events: none;
}

.ba-slider__label--before { left: 1rem; }
.ba-slider__label--after  { right: 1rem; }

.ba-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--stone-500);
  text-align: center;
  margin-top: 0.8rem;
}

/* Results page layout */
.results-service {
  padding: 5rem 0;
  border-top: 1px solid var(--stone-200);
}

.results-service:first-of-type { border-top: none; }

.results-service__head {
  text-align: center;
  margin-bottom: 3rem;
}

.results-service__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--stone-700);
  margin-bottom: 0.6rem;
}

.results-service__head p {
  font-size: 0.95rem;
  color: var(--stone-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.results-grid--gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.results-grid--gallery .ba-slider { aspect-ratio: 3 / 4; }

/* Single centred pair (e.g. one hair result) */
.results-grid--gallery.results-grid--solo {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

/* Three pairs in a row (e.g. skin & facials) */
.results-grid--gallery.results-grid--trio {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.results-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.results-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.results-photos img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .results-grid--gallery,
  .results-grid--gallery.results-grid--trio,
  .results-grid--gallery.results-grid--solo { grid-template-columns: 1fr; gap: 1.5rem; justify-content: stretch; }
  .results-photos { grid-template-columns: repeat(2, 1fr); }
}

/* Make homepage result tiles feel clickable */
.result-img a { display: block; width: 100%; height: 100%; }

/* Blog post (article) */
.article-hero {
  padding: 9rem 0 3rem;
  background: var(--warm-white);
  text-align: center;
}

.article-hero .section-eyebrow { color: var(--stone-500); }

.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  max-width: 880px;
  margin: 0.5rem auto 1.5rem;
  line-height: 1.1;
  color: var(--stone-700);
}

.article-hero__meta {
  font-size: 0.8rem;
  color: var(--stone-500);
  letter-spacing: 0.05em;
}

.article-hero__img {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 3rem;
}

.article-hero__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.faq-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-200);
}

.faq-block details {
  border-bottom: 1px solid var(--stone-200);
  padding: 1.2rem 0;
}

.faq-block summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--stone-700);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-block summary::-webkit-details-marker { display: none; }

.faq-block summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--stone-400);
  transition: transform 0.2s;
}

.faq-block details[open] summary::after { content: '–'; }

.faq-block details p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--stone-600);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-right { order: -1; }
  .services-watermark { text-align: left; }
  .services-desc { text-align: left; margin-left: 0; }
  .services-cta { float: left; }

  .results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .result-img { height: 300px; }
  .results-text { padding: 1rem 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-block:nth-child(even) .service-block__img { order: 0; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .nav-center { display: none; }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .story-grid { padding: 0 1.5rem; }
  .services-grid { padding: 0 1.5rem; }

  .testimonials-section { height: 400px; }
  .testimonial-nav { width: 40px; height: 40px; }
  .testimonial-nav.prev { left: 1rem; }
  .testimonial-nav.next { right: 1rem; }

  .results-container { padding: 0 1.5rem; }

  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { width: 100%; max-width: 300px; }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .footer-bottom {
    padding: 2rem 1.5rem 0;
    flex-direction: column;
    text-align: center;
  }

  .page-container, .article-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-hero__img { padding: 0 1.5rem; }
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; color: var(--cream); }
  .navbar.scrolled .mobile-menu-btn,
  .navbar.solid .mobile-menu-btn { color: var(--stone-700); }
  .nav-right { gap: 1rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.75rem; }

  /* Mobile menu open state — slide-down panel */
  .navbar.menu-open {
    background: rgba(248, 247, 245, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  }
  .navbar.menu-open .nav-logo,
  .navbar.menu-open .mobile-menu-btn { color: var(--stone-700); }
  .navbar.menu-open .nav-cta {
    background: var(--stone-700);
    color: var(--cream);
  }

  .navbar.menu-open .nav-center {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--stone-200);
  }

  .navbar.menu-open .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navbar.menu-open .nav-links li {
    border-bottom: 1px solid var(--stone-200);
  }
  .navbar.menu-open .nav-links li:last-child { border-bottom: none; }

  .navbar.menu-open .nav-links a {
    color: var(--stone-700);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-transform: none;
    display: block;
    padding: 1rem 0;
    width: 100%;
  }
  .navbar.menu-open .nav-links a::after { display: none; }

  /* Hamburger → X transition */
  .mobile-menu-btn span {
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .navbar.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .navbar.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .navbar.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
