:root {
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --bg-cream: #f5f0e6;
  --bg-white: #ffffff;
  --text: #111111;
  --text-light: #f5f5f3;
  --muted: #6d6d6d;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: rgba(17, 17, 17, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #b89a5f;
  --accent-soft: #d8c39a;
  --accent-deep: #8f7442;
  --dark: #0d0d0d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand,
.nav a,
.site-footer p {
  color: var(--text);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  font-family: "Avenir Next", "Bodoni Moda", serif;
  font-size: clamp(3rem, 4vw, 4.25rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 0.86;
  text-transform: uppercase;
  color: var(--dark);
  text-shadow: 0 8px 24px rgba(36, 29, 26, 0.06);
}

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

.nav a {
  font-size: 0.95rem;
}

.nav-cart-link {
  position: relative;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 100;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cart-badge {
  display: none;
  background: #b89a5f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -10px;
}

#cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d0d;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 999;
}

#cart-toast.show {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.6rem;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.dropdown-menu a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: var(--bg-soft);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}

.hero,
.section {
  padding: 5rem 0;
}

.hero-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-soft {
  background: #fcfcfc;
}

.section-white {
  background: var(--bg-white);
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-cream {
  background: var(--bg-cream);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-grid-clean {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 4rem;
}

.hero-simple {
  padding: 4.5rem 0;
}

.hero-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 340px);
  gap: 3.5rem;
  align-items: center;
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
  padding-left: 2.5rem;
}

.hero-image-clean {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  object-position: 68% top;
  border-radius: 18px;
  display: block;
}

.hero-brand {
  font-family: "Avenir Next", "Bodoni Moda", serif;
  font-size: clamp(5rem, 11vw, 8rem);
  line-height: 0.88;
  margin: 0 0 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: none;
}

.hero-copy h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  line-height: 1.5;
  margin: 0 0 1rem;
  font-weight: 300;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.hero-copy-dark .eyebrow,
.hero-copy-dark h1,
.hero-copy-dark .lead,
.section-dark .eyebrow,
.section-dark .section-intro,
.section-dark p,
.section-dark a {
  color: var(--text-light);
}

.hero-copy-dark .lead,
.section-dark .section-intro,
.section-dark p {
  color: var(--muted-light);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
  font-weight: 500;
  max-width: 30ch;
}

.why-skinology-intro .eyebrow,
.simple-split .eyebrow {
  font-weight: 600;
  color: #000000;
}

.why-skinology-intro .eyebrow,
.simple-split .eyebrow,
.obagi-split .eyebrow,
.obagi-intro-aligned .eyebrow,
.contact-locations-section .eyebrow {
  color: #b89a5f;
}

.simple-split h2 {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.simple-split .section-intro {
  color: var(--text);
  font-size: 1.05rem;
}

.simple-split .section-intro strong {
  color: #000000;
}

.why-skinology-intro h2 {
  font-family: "Aboreto", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
  font-weight: 500;
  line-height: 1.14;
}

.eyebrow,
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.credentials-section .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  color: #b89a5f;
}

.brands-section .eyebrow,
.results-section .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  color: #b89a5f;
}

.lead,
.section-intro {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-copy {
  max-width: 920px;
}

.hero-actions,
.inline-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button-dark {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: var(--white);
}

.button-light {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.5);
}

.button-light-dark {
  color: var(--accent-soft);
  border-color: rgba(184,154,95,0.75);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
}

.button-gold-outline {
  color: var(--accent-deep);
  border-color: rgba(184,154,95,0.75);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
}

.button-gold-outline:hover {
  background: rgba(248,243,236,0.98);
}

.button-full {
  width: 100%;
}

.hero-points,
.info-card ul,
.price-list {
  padding-left: 1.15rem;
  color: var(--muted);
}

.price-list {
  margin: 1rem 0 0;
  padding-left: 1.4rem;
  text-align: left;
}

.price-list li {
  margin-bottom: 0.55rem;
  text-align: left;
}

.price-list strong {
  color: var(--text);
}

.hero-panel,
.info-card,
.service-card,
.booking-box,
.gallery-card,
.brand-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card-accent,
.booking-box,
#product-enquiry {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,243,236,0.98));
  border-color: rgba(184, 154, 95, 0.7);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
}

.feature-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.obagi-form {
  display: grid;
  gap: 0.75rem;
}

.obagi-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.obagi-form input,
.obagi-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 154, 95, 0.7);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.08);
}

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

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

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header-left {
  margin-left: 0;
}

.intro-clean {
  max-width: 1040px;
}

.why-skinology-intro {
  max-width: 1120px;
}

.why-skinology-intro h2,
.why-skinology-intro .section-intro {
  max-width: 100%;
}

.why-skinology-intro h2 {
  white-space: nowrap;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.why-skinology-intro .section-intro {
  color: var(--text);
  font-size: 1.1rem;
}

.credentials-section .section-intro {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 1100px;
}

.credentials-section h2,
.credentials-section .section-intro {
  max-width: 1100px;
}

.brands-section h2,
.brands-section .section-intro,
.results-section h2,
.results-section .section-intro {
  max-width: 1100px;
}

.results-section .intro-clean,
.results-section .section-header,
.results-section .section-header-left {
  margin-left: 0;
  margin-right: auto;
}


.credentials-section h2 {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: #000000;
  margin: 0 0 1rem;
  max-width: 56ch;
}

.brands-section h2,
.results-section h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.results-section h2 {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #000000;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
}

.value-grid-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.value-card-image-only {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.value-card-gold-trim {
  border: 1px solid rgba(184, 154, 95, 0.7);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
}

.value-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.value-image-row {
  object-fit: contain;
  object-position: center bottom;
  background: #ffffff;
  padding: 0.1rem;
}

.value-image-plenhyage-row {
  transform: scale(1.02);
  transform-origin: center bottom;
  padding: 0.1rem;
}

.value-image-pigment {
  transform: scale(1.03) translateY(6px);
  transform-origin: center bottom;
}

.value-image-serum {
  transform: scale(1.36) translateY(1px);
  transform-origin: center bottom;
}

.simple-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 3rem;
  align-items: start;
}

.simple-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.simple-image-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.simple-image {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.image-gold-trim,
.simple-image-gold-trim,
.hero-image-clean,
.hero-image,
.service-image,
.simple-image,
.gallery-card img,
.brand-card {
  background: #ffffff;
  border: 1px solid rgba(184, 154, 95, 0.7);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
}

.secondary-product-image {
  object-fit: cover;
}


.journey-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.journey-links a {
  color: #000000;
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-family: "Aboreto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.journey-links a:hover {
  color: var(--accent-deep);
}

.card-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.service-card.placeholder-card {
  border-style: dashed;
}

.booking-box {
  text-align: center;
}

.image-panel {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.25rem;
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.1rem;
}

.service-image-plenhyage {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 0.75rem;
  height: 260px;
}

.obagi-logo {
  max-width: 160px;
  display: block;
  margin: 0 0 1rem;
}

.obagi-logo-wide {
  max-width: 280px;
  margin: 0 auto 3rem;
}

.obagi-logo-promo {
  max-width: 100%;
  width: 100%;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 18px;
}

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

.obagi-intro-aligned {
  max-width: 1120px;
}

.obagi-intro-aligned .section-intro,
.obagi-intro-aligned h2,
.obagi-intro-aligned .eyebrow {
  max-width: 100%;
}

.obagi-intro-aligned .section-intro {
  color: var(--text);
  font-size: 1.05rem;
}

.obagi-intro-aligned h2 {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.obagi-guidance-row h3,
#product-enquiry h3 {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
  text-transform: none;
}

.obagi-product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.obagi-product-item {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.obagi-product-item .service-image {
  margin-bottom: 0;
  height: 260px;
}

.obagi-retinol-image {
  max-width: none;
  width: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.brand-card {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.brand-card-contrast {
  background: linear-gradient(180deg, rgba(56, 47, 31, 1), rgba(25, 20, 12, 1));
}

.brand-card-text {
  flex-direction: column;
  gap: 0.75rem;
}

.brand-card-text span {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}

.brand-logo {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.credential-logo {
  max-width: 260px;
  max-height: 110px;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.obagi-showcase {
  padding: 1.8rem;
}

.obagi-showcase h3 {
  font-family: "Avenir Next", "Bodoni Moda", serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.obagi-showcase .hero-image {
  object-fit: cover;
  width: 100%;
  max-width: 190px;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto 0.75rem;
  padding: 0;
}

.obagi-showcase ul {
  font-size: 0.88rem;
  margin: 0.5rem 0 0;
}

.featured-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(243,236,228,0.95));
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-banner-full {
  width: 100%;
  overflow: hidden;
  background: #fcfcfc;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  background: #fcfcfc;
}

.page-hero {
  padding-top: 4.5rem;
}

.page-hero.obagi-hero-below-banner {
  padding-top: 1.5rem;
}

.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.page-title-skinology {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000000;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.treatments-title-one-line {
  white-space: nowrap;
}

.treatments-intro-centred {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.treatments-intro-centred .page-title {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.info-card a {
  color: var(--text);
}

.spaced-top {
  margin-top: 2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.result-card {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  overflow: visible;
}

.result-card-image {
  padding: 0;
  background: transparent;
}

.result-card-figure {
  display: grid;
  grid-template-rows: 340px 72px;
  width: 100%;
  height: 100%;
}

.result-media {
  width: 100%;
  height: 340px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(184, 154, 95, 0.7);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
  border-radius: 18px;
}

.result-media-crop {
  overflow: hidden;
}

.result-image {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.result-image-crop {
  object-fit: cover;
}

.result-image-wide {
  width: 100%;
  height: 340px;
}

.result-image-skin-boosters {
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
}

.result-image-skinboosters-combo {
  object-fit: cover;
  object-position: center;
}

.result-label {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  font-family: "Aboreto", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.placeholder-result {
  min-height: 412px;
  background: linear-gradient(180deg, #ffffff, #f7f4ef);
  border-style: dashed;
}

.placeholder-result span {
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-bottom: 1rem;
  background: var(--dark);
}

.site-footer p,
.site-footer .small-note {
  color: var(--text-light);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .three-up,
  .card-grid,
  .obagi-gallery,
  .brand-grid,
  .value-grid,
  .simple-split,
  .hero-simple-grid,
  .results-grid,
  .obagi-product-item {
    grid-template-columns: 1fr;
  }

  .hero-simple-grid,
  .hero-copy,
  .hero-copy-dark {
    text-align: center;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-image-wrap,
  .simple-image-wrap,
  .hero-image-wrap {
    justify-content: center;
  }

  .simple-image,
  .hero-image-clean,
  .service-image,
  .result-image {
    max-width: 100%;
    height: auto;
  }

  .hero-image-wrap {
    padding-left: 0;
  }

  .hero-copy,
  .intro-clean,
  .section-header,
  .credentials-section h2,
  .credentials-section .section-intro,
  .brands-section h2,
  .brands-section .section-intro,
  .results-section h2,
  .results-section .section-intro {
    max-width: 100%;
  }

  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-header {
    position: static;
  }

  .brand {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    letter-spacing: 0.08em;
    line-height: 0.92;
  }

  .hero,
  .section {
    padding: 3.25rem 0;
  }

  .hero-brand {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    line-height: 1.5;
    max-width: 100%;
  }

  h2,
  .credentials-section h2,
  .brands-section h2,
  .results-section h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.14;
    max-width: 100%;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-panel,
  .feature-card,
  .info-card,
  .service-card,
  .booking-box,
  .gallery-card,
  .brand-card,
  .value-card,
  .result-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .result-card.result-card-image {
    padding: 0;
  }

  .nav {
    width: 100%;
    gap: 0.6rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .nav-dropdown,
  .dropdown-menu {
    position: static;
    display: flex;
    width: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown {
    flex-direction: row;
    gap: 0.35rem;
    align-items: center;
  }

  .dropdown-menu {
    display: none;
  }

  .nav a,
  .nav-parent {
    width: auto;
  }

  .nav-wrap > .button {
    width: 100%;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .button,
  .inline-actions .button,
  .booking-box .button,
  .obagi-form .button,
  .nav-wrap > .button {
    width: 100%;
  }

  .hamburger-btn {
    display: flex;
  }
  .site-header .nav-wrap {
    flex-wrap: wrap;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 0;
  }
  .nav.open {
    display: flex;
  }
  .nav a,
  .nav > div {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(184,154,95,0.15);
  }
  .nav > div:last-child,
  .nav a:last-of-type {
    border-bottom: none;
  }
  .nav-dropdown {
    flex-direction: column;
    gap: 0;
  }
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0;
    background: transparent;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-dropdown.open .dropdown-menu a {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--muted);
    border: none;
  }

  .hero-image,
  .gallery-card img {
    height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .eyebrow,
  .panel-label,
  .credentials-section .eyebrow,
  .brands-section .eyebrow,
  .results-section .eyebrow {
    letter-spacing: 0.12em;
    font-size: 0.76rem;
  }

  .lead,
  .section-intro,
  .small-note,
  .price-list,
  .hero-points,
  .info-card ul {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-brand {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-copy h1 {
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    letter-spacing: 0.06em;
  }

  .obagi-form input,
  .obagi-form textarea,
  .button {
    max-width: 100%;
  }
}

/* Obagi shop grid - 4 columns */
.obagi-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.obagi-shop-card {
  background: #ffffff;
  border: 1px solid rgba(184, 154, 95, 0.4);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(184, 154, 95, 0.06);
  transition: box-shadow 0.2s;
}

.obagi-shop-card:hover {
  box-shadow: 0 8px 20px rgba(184, 154, 95, 0.12);
}

.obagi-shop-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: #fff;
  padding: 0.4rem;
}

.obagi-shop-card.img-bigger img {
  height: 300px;
}


.obagi-shop-card h3 {
  font-family: "Avenir Next", "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0 0.1rem;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.03em;
}

.obagi-shop-card .product-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.obagi-shop-card .product-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-deep);
  margin-top: auto;
  padding-top: 0.35rem;
  font-family: "Inter", sans-serif;
}

.obagi-shop-card .enquire-link {
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.15rem;
  font-weight: 500;
}

.obagi-shop-card .enquire-link:hover {
  color: var(--accent-deep);
}

/* Contact page title fix */
.contact-title-one-line {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.location-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(180, 154, 106, 0.22);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(67, 52, 35, 0.08);
}

.location-card h3 {
  font-family: "Aboreto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 1.1rem;
}

.contact-details,
.contact-details p,
.contact-details a,
.contact-details strong {
  font-family: "Inter", sans-serif;
}

.contact-details p,
.contact-details a {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--dark);
}

.contact-details strong {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 600;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* Reviews Page Styles */
.reviews-hero .page-title {
  text-align: center;
}

.reviews-hero .section-intro {
  text-align: center;
}

.reviews-hero .container,
.reviews-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-cta {
  text-align: center;
}

.reviews-cta h2,
.reviews-cta p {
  text-align: center;
  width: 100%;
}

.reviews-cta .btn {
  margin: 0 auto;
}

.placeholder-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.placeholder-review {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.placeholder-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.placeholder-review-stars {
  color: #FFD700;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.placeholder-review-date {
  font-size: 0.875rem;
  color: var(--muted);
}

.placeholder-review-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.placeholder-review-author {
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

.review-cta-header {
  text-align: center;
  margin-bottom: 2rem;
}

.review-cta-panel {
  background: var(--dark);
  color: var(--text-light);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}

.review-cta-panel h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.review-cta-panel p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-cta-panel .button-dark {
  background: var(--text-light);
  color: var(--dark);
}

.review-cta-panel .button-dark:hover {
  background: white;
}

/* ===== Rich Footer Styles ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 1.5rem;
  text-align: left;
}

.footer-brand {
  font-family: "Avenir Next", "Bodoni Moda", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin: 0 0 0.5rem;
}

.footer-address {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin: 0;
}

.footer-heading {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  margin: 0 0 0.8rem;
  font-weight: 600;
}

.footer-grid a {
  display: block;
  color: var(--muted-light);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0 0.5rem;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted-light);
  margin: 0;
}

/* ===== Membership / Pricing Card Styles ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,243,236,0.98));
  border-color: rgba(184, 154, 95, 0.7);
  box-shadow: 0 10px 24px rgba(184, 154, 95, 0.12);
  position: relative;
  transform: scale(1.04);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card__header h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.pricing-card__amount {
  font-family: "Bodoni Moda", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--accent-deep);
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.pricing-card__features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-card__features li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* ===== Benefits Grid Styles ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.membership-hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.membership-cta-panel {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: var(--text-light);
  border-radius: 28px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.membership-cta-panel h2 {
  color: var(--text-light);
  margin: 0 0 0.5rem;
}

.membership-cta-panel p {
  color: var(--muted-light);
  margin: 0;
  font-size: 1rem;
}

/* ===== Mobile: footer & pricing grid ===== */
@media (max-width: 900px) {
  .obagi-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card-featured {
    transform: none;
  }

  .membership-cta-panel {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .obagi-shop-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
