/* ============================================================
   TOUCHÉ HAIRDRESSING — PURLEY
   Main Stylesheet — Perfectly Taupe 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:        #3d3028;
  --dark:         #4e4038;
  --gold:         #dfcab2;
  --gold-light:   #ede0ce;
  --gold-dark:    #c9af97;
  --sage:         #a5b696;
  --cream:        #fdf9f6;
  --warm-white:   #f5ede3;
  --grey-light:   #e4d9cc;
  --grey-mid:     #b8a898;
  --text:         #3d3028;
  --text-light:   #7a6a5e;
  --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(223,202,178,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(223,202,178,0.18);
  transition: box-shadow var(--transition);
}

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

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

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo span {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

.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 — HOMEPAGE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Glow orbs — GPU-only animation (transform + opacity, no blur change) */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -15%;
  background: radial-gradient(circle, rgba(223,202,178,0.24) 0%, transparent 68%);
  filter: blur(72px);
  animation: glow1 14s ease-in-out infinite alternate;
}

.hero__glow--2 {
  width: 480px;
  height: 480px;
  bottom: -5%;
  right: -10%;
  background: radial-gradient(circle, rgba(165,182,150,0.20) 0%, transparent 68%);
  filter: blur(90px);
  animation: glow2 18s ease-in-out infinite alternate;
}

.hero__glow--3 {
  width: 340px;
  height: 340px;
  top: 45%;
  left: 52%;
  background: radial-gradient(circle, rgba(223,202,178,0.16) 0%, transparent 68%);
  filter: blur(60px);
  animation: glow3 22s ease-in-out infinite alternate;
}

@keyframes glow1 {
  0%   { opacity: 0.5; transform: translate(0,    0)    scale(1);    }
  35%  { opacity: 0.9; transform: translate(90px, 50px) scale(1.12); }
  70%  { opacity: 0.6; transform: translate(40px,-70px) scale(0.95); }
  100% { opacity: 1.0; transform: translate(-30px,90px) scale(1.18); }
}

@keyframes glow2 {
  0%   { opacity: 0.4; transform: translate(0,     0)     scale(1);    }
  40%  { opacity: 0.7; transform: translate(-70px,-50px)  scale(1.15); }
  100% { opacity: 0.5; transform: translate(50px,  70px)  scale(0.90); }
}

@keyframes glow3 {
  0%   { opacity: 0.3; transform: translate(0,   0)    scale(1);   }
  50%  { opacity: 0.7; transform: translate(60px,-40px) scale(1.3); }
  100% { opacity: 0.2; transform: translate(-50px,50px) scale(0.8); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(223,202,178,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 40%, rgba(165,182,150,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #2e231a 0%, #3d3028 45%, #3d3028 70%, #2e231a 100%);
  z-index: 0;
}

/* Subtle geometric texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 40px,
      rgba(223,202,178,0.025) 40px,
      rgba(223,202,178,0.025) 41px
    );
  z-index: 0;
}

/* Two-column inner wrapper */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 8rem 0 6rem;
}

/* Hero image — right column */
.hero__image {
  position: relative;
  z-index: 1;
  height: 620px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(223,202,178,0.16),
    0 32px 80px rgba(0,0,0,0.25),
    0 0 80px rgba(223,202,178,0.06);
  animation: heroImgReveal 1.2s ease forwards;
}

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

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Blend left edge into the dark background */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(46,35,26,0.50) 0%, transparent 38%),
    linear-gradient(to bottom, rgba(46,35,26,0.12) 0%, transparent 18%);
  pointer-events: none;
  border-radius: 16px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(223,202,178,0.35);
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.32);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(223,202,178,0.60), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== 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(223,202,178,0.12) 0%, transparent 65%),
    linear-gradient(180deg, #2e231a 0%, #3d3028 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(46,35,26,0.60) 0%,
    rgba(46,35,26,0.48) 50%,
    rgba(46,35,26,0.70) 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, #a5b696 0%, #7d9270 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(223,202,178,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%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.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(223,202,178,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(223,202,178,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, #a5b696 0%, #7d9270 100%);
  position: relative;
  overflow: hidden;
}

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

.blog-card__img--autumn {
  background: linear-gradient(135deg, #dfcab2 0%, #c9af97 60%, #b89b82 100%);
}
.blog-card__img--oligo {
  background: linear-gradient(135deg, #a5b696 0%, #8da37e 60%, #7d9270 100%);
}
.blog-card__img--opc {
  background: linear-gradient(135deg, #c4cfbb 0%, #a5b696 60%, #8da37e 100%);
}
.blog-card__img--crown {
  background: linear-gradient(135deg, #dfcab2 0%, #c9af97 60%, #b89b82 100%);
}
.blog-card__img--trends {
  background: linear-gradient(135deg, #c4cfbb 0%, #a5b696 60%, #8da37e 100%);
}
.blog-card__img--products {
  background: linear-gradient(135deg, #a5b696 0%, #8da37e 60%, #7d9270 100%);
}
.blog-card__img--news {
  background: linear-gradient(135deg, #dfcab2 0%, #c9af97 60%, #b89b82 100%);
}
.blog-card__img--advice {
  background: linear-gradient(135deg, #a5b696 0%, #8da37e 60%, #7d9270 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, #a5b696 0%, #7d9270 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, #a5b696 0%, #7d9270 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 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.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(223,202,178,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(46,35,26,0.48);
  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;
}

/* ===== 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; }

  .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; }

  /* Stack hero: text on top, image below */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .hero__content {
    text-align: center;
    padding: 7rem 0 2rem;
  }

  .hero__subtitle { margin: 0 auto 2rem; }

  .hero__ctas { justify-content: center; }

  .hero__image {
    height: 300px;
    margin-bottom: 3rem;
    border-radius: 12px;
  }

  .hero__title { font-size: clamp(2.4rem, 8vw, 4rem); }

  .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__ctas { flex-direction: column; align-items: center; }

  .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(--cream);
  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 10px rgba(61,48,40,0.05);
  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: #f4f7f2;
}
.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); }
}
