/* =========================================================
   SKIN SHINE BY DR. ANITHA — CORE STYLESHEET
   Luxurious, editorial, medical-grade aesthetic
   ========================================================= */

:root {
  /* Palette — Skin Shine brand (rose gold / copper / terracotta) */
  --clr-bg: #FBF4EC;
  --clr-bg-alt: #F4E4D6;
  --clr-cream: #FEF9F3;
  --clr-ink: #2B1812;
  --clr-ink-2: #4E2E25;
  --clr-muted: #8F6E63;
  --clr-line: #EBD3C1;
  --clr-primary: #B85C4A;         /* brand rose/copper */
  --clr-primary-2: #8B3A2E;       /* deep terracotta */
  --clr-primary-dark: #4A1A12;    /* rich burgundy-brown for dark sections */
  --clr-accent: #C26B5C;          /* warm copper */
  --clr-accent-2: #E0A094;        /* rose gold */
  --clr-accent-3: #F5D5C7;        /* pale peach */
  --clr-blush: #F2DCD1;
  --clr-rose: #D98777;
  --clr-white: #ffffff;

  /* Type */
  --ff-display: 'Cormorant Garamond', 'Italiana', serif;
  --ff-sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Radii & motion */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-sm: 0 4px 20px rgba(26, 27, 31, .06);
  --shadow-md: 0 18px 60px rgba(26, 27, 31, .10);
  --shadow-lg: 0 30px 80px rgba(139, 58, 46, .18);

  /* Layout */
  --nav-h: 82px;
  --section-pad: clamp(80px, 9vw, 140px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-ink);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }

::selection { background: var(--clr-primary); color: var(--clr-cream); }

/* ===== LAYOUT ===== */
.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  color: var(--clr-ink);
}
.section-title em {
  font-style: italic;
  color: var(--clr-primary);
  position: relative;
}
.section-title.light { color: var(--clr-cream); }
.section-title.light em { color: var(--clr-accent-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--clr-primary);
}
.eyebrow.light { color: var(--clr-accent-2); }
.eyebrow.light::before { background: var(--clr-accent-2); }

.lede { font-size: 1.1rem; color: var(--clr-ink-2); max-width: 52ch; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-desc { color: var(--clr-muted); font-size: 1.06rem; }

.gradient-text {
  background: linear-gradient(120deg, var(--clr-rose) 0%, var(--clr-accent) 50%, var(--clr-primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.link-arrow {
  font-weight: 600;
  color: var(--clr-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--clr-accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-cream);
  box-shadow: 0 10px 30px rgba(139, 58, 46, .28);
}
.btn--primary:hover {
  background: var(--clr-ink);
  box-shadow: 0 14px 40px rgba(139, 58, 46, .38);
}
.btn--ghost {
  background: transparent;
  color: var(--clr-ink);
  border-color: var(--clr-ink);
}
.btn--ghost:hover { background: var(--clr-ink); color: var(--clr-cream); }
.btn--outline {
  background: transparent;
  color: var(--clr-cream);
  border-color: var(--clr-cream);
}
.btn--outline:hover { background: var(--clr-cream); color: var(--clr-primary); }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--clr-primary);
  color: var(--clr-cream);
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 32px;
  grid-auto-flow: row;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-display);
  font-size: 2.2rem;
}
.preloader__mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: var(--clr-primary);
  display: grid; place-items: center;
  font-weight: 600;
}
.preloader__bar {
  width: 220px; height: 2px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
  border-radius: 999px;
}
.preloader__bar span {
  display: block; height: 100%;
  background: var(--clr-accent);
  transform: translateX(-100%);
  animation: loadBar 1.4s var(--ease) forwards;
}
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== ANNOUNCE ===== */
.announce {
  background: var(--clr-ink);
  color: var(--clr-cream);
  font-size: .82rem;
}
.announce__inner {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
}
.announce__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 0 4px rgba(200, 158, 106, .2);
}
.announce p { margin: 0; flex: 1; }
.announce__cta {
  font-weight: 600;
  color: var(--clr-accent-2);
  white-space: nowrap;
}
.announce__cta:hover { color: var(--clr-white); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 246, 241, .82);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 246, 241, .95);
  border-bottom-color: var(--clr-line);
  box-shadow: 0 6px 30px rgba(0,0,0,.05);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: var(--nav-h);
}
.nav__brand {
  display: flex; align-items: center;
  font-family: var(--ff-display);
}
.nav__brand-logo {
  height: 56px;
  width: auto;
  max-width: 280px;
  display: block;
}
@media (max-width: 640px) {
  .nav__brand-logo { height: 44px; max-width: 210px; }
}

.nav__menu {
  display: flex; align-items: center; gap: 32px;
}
.nav__menu a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--clr-ink-2);
  padding: 6px 0;
}
.nav__menu a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--clr-primary);
  transition: width .3s var(--ease);
}
.nav__menu a:hover { color: var(--clr-primary); }
.nav__menu a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__call {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600;
  color: var(--clr-ink);
}
.nav__call svg { width: 16px; height: 16px; color: var(--clr-primary); }
.nav__call:hover { color: var(--clr-primary); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-ink);
  color: var(--clr-cream);
  padding: 0; border: 0;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.nav__toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.nav__toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(32px, 4vw, 60px) 0 clamp(70px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}
.hero__gradient {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 40% at 20% 30%, rgba(242, 215, 207, .5) 0%, transparent 60%),
    radial-gradient(35% 35% at 85% 70%, rgba(200, 158, 106, .3) 0%, transparent 60%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
  animation: blobFloat 16s var(--ease) infinite alternate;
}
.hero__blob--1 {
  width: 520px; height: 520px;
  top: -120px; left: -120px;
  background: radial-gradient(circle, var(--clr-blush) 0%, transparent 70%);
}
.hero__blob--2 {
  width: 600px; height: 600px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(139, 58, 46, .28) 0%, transparent 70%);
  animation-delay: -6s;
}
@keyframes blobFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .5;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.25'/></svg>");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(184, 92, 74, .10);
  color: var(--clr-primary);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 28px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-primary);
  position: relative;
}
.pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--clr-primary);
  opacity: .3;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--clr-ink);
}
.hero__title em {
  font-style: italic;
  color: var(--clr-primary);
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--clr-ink-2);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--clr-line);
}
.hero__trust li { display: flex; flex-direction: column; gap: 4px; }
.hero__trust strong {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1;
}
.hero__trust span {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.hero__card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--clr-cream);
  box-shadow: var(--shadow-lg);
}
.hero__card--main {
  inset: 0;
  transform: rotate(-2deg);
  animation: floatMain 8s ease-in-out infinite;
}
.hero__card--main img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floatMain {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}
.hero__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero__badge svg { width: 22px; height: 22px; color: var(--clr-accent); }
.hero__badge strong { display: block; font-size: .9rem; color: var(--clr-ink); }
.hero__badge span { font-size: .7rem; color: var(--clr-muted); }

.hero__card--float {
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  min-width: 220px;
  border-radius: var(--r-md);
}
.hero__card--float:first-of-type { top: 40px; right: -30px; animation: float1 6s ease-in-out infinite; }
.hero__card--bottom { bottom: 30px; left: -40px; animation: float2 7s ease-in-out infinite; }
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}
.hero__mini-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--clr-primary);
  color: var(--clr-accent-2);
  display: grid; place-items: center;
}
.hero__mini-icon.alt { background: var(--clr-accent); color: var(--clr-primary); }
.hero__mini-icon svg { width: 22px; height: 22px; }
.hero__card--float strong { display: block; font-size: .85rem; font-weight: 600; }
.hero__card--float span { font-size: .72rem; color: var(--clr-muted); }

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.hero__scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--clr-primary) 50%, transparent);
  animation: scrollDot 2s linear infinite;
}
@keyframes scrollDot {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero__scroll p { margin: 0; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--clr-primary);
  color: var(--clr-cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee__group { display: flex; gap: 60px; }
.marquee__group span {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: var(--clr-cream);
  white-space: nowrap;
}
.marquee__group span:nth-child(even) { color: var(--clr-accent-2); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad) 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}
.about__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.about__image-wrap:hover img { transform: scale(1.05); }

/* Brand portrait placeholder (no stock photo) */
.about__portrait {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(255,255,255,.45) 0%, transparent 60%),
    radial-gradient(50% 40% at 80% 90%, rgba(74, 26, 18, .25) 0%, transparent 60%),
    linear-gradient(145deg, var(--clr-accent-2) 0%, var(--clr-primary) 55%, var(--clr-primary-2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
  color: var(--clr-cream);
}
.about__monogram {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--clr-cream);
  position: relative;
  text-shadow: 0 8px 30px rgba(74, 26, 18, .35);
}
.about__monogram::before,
.about__monogram::after {
  content: "✦";
  position: absolute;
  color: var(--clr-accent-3);
  font-size: 1.8rem;
  font-weight: 300;
  opacity: .9;
}
.about__monogram::before { top: -10px; left: -30px; }
.about__monogram::after { bottom: 10px; right: -30px; font-size: 1.2rem; }
.about__portrait-label {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-top: 10px;
}
.about__portrait-sub {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}
/* Overlay photo (graceful fallback to brand portrait if image fails) */
.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1s var(--ease);
}
.about__image-wrap:hover .about__photo { transform: scale(1.05); }
.about__image-wrap::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(74, 26, 18, .45));
  pointer-events: none;
}
.about__experience { z-index: 3; }
.about__experience {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(74, 26, 18, .92);
  backdrop-filter: blur(12px);
  color: var(--clr-cream);
  padding: 22px 24px;
  border-radius: var(--r-md);
  max-width: 240px;
}
.about__experience strong {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--clr-accent-2);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.about__experience span {
  font-size: .82rem;
  line-height: 1.4;
}
.about__sparkle {
  position: absolute;
  right: -30px; top: -30px;
  width: 160px; height: 160px;
  border: 1px dashed var(--clr-accent);
  border-radius: 50%;
  z-index: -1;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0;
}
.about__points li {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.about__point-icon {
  width: 36px; height: 36px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-accent-2);
  display: grid; place-items: center;
}
.about__point-icon svg { width: 18px; height: 18px; }
.about__points strong { display: block; color: var(--clr-ink); margin-bottom: 2px; }
.about__points p { margin: 0; font-size: .9rem; color: var(--clr-muted); }

.about__cta {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service {
  background: var(--clr-cream);
  padding: 32px 28px 28px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  border: 1px solid transparent;
}
.service::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-primary-2) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 0;
}
.service > * { position: relative; z-index: 1; }
.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service:hover::before { opacity: 1; }
.service:hover h3,
.service:hover p,
.service:hover .service__link { color: var(--clr-cream); }
.service:hover .service__icon {
  background: var(--clr-accent);
  color: var(--clr-primary);
  transform: rotate(-6deg) scale(1.05);
}
.service__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--clr-primary);
  color: var(--clr-accent-2);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: all .4s var(--ease);
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 10px;
  transition: color .3s var(--ease);
}
.service p {
  font-size: .92rem;
  color: var(--clr-muted);
  margin: 0 0 18px;
  transition: color .3s var(--ease);
}
.service__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: color .3s var(--ease);
}

/* ===== STORY ===== */
.story {
  background: linear-gradient(135deg, var(--clr-primary-2) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-cream);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  right: -10%; top: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,158,106,.25) 0%, transparent 70%);
  filter: blur(60px);
}
.story::after {
  content: "";
  position: absolute;
  left: -10%; bottom: -20%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 215, 207, .15) 0%, transparent 70%);
  filter: blur(70px);
}
.story__text { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.story__text p {
  font-size: 1.15rem;
  color: rgba(248, 242, 234, .82);
  max-width: 68ch;
  margin: 0 auto 60px;
}
.story__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}
.story__pillars > div {
  padding: 30px;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.story__pillars > div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .07);
}
.story__pillars strong {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--clr-accent-2);
  display: block;
  margin-bottom: 12px;
}
.story__pillars h4 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--clr-cream);
}
.story__pillars p {
  font-size: .92rem;
  color: rgba(248,242,234,.75);
  margin: 0;
  max-width: none;
}

/* ===== TREATMENTS / TABS ===== */
.treatments { padding: var(--section-pad) 0; }
.tabs {
  background: var(--clr-cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}
.tabs__nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--clr-line);
  margin-bottom: 24px;
}
.tabs__btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--clr-muted);
  transition: all .3s var(--ease);
}
.tabs__btn:hover { color: var(--clr-primary); }
.tabs__btn.is-active {
  background: var(--clr-primary);
  color: var(--clr-cream);
}
.tabs__panel { display: none; padding: 20px 10px 30px; }
.tabs__panel.is-active { display: block; animation: fadeSlide .5s var(--ease); }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tabs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tabs__grid > div {
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: var(--clr-bg);
  transition: transform .3s var(--ease), background .3s var(--ease);
  border: 1px solid transparent;
}
.tabs__grid > div:hover {
  transform: translateY(-4px);
  background: var(--clr-white);
  border-color: var(--clr-line);
}
.tabs__grid h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 8px;
}
.tabs__grid p {
  font-size: .9rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ===== RESULTS / GALLERY ===== */
.results {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-alt);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  margin: 0;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__art {
  position: absolute; inset: 0;
  overflow: hidden;
  transition: transform 1s var(--ease);
}
.gallery__art svg {
  width: 100%; height: 100%;
  display: block;
}
.gallery__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1s var(--ease);
}
.gallery__item:hover .gallery__art,
.gallery__item:hover .gallery__photo { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(74, 26, 18, .82));
  opacity: .6;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.gallery__item:hover::after { opacity: .92; }
.gallery__item figcaption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  color: var(--clr-cream);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(6px);
  transition: transform .4s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); }
.gallery__item figcaption strong {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.gallery__item figcaption span {
  font-size: .78rem;
  letter-spacing: .06em;
  opacity: .85;
}
/* dark gallery tiles — lighter overlay for legibility of light SVGs */
.gallery__item--cream::after,
.gallery__item--peach::after {
  background: linear-gradient(180deg, transparent 30%, rgba(74, 26, 18, .88));
}

/* ===== WHY ===== */
.why { padding: var(--section-pad) 0; }
.why__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.why__head .eyebrow { justify-content: center; }
.why__head .eyebrow::before { display: none; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why__card {
  padding: 40px 28px;
  border-radius: var(--r-md);
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}
.why__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 600;
}
.why__card h4 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 10px;
}
.why__card p {
  font-size: .92rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-alt);
  overflow: hidden;
}
.reviews__slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.reviews__track {
  display: flex;
  gap: 28px;
  transition: transform .6s var(--ease);
}
.review {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--clr-cream);
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review__stars {
  color: var(--clr-accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--clr-ink-2);
  margin: 0 0 24px;
}
.review footer {
  font-weight: 600;
  font-size: .9rem;
  color: var(--clr-ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review footer span {
  font-weight: 400;
  font-size: .78rem;
  color: var(--clr-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.reviews__controls {
  display: flex; gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.reviews__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clr-cream);
  color: var(--clr-primary);
  font-size: 1.6rem;
  border: 1px solid var(--clr-line);
  transition: all .3s var(--ease);
}
.reviews__btn:hover {
  background: var(--clr-primary);
  color: var(--clr-cream);
  transform: scale(1.05);
}

/* ===== BOOKING ===== */
.book {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--clr-primary-2) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-cream);
  position: relative;
  overflow: hidden;
}
.book::before {
  content: "";
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,158,106,.15) 0%, transparent 70%);
}
.book__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.book__content .section-title { max-width: 440px; }
.book__content p {
  color: rgba(248, 242, 234, .76);
  font-size: 1.06rem;
  max-width: 52ch;
  margin-bottom: 40px;
}
.book__info { display: flex; flex-direction: column; gap: 22px; }
.book__info li {
  display: flex; gap: 16px;
  align-items: center;
}
.book__info svg {
  width: 22px; height: 22px;
  color: var(--clr-accent-2);
  flex: 0 0 auto;
}
.book__info strong { color: var(--clr-cream); font-size: 1.05rem; display: block; }
.book__info span { color: rgba(248,242,234,.65); font-size: .85rem; }

.book__form {
  background: var(--clr-cream);
  color: var(--clr-ink);
  padding: 44px 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.book__form h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 24px;
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: .96rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-sm);
  color: var(--clr-ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(184, 92, 74, .15);
}
.field textarea { resize: vertical; min-height: 90px; }
.book__note {
  font-size: .75rem;
  color: var(--clr-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* Success state */
.book__form.is-success {
  background: var(--clr-cream);
  text-align: center;
}
.book__form.is-success > :not(.book__success) { display: none; }
.book__success {
  display: none;
  padding: 20px 0;
}
.book__form.is-success .book__success { display: block; }
.book__success h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

/* ===== CONTACT ===== */
.contact { padding: var(--section-pad) 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-top: 30px;
}
.contact__grid h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin: 0 0 8px;
}
.contact__grid p {
  font-size: .95rem;
  color: var(--clr-ink-2);
  margin: 0;
}
.contact__grid a:hover { color: var(--clr-primary); }
.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-line);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.9);
}

/* ===== FAQ ===== */
.faq { padding: var(--section-pad) 0; background: var(--clr-bg-alt); }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  padding: 22px 28px;
  margin-bottom: 12px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--clr-primary);
  transition: transform .3s var(--ease);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 16px 0 0;
  color: var(--clr-muted);
  font-size: .96rem;
}

/* ===== CTA BANNER ===== */
.cta {
  padding: clamp(70px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(224, 160, 148, .28) 0%, transparent 60%),
    radial-gradient(60% 60% at 10% 90%, rgba(242, 220, 209, .18) 0%, transparent 60%),
    linear-gradient(120deg, var(--clr-primary-2) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-cream);
}
.cta::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(224, 160, 148, .35);
  animation: spin 40s linear infinite;
  pointer-events: none;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta__inner p {
  color: rgba(248,242,234,.75);
  max-width: 44ch;
  margin: 10px 0 0;
}
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-ink);
  color: rgba(248,242,234,.7);
  padding: 80px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font-family: var(--ff-display);
}
.footer__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-accent);
  display: grid; place-items: center;
}
.footer__mark svg { width: 22px; height: 22px; }
.footer__brand strong { display: block; font-size: 1.3rem; color: var(--clr-cream); font-weight: 600; }
.footer__brand span { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(248,242,234,.5); font-family: var(--ff-sans); }
.footer__col p { font-size: .9rem; line-height: 1.7; }
.footer h5 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-cream);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .9rem; }
.footer ul a:hover { color: var(--clr-accent-2); }
.footer__col a:hover { color: var(--clr-accent-2); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { margin: 0; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  z-index: 80;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37, 211, 102, .5);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { max-width: 520px; margin: 0 auto; aspect-ratio: 4 / 4.5; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__image-wrap { max-width: 500px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .tabs__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .book__inner, .contact__inner { grid-template-columns: 1fr; gap: 50px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .review { flex: 0 0 calc(50% - 14px); }
  .story__pillars { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav__call span { display: none; }
  .nav__toggle { display: grid; }
  .nav__menu.is-open {
    display: flex;
    position: absolute;
    top: calc(var(--nav-h) + 0px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    background: var(--clr-cream);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--clr-line);
  }
  .nav__menu.is-open a {
    padding: 14px 24px;
    width: 100%;
  }
  .announce__cta { display: none; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .about__points { grid-template-columns: 1fr; }
  .hero__card--float { min-width: 180px; }
  .hero__card--float:first-of-type { right: -10px; top: 20px; }
  .hero__card--bottom { left: -10px; bottom: 20px; }
}
@media (max-width: 640px) {
  :root { --section-pad: 70px; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .services__grid { grid-template-columns: 1fr; }
  .tabs__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .review { flex: 0 0 calc(100% - 0px); }
  .book__form { padding: 32px 24px; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .hero__badge { left: 12px; bottom: 12px; padding: 10px 14px; }
  .hero__card--float { display: none; }
  .book__content .section-title { max-width: none; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* spec-tile: clickable treatment tiles in #treatments grid (added) */
.spec-tile { display:block; color:inherit; text-decoration:none; transition: transform .25s ease, box-shadow .25s ease; }
.spec-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,92,74,.12); }
.spec-tile h4 { color: inherit; }


/* All-Treatments pre-footer (added) */
.pre-footer { background: #FAF6F1; padding: 64px 0 56px; border-top: 1px solid #ECE3D6; }
.pre-footer__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.pre-footer__head .eyebrow { display:inline-block; color:#B85C4A; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px; }
.pre-footer__head h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 500; color: #2A1F18; margin: 0 0 8px; }
.pre-footer__head h2 em { font-style: italic; color: #B85C4A; }
.pre-footer__head p { color: #5C4A3D; line-height: 1.6; margin: 0; font-size: 15px; }
.pre-footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.pre-footer__col h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 19px; color: #2A1F18; margin: 0 0 14px; padding-bottom: 8px; border-bottom: 1px solid #ECE3D6; font-weight: 600; }
.pre-footer__col ul { list-style: none; padding: 0; margin: 0; }
.pre-footer__col li { margin: 0 0 8px; }
.pre-footer__col a { color: #5C4A3D; text-decoration: none; font-size: 14px; line-height: 1.45; transition: color .15s ease; display:inline-block; }
.pre-footer__col a:hover { color: #B85C4A; }
@media (max-width: 980px) { .pre-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pre-footer__grid { grid-template-columns: 1fr; gap: 24px; } .pre-footer { padding: 44px 0 36px; } }


/* Accessibility: skip-to-content link (added) */
.skip-link { position: absolute; top: -60px; left: 0; background: #2A1F18; color: #FEF9F3; padding: 12px 18px; z-index: 9999; font-weight: 600; font-size: 14px; text-decoration: none; border-radius: 0 0 6px 0; transition: top .15s ease; }
.skip-link:focus { top: 0; outline: 2px solid #B85C4A; outline-offset: 2px; }
