/* ============================================================
   BRONZE & GLOW — Boutique CSS v8
   Clean, single-source-of-truth stylesheet
   ============================================================ */

:root {
  --gold: #C9A96E;
  --gold-light: #DCC495;
  --gold-pale: rgba(201,169,110,0.12);
  --bronze: #8B6914;
  --ink: #1A1714;
  --ink-mid: rgba(26,23,20,0.72);
  --ink-soft: rgba(26,23,20,0.55);
  --ink-muted: rgba(26,23,20,0.42);
  --cream: #FAF6EF;
  --ivory: #F5EFE4;
  --parchment: #EDE5D6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --radius: 14px;
  --nav-h: 68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Loader ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.2rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 100px; opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards; }
.loader-line {
  width: 0; height: 1px; background: var(--gold); opacity: 0;
  animation: lineGrow 1.2s ease 0.5s forwards;
}
@keyframes lineGrow { from{width:0;opacity:0} to{width:80px;opacity:1} }
.loader-text {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--ink-muted); animation: loaderPulse 1.4s ease-in-out infinite 0.8s;
}
@keyframes loaderPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem,4vw,3rem);
  background: rgba(250,246,239,0.90);
  border-bottom: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,246,239,0.97);
  box-shadow: 0 2px 24px rgba(26,23,20,0.07);
}
.nav-logo-img {
  height: 34px; width: auto; object-fit: contain; cursor: pointer;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.75; }
.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none; cursor: pointer;
  position: relative; padding: 0.3rem 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  border: 1px solid var(--gold); padding: 0.6rem 1.4rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.35s ease; white-space: nowrap;
}
.nav-book:hover {
  background: transparent; color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,169,110,0.25);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 0.5rem; z-index: 1001;
}
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--ink-mid); transition: all 0.3s ease; display: block; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(250,246,239,0.98); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 2.2rem;
  padding-top: calc(var(--nav-h) + 2rem);
  opacity: 0; visibility: hidden; transition: all 0.45s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; font-weight: 300; letter-spacing: 0.08em;
  color: var(--ink); text-decoration: none; cursor: pointer; transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.gold { color: var(--gold); }
.mobile-menu .m-divider { width: 40px; height: 1px; background: var(--gold); opacity: 0.4; }

@media (max-width: 760px) {
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.9rem 2rem; cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.35s ease; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: transparent; color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,169,110,0.2);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,169,110,0.45);
}
.btn-outline:hover {
  border-color: var(--gold); background: rgba(201,169,110,0.08);
}

/* ── Type helpers ────────────────────────────────────────── */
.label {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
}
.section-label { display: block; margin-bottom: 1rem; }
.serif-heading {
  font-family: var(--serif); font-weight: 300; line-height: 1.1;
  color: var(--ink); letter-spacing: 0.01em;
}
.serif-heading em { font-style: italic; color: var(--gold); }
.h1 { font-size: clamp(2.8rem,7vw,5.5rem); }
.h2 { font-size: clamp(2rem,4vw,3rem); }
.h3 { font-size: clamp(1.5rem,2.5vw,2rem); }
.body-text {
  font-size: 0.92rem; font-weight: 300; line-height: 1.85; color: var(--ink-mid);
}
.body-text + .body-text { margin-top: 1rem; }
.highlight { color: var(--bronze); font-weight: 500; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); }
.section { padding: clamp(4rem,9vw,7rem) 0; }
.section-sm { padding: clamp(2.5rem,5vw,4.5rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-auto { grid-template-columns: 1fr; } }

.align-center { align-items: center; }
.text-center { text-align: center; }
.max-580 { max-width: 580px; }
.max-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Hero (home) ─────────────────────────────────────────── */
.home-hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center; padding: calc(var(--nav-h) + 1.4rem) 1.5rem 3rem;
  position: relative; overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(12,11,10,0.70) 0%, rgba(12,11,10,0.72) 45%, rgba(12,11,10,0.78) 100%),
    url('img_02_a0361ec2fa.jpg');
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  /* Mobile-first: fill screen */
  background-size: cover, cover;
}
.home-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  color: rgba(255,255,255,0.96);
}
.home-hero-logo {
  width: clamp(155px,28vw,245px); height: auto;
  margin-bottom: 1.0rem;
  transform: translateY(-52px);
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
  filter: none;
}
.home-hero .label {
  opacity: 0; animation: fadeUp 1s ease 0.55s forwards;
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,0.72);
}
.home-hero h1 {
  opacity: 0; animation: fadeUp 1s ease 0.75s forwards;
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.home-hero .subtitle {
  opacity: 0; animation: fadeUp 1s ease 0.95s forwards;
  color: rgba(255,255,255,0.72); margin-bottom: 2.0rem;
}
.home-hero .hero-tagline { font-weight: 600; letter-spacing: 0.01em; }
.home-hero .hero-tagline em { color: var(--gold); font-style: italic; font-weight: 600; }
.home-hero .ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s ease 1.1s forwards;
}
.home-hero .hero-links {
  margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 1.18s forwards;
}
.home-hero .hero-social .contact-icon { width: 52px; height: 52px; }
.btn.btn-directions { padding-left: 1.35rem; padding-right: 1.35rem; }
.home-hero .address {
  opacity: 0; animation: fadeUp 1s ease 1.3s forwards;
  margin-top: 2.8rem; font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.55);
}

/* ── Social icon buttons (more visible, clickable) ───────── */
.contact-buttons { display:flex; gap:0.7rem; align-items:center; flex-wrap:wrap; }
.contact-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,0.55);
  background: rgba(12,11,10,0.28);
  color: var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.contact-icon:hover { transform: translateY(-2px); background: rgba(201,169,110,0.12); border-color: rgba(201,169,110,0.85); }
.contact-icon svg { width: 22px; height: 22px; fill: currentColor; }

/* Spray shade codes image */
.shade-codes-img{
  width: min(460px, 92%);
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 12px 38px rgba(26,23,20,0.12);
}

/* Hero image strip */
.hero-image-strip {
  position: relative; z-index: 1;
  padding: 0 clamp(1rem,3vw,2.5rem);
  margin-top: 3rem;
}
.hero-image-strip-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem;
  max-width: 860px; margin: 0 auto;
  opacity: 0; animation: fadeUp 1.1s ease 1.4s forwards;
}
.hero-image-strip img {
  width: 100%; object-fit: cover; border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 10px 40px rgba(26,23,20,0.10);
}
.hero-image-strip img:first-child { height: clamp(200px,32vw,380px); }
.hero-image-strip img:last-child { height: clamp(160px,26vw,300px); align-self: center; }
@media (max-width: 580px) {
  .hero-image-strip-inner { grid-template-columns: 1fr; }
  .hero-image-strip img:last-child { display: none; }
}

/* ── Page hero (spray / rlt) ─────────────────────────────── */
.page-hero {
  height: clamp(340px,52vh,520px);
  position: relative; display: flex; align-items: flex-end;
  padding-bottom: 3.5rem;
  margin: var(--nav-h) clamp(1rem,2.5vw,2rem) 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.4s;
  border-radius: var(--radius);
}

/* Desktop: stop "over-zoom" on large screens by showing more of the image */
@media (min-width: 900px) {
  .home-hero-bg {
    background-position: center, center top;
    background-size: cover, contain;
  }
  .page-hero-img {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #0c0b0a;
  }
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.72) 0%, rgba(26,23,20,0.15) 55%, transparent 100%);
  border-radius: var(--radius);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(1.5rem,4vw,3rem);
}
.page-hero-content .label { color: rgba(201,169,110,0.9); margin-bottom: 0.7rem; }
.page-hero-content h1 { color: #FAF6EF; }
.page-hero-content h1 em { color: var(--gold-light); }
.page-hero-content .subtitle {
  color: rgba(250,246,239,0.65); margin-top: 1rem;
  font-size: 0.95rem; font-weight: 300; line-height: 1.7; max-width: 460px;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--ivory); border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.card:hover {
  border-color: rgba(201,169,110,0.42);
  box-shadow: 0 12px 36px rgba(26,23,20,0.09);
  transform: translateY(-3px);
}
.card-icon { font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.card h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.6rem;
}
.card p { font-size: 0.84rem; font-weight: 300; line-height: 1.75; color: var(--ink-soft); }

/* Service cards (home) */
.service-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  background: var(--ivory);
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none; display: block; color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(26,23,20,0.12);
}
.service-card-img {
  width: 100%; height: 220px; object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.4s;
}
.service-card:hover .service-card-img { filter: brightness(1); }
.service-card-body { padding: 1.6rem 1.8rem 2rem; }
.service-card-body .label { margin-bottom: 0.5rem; }
.service-card-body h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  line-height: 1.15; color: var(--ink); margin-bottom: 0.6rem;
}
.service-card-body h3 em { font-style: italic; color: var(--gold); }
.service-card-body p { font-size: 0.84rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1rem; }
.service-price-row { display: flex; align-items: baseline; justify-content: space-between; }
.service-price {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--gold);
}
.service-price small { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-muted); margin-left: 0.4rem; }
.service-arrow {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.5rem;
}
.service-arrow svg { width: 16px; transition: transform 0.3s; }
.service-card:hover .service-arrow svg { transform: translateX(4px); }

/* Price cards */
.price-card {
  background: var(--ivory); border: 1px solid rgba(201,169,110,0.22);
  border-radius: var(--radius); padding: 2.2rem 1.8rem;
  text-align: center; position: relative;
  transition: all 0.4s ease;
}
.price-card:hover {
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 12px 40px rgba(26,23,20,0.10);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--ivory), rgba(201,169,110,0.06));
}
.price-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 0.52rem; font-weight: 600; letter-spacing: 0.2em;
  padding: 0.28rem 0.9rem; white-space: nowrap;
}
.price-card h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.5rem;
}
.price-amount {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 300;
  color: var(--gold); margin: 0.8rem 0;
}
.price-amount small { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-muted); }
.price-detail {
  font-size: 0.8rem; font-weight: 300; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 1.0rem;
}
.price-card .btn { width: 100%; text-align: center; }

/* Benefit grid */
.benefit-card {
  padding: 1.4rem 1.2rem; border: 1px solid rgba(201,169,110,0.15);
  border-radius: 10px; background: var(--ivory);
  transition: border-color 0.3s, background 0.3s;
}
.benefit-card:hover { border-color: rgba(201,169,110,0.35); background: var(--cream); }
.benefit-icon { font-size: 1.2rem; margin-bottom: 0.7rem; }
.benefit-card h4 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--ink); margin-bottom: 0.4rem;
}
.benefit-card p { font-size: 0.78rem; line-height: 1.65; color: var(--ink-soft); }

/* Steps */
.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 1.3rem 0; border-bottom: 1px solid rgba(201,169,110,0.1);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  color: var(--gold); line-height: 1; min-width: 2.2rem; padding-top: 2px;
}
.step-item h4 {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--ink); margin-bottom: 0.3rem;
}
.step-item p { font-size: 0.81rem; color: var(--ink-soft); line-height: 1.65; }

/* Accent / callout box */
.callout {
  border-left: 3px solid var(--gold);
  background: rgba(201,169,110,0.06);
  padding: 1.6rem 1.8rem; border-radius: 0 10px 10px 0;
  margin: 1.8rem 0;
}
.callout p { font-size: 0.84rem; font-weight: 300; line-height: 1.8; color: var(--ink-mid); }
.callout p + p { margin-top: 0.8rem; }
.callout strong { color: var(--bronze); font-weight: 500; }

/* Testimonials */
.testimonial-card {
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.t-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.testimonial-card blockquote {
  font-family: var(--serif); font-size: 1rem; font-weight: 400; font-style: italic;
  line-height: 1.7; color: var(--ink-mid); margin-bottom: 1rem;
}
.testimonial-card cite {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(201,169,110,0.15); }
.faq-q {
  width: 100%; background: none; border: none;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 400; color: var(--ink);
  text-align: left; padding: 1.3rem 0;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { width: 15px; height: 15px; stroke: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.3rem; }
.faq-a p { font-size: 0.83rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

/* Wavelength visual */
.wave-visual { padding: 1.5rem 0; }
.wave-row { margin-bottom: 1.8rem; }
.wave-bar {
  height: 4px; border-radius: 2px; max-width: 320px; margin-bottom: 0.7rem;
}
.wave-bar.red { background: linear-gradient(90deg, #FF7060, #C44D3F); }
.wave-bar.nir { background: linear-gradient(90deg, #C44D3F, #7A1A1A); }
.wave-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.3rem; }
.wave-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.6; color: var(--ink-soft); }

/* Divider */
.divider { width: 50px; height: 1px; background: var(--gold); opacity: 0.35; margin: 0 auto; }
.divider-left { margin: 0; }

/* CTA Banner */
.cta-banner {
  padding: clamp(4rem,9vw,7rem) 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.1), transparent 65%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--serif); font-size: clamp(2rem,5vw,3rem); font-weight: 300;
  font-style: italic; color: var(--ink); margin-bottom: 1rem; line-height: 1.15;
}
.cta-banner h2 em { color: var(--gold); }
.cta-banner p {
  font-size: 0.88rem; font-weight: 300; color: var(--ink-soft);
  margin-bottom: 2rem; max-width: 440px; margin-left: auto; margin-right: auto;
}

/* Shade guide image */
.shade-guide {
  width: 100%; border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 12px 40px rgba(26,23,20,0.08);
}

/* Info section alt bg */
.section-alt { background: var(--ivory); }
.section-warm { background: var(--parchment); }

/* Footer */
footer {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 3.5rem clamp(1.2rem,4vw,3rem) 2rem;
  max-width: 1160px; margin: 0 auto;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 30px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.78rem; font-weight: 300; line-height: 1.7; color: var(--ink-muted); max-width: 260px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.78rem; font-weight: 300; color: var(--ink-muted); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.3s; cursor: pointer; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.8rem; }
.footer-social a {
  width: 32px; height: 32px; border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.footer-social svg { width: 14px; height: 14px; fill: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.1); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.65rem; font-weight: 300; color: rgba(26,23,20,0.3); letter-spacing: 0.08em; }

/* Footer Find Us block */
.footer-findus{
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.footer-findus .section-label{ margin-bottom: .6rem; }
.footer-findus-text{
  margin: 0;
  max-width: 680px;
  color: var(--ink-muted);
}
.footer-findus-icons{ margin-top: 1.1rem; }
.footer-findus-actions{ margin-top: 1.2rem; }
.footer-findus-actions .btn-directions{ width: fit-content; }
@media (max-width: 520px){
  .footer-findus-actions .btn-directions{ width: 100%; text-align:center; }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }


/* Contact icon buttons */
.contact-buttons{display:flex;gap:.8rem;align-items:center;justify-content:flex-start;flex-wrap:wrap;}
.contact-icon{width:42px;height:42px;border-radius:999px;border:1px solid rgba(201,169,110,0.35);display:grid;place-items:center;color:var(--gold);background:rgba(26,23,20,0.28);transition:transform .15s ease, background .15s ease,border-color .15s ease;}
.contact-icon:hover{transform:translateY(-1px);background:rgba(26,23,20,0.40);border-color:rgba(201,169,110,0.55);} 
.contact-icon svg{width:18px;height:18px;fill:currentColor;opacity:.95;}


/* --- V3 tweaks (homepage hero + icons + gold text) --- */
.home-hero-logo{
  max-width: 260px;
  width: min(72vw, 260px);
  margin-top: -18px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}
.nav-logo-img{ width: 170px; height:auto; }
.loader-logo{ width: 220px; height:auto; }

.home-hero .section-label,
.home-hero .hero-tagline,
.home-hero .hero-tagline em{
  color: var(--gold) !important;
}
.home-hero .hero-tagline{
  font-weight: 600;
  text-shadow: 0 10px 34px rgba(0,0,0,0.55);
}

.ctas.ctas-2{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-outline{
  border:1px solid rgba(201,169,110,0.75);
  color:var(--gold);
  background: rgba(0,0,0,0.18);
}
.btn-outline:hover{
  background: rgba(201,169,110,0.12);
  transform: translateY(-1px);
}

/* Make footer/social icons unmistakably visible + clickable */
.footer-social a,
.contact-icon{
  outline:none;
}
.footer-social a{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(201,169,110,0.95);
  display:grid;
  place-items:center;
  color:var(--ink);
  background: var(--gold);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.footer-social a:hover{
  transform: translateY(-1px);
  background: rgba(201,169,110,0.85);
  border-color: rgba(201,169,110,1);
}
.footer-social svg{
  width:18px;
  height:18px;
  fill: currentColor;
  opacity: .98;
}


/* Contact icon buttons on light sections */
.section-alt .contact-icon,
footer .contact-icon{
  background: var(--gold);
  color: var(--ink);
  border-color: rgba(201,169,110,0.95);
  box-shadow: 0 10px 22px rgba(26,23,20,0.10);
}
.section-alt .contact-icon:hover,
footer .contact-icon:hover{
  background: rgba(201,169,110,0.85);
  border-color: rgba(201,169,110,1);
}

/* Slightly lift logo on home hero */
.home-hero-logo{ margin-top: -26px; }


