/* ============================================================
   Personal Touch Medi-Spa — style.css
   Palette, typography, layout, and all components.
   Edit the :root variables below to change colours/fonts globally.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --charcoal:    #1a1714;
  --charcoal-2:  #221f1b;
  --charcoal-3:  #2e2a24;
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #9e7d4a;
  --sage:        #6b7c5c;
  --sage-light:  #8a9e78;
  --cream:       #f5f0e8;
  --cream-dark:  #e8e0d0;
  --white:       #ffffff;
  --text-body:   #c8c0b4;
  --text-muted:  #7a7060;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 16px;

  --transition: 0.3s ease;
  --shadow-gold: 0 4px 32px rgba(201, 169, 110, 0.15);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.4);

  --max-width: 1200px;
  --section-pad: 100px 24px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

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

ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

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

p { margin-bottom: 1rem; color: var(--text-body); }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow { margin-bottom: 12px; }

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
  opacity: 0.6;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--charcoal); }
.btn span { position: relative; z-index: 1; }

.btn-filled {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-filled::before { background: var(--gold-light); }
.btn-filled:hover { color: var(--charcoal); }

.btn-sage {
  border-color: var(--sage);
  color: var(--sage-light);
}
.btn-sage::before { background: var(--sage); }
.btn-sage:hover { color: var(--white); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
#nav-placeholder { position: relative; z-index: 1000; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  width: 112px;
  height: 112px;
  border-radius: 4px;
  object-fit: contain;
  background: transparent;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo-text .sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  transition: color var(--transition);
}

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--gold);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer-placeholder {}

.site-footer {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 72px 24px 32px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.footer-brand .footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-review-btn {
  font-size: 0.7rem;
  padding: 11px 22px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  margin-bottom: 20px;
  /* Subtle glow matching the gold palette */
  filter: drop-shadow(0 0 18px rgba(201, 169, 110, 0.18));
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(40%);
}

/* Placeholder hero bg gradient (used when no image) */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107, 124, 92, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 12px;
}

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

.hero-sub {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--sage-light);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(34,31,27,0.85);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.hero-card-item:last-child { border-bottom: none; }
.hero-card-price { color: var(--gold); font-weight: 500; }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 36px 24px;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── SERVICES SNAPSHOT (homepage) ───────────────────────────── */
.services-snapshot {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.service-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 40px 32px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover { border-color: rgba(201,169,110,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  transition: gap var(--transition);
}

.service-card-link:hover { gap: 14px; }

/* ── FEATURED IMAGE SECTION ─────────────────────────────────── */
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.featured-split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Placeholder for when no image is provided */
.img-placeholder {
  background: var(--charcoal-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 300px;
  border: 1px dashed rgba(201,169,110,0.15);
}

.img-placeholder-icon { font-size: 2.5rem; opacity: 0.4; }

.featured-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-split-img:hover img { transform: scale(1.04); }

.featured-split-content {
  background: var(--charcoal-2);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  background: var(--charcoal-3);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 24rem;
  color: rgba(201,169,110,0.04);
  position: absolute;
  top: -80px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(26,23,20,0.6);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 40px 36px;
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── SKINCEUTICALS SECTION ──────────────────────────────────── */
.skinceuticals-section {
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
  padding: var(--section-pad);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.skinc-badge {
  display: inline-block;
  border: 1px solid rgba(201,169,110,0.4);
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.skinc-product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.1);
  overflow: hidden;
}

.skinc-product-item {
  background: var(--charcoal-2);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  transition: background var(--transition);
}

.skinc-product-item:hover { background: var(--charcoal-3); }
.skinc-product-price { color: var(--gold); font-weight: 500; }

/* ── PROCESS / HOW IT WORKS ─────────────────────────────────── */
.process-section {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  background: var(--charcoal);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--cream);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--sage);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,0.3) 0%, transparent 60%);
}

.cta-banner h2 {
  color: var(--cream);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(245,240,232,0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  border-color: var(--cream);
  color: var(--cream);
}

.cta-banner .btn::before { background: var(--cream); }
.cta-banner .btn:hover { color: var(--sage); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 200px 24px 80px;
  background: var(--charcoal-2);
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
}

/* ── SERVICES PAGE ──────────────────────────────────────────── */
.services-page { padding: var(--section-pad); }

.service-category {
  margin-bottom: 72px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.category-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.category-count {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.1);
  overflow: hidden;
}

.price-item {
  background: var(--charcoal-2);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.price-item:hover { background: var(--charcoal-3); }

.price-item-name {
  font-size: 0.92rem;
  color: var(--cream);
}

.price-item-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 20px;
}

/* ── SKINCEUTICALS CATEGORIES ───────────────────────────────── */
.skinc-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.skinc-cat {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 28px 24px;
}

.skinc-cat-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.skinc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.84rem;
}

.skinc-item:last-child { border-bottom: none; }
.skinc-item-price { color: var(--gold); font-weight: 500; }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-intro {
  padding: var(--section-pad);
}

.about-values {
  background: var(--charcoal-2);
  padding: var(--section-pad);
}

.value-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 36px 28px;
  transition: var(--transition);
}

.value-card:hover { border-color: rgba(201,169,110,0.3); }

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-main {
  padding: var(--section-pad);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-text span, .contact-detail-text a {
  font-size: 0.95rem;
  color: var(--cream);
  transition: color var(--transition);
}

.contact-detail-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 48px 44px;
}

.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.4);
}

.form-group select option { background: var(--charcoal-2); }
.form-group textarea { height: 140px; resize: vertical; }

.form-submit { margin-top: 8px; }

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 0.88rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(107,124,92,0.15);
  border: 1px solid rgba(107,124,92,0.3);
  color: var(--sage-light);
}

.form-status.error {
  display: block;
  background: rgba(180,60,60,0.1);
  border: 1px solid rgba(180,60,60,0.3);
  color: #e08080;
}

/* Map */
.map-section {
  padding: 0 24px 80px;
}

.map-section .container { max-width: var(--max-width); }

.map-wrap {
  border: 1px solid rgba(201,169,110,0.15);
  overflow: hidden;
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(10%) sepia(10%) saturate(200%) hue-rotate(10deg);
}

/* FAQ */
.faq-section {
  background: var(--charcoal-2);
  padding: var(--section-pad);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; padding-bottom: 20px; }

.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; }
.fade-up.visible {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up:nth-child(2).visible { animation-delay: 0.12s; }
.fade-up:nth-child(3).visible { animation-delay: 0.24s; }
.fade-up:nth-child(4).visible { animation-delay: 0.36s; }

/* ── SVG WAVE DIVIDER ───────────────────────────────────────── */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg { display: block; width: 100%; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .skinc-categories { grid-template-columns: repeat(2, 1fr); }
  .skinc-product-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --section-pad: 72px 24px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }

  .featured-split { grid-template-columns: 1fr; }
  .featured-split-content { padding: 56px 36px; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }

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

@media (max-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 1.9rem; }

  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .skinc-categories { grid-template-columns: 1fr; }
  .skinc-product-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}
