/* ============================================================
   TOUCHÉ HAIRDRESSING — CATERHAM
   Main Stylesheet — Warm Neutral & Stone Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --black:        #161310;
  --dark:         #201d19;
  --gold:         #bba996;
  --gold-light:   #d4c4b5;
  --gold-dark:    #9e8c7c;
  --sage:         #819591;
  --cream:        #f6f4f1;
  --warm-white:   #edeae5;
  --grey-light:   #ddd9d3;
  --grey-mid:     #a09890;
  --text:         #2a2520;
  --text-light:   #6e645c;
  --white:        #ffffff;

  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:    1180px;
  --nav-height:   76px;
  --transition:   0.3s ease;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow:       0 4px 28px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --radius:       3px;
  --radius-lg:    8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(187,169,150,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--grey-light);
}
.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid rgba(187,169,150,0.18);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  font-size: 0.72rem;
  padding: 0.6rem 1.3rem;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO — CAROUSEL ===== */
.hero {
  position: relative;
  margin-top: var(--nav-height);
  width: 100%;
  height: calc(100svh - var(--nav-height));
  min-height: 480px;
  max-height: 860px;
  overflow: hidden;
  background: var(--dark);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(32,29,25,.72) 0%, rgba(32,29,25,.28) 55%, rgba(32,29,25,.08) 100%),
    linear-gradient(to top, rgba(32,29,25,.5) 0%, transparent 40%);
  z-index: 10;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: clamp(1.5rem, 6vw, 5rem);
  bottom: clamp(3rem, 8vh, 5.5rem);
  z-index: 20;
  max-width: 520px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .9s ease forwards .2s;
}

.hero-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .9s ease forwards .45s;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: .92rem;
  color: rgba(234,224,212,.82);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 400px;
  opacity: 0;
  animation: fadeUp .9s ease forwards .65s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s ease forwards .85s;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: .8rem 2rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--cream);
  padding: .8rem 2rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-badge {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  right: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 20;
  background: rgba(32,29,25,.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(187,169,150,.3);
  padding: 1rem 1.25rem;
  text-align: center;
}

.hero-badge .years {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-badge .label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.55;
  width: 0%;
  z-index: 20;
}

.hero-progress.running {
  animation: progressAnim 4.8s linear;
}

.hero-dots {
  position: absolute;
  bottom: clamp(1.25rem, 3vh, 1.75rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .3s, transform .3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

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

@keyframes progressAnim {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--cream);
  border-top: 1px solid rgba(187,169,150,.15);
  border-bottom: 1px solid rgba(187,169,150,.15);
  overflow: hidden;
  padding: 1rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  padding: 0 3rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 5rem) 2rem 5rem;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(187,169,150,0.12) 0%, transparent 65%),
    linear-gradient(180deg, #100d0a 0%, #1a1714 100%);
  z-index: 0;
}

/* Page hero with background image */
.page-hero--img {
  background-size: cover;
  background-position: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.page-hero--img::before {
  background: linear-gradient(180deg,
    rgba(22,19,16,0.72) 0%,
    rgba(22,19,16,0.60) 50%,
    rgba(22,19,16,0.82) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark .eyebrow {
  color: var(--gold);
}

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

.section--black {
  background: var(--black);
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.section__header p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}

.section--dark .section__header p {
  color: rgba(255,255,255,0.60);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
}

.intro-strip__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-strip h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.intro-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.intro-strip__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 0.4rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  height: 220px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2318 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card__icon::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(187,169,150,0.18);
  border-radius: 50%;
}

.service-card__icon svg {
  width: 56px;
  height: 56px;
  opacity: 0.85;
}

.service-card__img {
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  filter: grayscale(85%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1);
}

.service-card__body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.service-card__body p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex: 1;
}

.service-card__price {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ===== FEATURE LIST ===== */
.feature {
  display: flex;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-light);
}

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

.feature__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.feature__body h4 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.feature__body p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.product-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1.2rem;
  transition: gap var(--transition);
}

.product-card__link:hover { gap: 0.7rem; }

/* ===== PRICING TABLE ===== */
.pricing-section {
  padding: 6rem 0;
}

.pricing-category {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.pricing-category__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  border-bottom: 2px solid var(--grey-light);
  padding-bottom: 0.8rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-category__title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--grey-light) 0%, transparent 100%);
  margin-left: 0.5rem;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 1rem;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row__name {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 400;
}

.pricing-row__note {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}

.pricing-row__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-note {
  background: linear-gradient(135deg, #f8f6f3 0%, #f0ece6 100%);
  border: 1px solid rgba(187,169,150,0.28);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}

.pricing-note h4 {
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}

.pricing-note ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem 2rem;
}

.pricing-note ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-note ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info__icon svg { width: 18px; height: 18px; }

.contact-info__text h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.contact-info__text p,
.contact-info__text a {
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}

.contact-info__text a:hover { color: var(--gold-dark); }

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--grey-light);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.hours-table td:first-child {
  font-weight: 700;
  color: var(--text-light);
  width: 100px;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(187,169,150,0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(20%);
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2318 100%);
  position: relative;
  overflow: hidden;
}

.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(187,169,150,0.18) 0%, transparent 70%);
}

.blog-card__img--autumn {
  background: linear-gradient(135deg, #1e1710 0%, #28200f 60%, #161008 100%);
}
.blog-card__img--oligo {
  background: linear-gradient(135deg, #0e1824 0%, #142030 60%, #0a1018 100%);
}
.blog-card__img--opc {
  background: linear-gradient(135deg, #1a1610 0%, #241e12 60%, #14100a 100%);
}
.blog-card__img--crown {
  background: linear-gradient(135deg, #1e1c14 0%, #28241a 60%, #161410 100%);
}
.blog-card__img--trends {
  background: linear-gradient(135deg, #1e1710 0%, #28200f 60%, #161008 100%);
}
.blog-card__img--products {
  background: linear-gradient(135deg, #1a1610 0%, #241e12 60%, #14100a 100%);
}
.blog-card__img--news {
  background: linear-gradient(135deg, #141820 0%, #1c2030 60%, #10141a 100%);
}
.blog-card__img--advice {
  background: linear-gradient(135deg, #1c1810 0%, #261e14 60%, #14100a 100%);
}

.blog-card__body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.blog-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.blog-card__body p {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
  line-height: 1.65;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1.2rem;
  transition: gap var(--transition);
}

.blog-card__read-more:hover { gap: 0.7rem; }

/* ===== ARTICLE ===== */
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-light);
}

.article-meta__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-meta__read {
  font-size: 0.78rem;
  color: var(--text-light);
}

.article-meta__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--grey-mid);
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  color: var(--dark);
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.82;
  color: #2a2520;
  margin-bottom: 1.3rem;
}

.article-body ul {
  list-style: none;
  margin-bottom: 1.3rem;
}

.article-body ul li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 1rem;
  color: #2a2520;
  line-height: 1.65;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.article-body strong { color: var(--dark); font-weight: 700; }

.article-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2318 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}

.article-cta h3 { color: var(--white); margin-bottom: 0.7rem; }
.article-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }

.article-nav {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
  flex-wrap: wrap;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2318 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p {
  color: rgba(255,255,255,0.60);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

/* ===== LOCATION STRIP ===== */
.location-strip {
  background: var(--warm-white);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.location-strip p {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}

.location-strip h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.52);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand .nav__logo {
  margin-bottom: 1rem;
  display: block;
}
.footer__brand .nav__logo-img {
  height: 50px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.52);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social svg { width: 15px; height: 15px; }

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer__col ul li {
  margin-bottom: 0.55rem;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--gold); }

.footer__col p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.footer__col a {
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--grey-light);
}

.faq-item:first-child { border-top: 1px solid var(--grey-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.3rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 660px;
}

.faq-item.open .faq-answer { display: block; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { margin: 0 0.5rem; }

/* ===== MOBILE MENU OVERLAY ===== */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 2.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  color: rgba(255,255,255,0.80);
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--gold); }

.nav__mobile .btn {
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
  font-size: 0.85rem;
}

/* ===== INSTAGRAM FEED GRID ===== */
.instagram-feed__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.instagram-feed__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.instagram-feed__handle svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== SCROLL-UP BUTTON ===== */
#scroll-up-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  border: 1px solid rgba(187,169,150,0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  z-index: 950;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  pointer-events: none;
}

#scroll-up-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-up-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

@media (max-width: 480px) {
  #scroll-up-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.instagram-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  background: var(--warm-white);
}

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.instagram-grid__item:hover img {
  transform: scale(1.06);
}

.instagram-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,19,16,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  transition: background 0.35s ease;
}

.instagram-grid__item:hover .instagram-grid__overlay {
  background: rgba(22,19,16,0.70);
}

.instagram-grid__icon {
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
  flex-shrink: 0;
}

.instagram-grid__item:hover .instagram-grid__icon {
  opacity: 1;
  transform: translateY(0);
}

.instagram-grid__caption {
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-grid__item:hover .instagram-grid__caption {
  opacity: 1;
  transform: translateY(0);
}

.instagram-grid__video-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  background: rgba(22,19,16,0.60);
  color: var(--white);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.instagram-grid__loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.instagram-feed__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== ABOUT STORY GRID ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 66px; }

  /* Per-slide focal point fixes for mobile crop */
  .carousel-slide:nth-child(5) { object-position: 70% center; } /* pink hair – face right of centre */
  .carousel-slide:nth-child(6) { object-position: 65% center; } /* teal hair – face right of centre */

  .nav__links,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section { padding: 4rem 0; }

  .intro-strip__stats { gap: 2rem; }

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

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

  .pricing-row__name { font-size: 0.88rem; }

  .page-hero { padding: calc(var(--nav-height) + 3.5rem) 1.5rem 3.5rem; }

  .page-hero--img { padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem; }

  .article-body { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .btn { padding: 0.8rem 1.6rem; }

  .cta-band { padding: 4rem 1.5rem; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  border-top: 2px solid var(--gold);
  flex-wrap: wrap;
}
#cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  flex: 1;
  min-width: 200px;
}
#cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
#cookie-banner .btn--outline-dark {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}
#cookie-banner .btn--outline-dark:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}
.consent-placeholder {
  display: none;
  background: var(--warm-white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 85px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light), var(--sage), var(--gold-light));
}
.timeline__item {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  align-items: flex-start;
}
.timeline__meta {
  flex-shrink: 0;
  width: 70px;
  padding-top: 0.8rem;
  text-align: right;
}
.timeline__meta::after {
  content: '';
  position: absolute;
  left: 79px;
  top: 1.05rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--warm-white);
  z-index: 1;
}
.timeline__year {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.timeline__body {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold-light);
}
.timeline__item:last-child .timeline__meta::after {
  background: var(--sage);
}
.timeline__item:last-child .timeline__body {
  border-left-color: var(--sage);
  background: #f0f3f2;
}
.timeline__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.4rem;
}
.timeline__body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 640px) {
  .timeline::before { display: none; }
  .timeline__meta::after { display: none; }
  .timeline__item { flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
  .timeline__meta { width: auto; text-align: left; padding-top: 0; }
  .timeline__body { border-left: 3px solid var(--gold-light); }
  .timeline__item:last-child .timeline__body { border-left-color: var(--sage); }
}
