/* ═══════════════════════════════════════════════════════════
   E.J. Beauty Atelier — Main Stylesheet
   Palette: #C9B99A warm taupe | #F5F0EA ivoor | #2C2C2C near-black
            #8B7355 dark taupe | #FFFFFF white
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --taupe:      #C9B99A;
  --taupe-dark: #8B7355;
  --taupe-pale: #E8DDD0;
  --ivory:      #F5F0EA;
  --ivory-dark: #EDE5D8;
  --near-black: #2C2C2C;
  --warm-grey:  #6B6159;
  --white:      #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s ease;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--near-black);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── GLOBAL IMAGE RULES ──────────────────────────────────── */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.card__img-wrap > img, .about-split__img > img,
.gift-section__img > img, .academy-section__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.h2-serif {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--near-black);
  letter-spacing: -0.01em;
}
.h2-serif em {
  font-style: italic;
  color: var(--taupe-dark);
}
.h2-serif--light { color: var(--white); }

h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--near-black);
}
p { color: var(--warm-grey); margin-bottom: var(--space-sm); }
a { color: inherit; text-decoration: none; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--taupe-pale); }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}
.section-intro {
  font-size: 1.05rem;
  margin-top: 1rem;
  color: var(--warm-grey);
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--taupe);
  color: var(--near-black);
  border-color: var(--taupe);
}
.btn-primary:hover {
  background: var(--taupe-dark);
  color: var(--white);
  border-color: var(--taupe-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245,240,234,0.5);
}
.btn-ghost-light:hover {
  background: rgba(245,240,234,0.1);
  border-color: var(--ivory);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--taupe-pale);
}
.btn-outline-light:hover {
  background: var(--taupe);
  color: var(--near-black);
  border-color: var(--taupe);
}
.btn-large { padding: 1rem 2.25rem; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--taupe);
  color: var(--near-black);
  border-color: var(--taupe);
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
}
.btn-nav:hover {
  background: var(--taupe-dark);
  color: var(--white);
}

/* ── STICKY NAV ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(201,185,154,0.2);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(44,44,44,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: var(--nav-h);
  padding: 0 var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-monogram {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1;
  letter-spacing: 0.03em;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
  margin-right: var(--space-sm);
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--near-black);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a:hover {
  color: var(--taupe-dark);
  border-bottom-color: var(--taupe);
}

/* ── MOBILE MENU TRIGGER ─────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--near-black);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY (fullscreen kit) ────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  height: 100svh;
  z-index: 1000;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--near-black);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: var(--ivory-dark); }
.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 3rem 2rem;
  width: 100%;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.mobile-menu__logo .logo-monogram { font-size: 2rem; }
.mobile-menu__logo .logo-text { font-size: 0.78rem; }
.mobile-menu__list {
  list-style: none;
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
}
.mobile-menu__list li {
  border-bottom: 1px solid var(--ivory-dark);
}
.mobile-menu__list li:first-child {
  border-top: 1px solid var(--ivory-dark);
}
.mobile-menu__item {
  display: block;
  padding: 1.1rem 1rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--near-black);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.mobile-menu__item:hover { color: var(--taupe-dark); }
.mobile-menu__cta { margin-bottom: 2rem; }
.mobile-menu__meta {
  text-align: center;
  font-size: 0.8rem;
  color: var(--warm-grey);
  line-height: 1.8;
}
.mobile-menu__meta p { margin: 0; color: var(--warm-grey); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  margin-top: 0;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,44,44,0.1) 0%,
    rgba(44,44,44,0.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-pale);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--taupe-pale);
}
.hero__subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}
.scroll-dot { animation: scrollDot 1.8s ease-in-out infinite; }

/* ── TAGLINE STRIP ───────────────────────────────────────── */
.tagline-strip {
  background: var(--near-black);
  padding: 1.5rem var(--space-md);
}
.tagline-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.tagline-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-pale);
}
.tagline-list li svg { flex-shrink: 0; }

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.about-split__img {
  aspect-ratio: auto;
  height: 100%;
}
.about-split__content {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}
.about-split__content .h2-serif { margin-bottom: 1rem; }
.about-split__content p { font-size: 1.05rem; }
.about-split__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 2px solid var(--taupe);
  padding-left: 0.85rem;
}
.badge__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--near-black);
  line-height: 1;
}
.badge__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 0.25rem;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services-section {
  padding: var(--space-xl) 0;
  background: var(--ivory);
}

/* ── CARDS ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,44,44,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,44,44,0.12);
}
.card__img-wrap {
  height: 220px;
  overflow: hidden;
}
.card__img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.card:hover .card__img-wrap > img { transform: scale(1.04); }
.card__body {
  padding: 1.75rem;
}
.card__icon {
  width: 44px;
  height: 44px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-dark);
  margin-bottom: 1rem;
}
.card__body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.card__body p { font-size: 0.92rem; margin-bottom: 1rem; }
.card__list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--warm-grey);
}
.card__list li {
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 1px solid var(--ivory-dark);
}
.card__list li:last-child { border-bottom: none; }
.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--taupe);
  border-radius: 50%;
}
.services-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--ivory-dark);
  border-left: 3px solid var(--taupe);
  padding: 1.1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.services-note svg { flex-shrink: 0; color: var(--taupe-dark); margin-top: 2px; }
.services-note p { font-size: 0.9rem; margin: 0; color: var(--warm-grey); }
.section-cta { text-align: center; }

/* ── ACADEMY SECTION ─────────────────────────────────────── */
.academy-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.academy-section__bg {
  position: absolute;
  inset: 0;
}
.academy-section__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.academy-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,44,44,0.88) 0%,
    rgba(44,44,44,0.65) 100%
  );
}
.academy-section__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
}
.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.academy-grid__text .section-eyebrow { margin-bottom: 1rem; }
.academy-grid__text .h2-serif { margin-bottom: 1.5rem; }
.academy-grid__text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.academy-grid__text p em { color: var(--taupe-pale); font-style: italic; }
.academy-grid__text .btn-outline-light { margin-top: 1.5rem; }
.academy-grid__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.academy-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,185,154,0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}
.academy-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(201,185,154,0.6);
}
.academy-card__icon {
  color: var(--taupe-pale);
  margin-bottom: 0.85rem;
}
.academy-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.academy-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── GIFT SECTION ────────────────────────────────────────── */
.gift-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.gift-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.gift-section__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gift-section__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gift-section__content .h2-serif { margin-bottom: 1.25rem; }
.gift-section__content p { font-size: 1.05rem; margin-bottom: 1.5rem; }
.gift-list {
  list-style: none;
  margin-bottom: 2rem;
}
.gift-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--near-black);
  border-bottom: 1px solid var(--ivory-dark);
}
.gift-list li:last-child { border-bottom: none; }
.gift-list li svg { color: var(--taupe-dark); flex-shrink: 0; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section {
  padding: var(--space-xl) 0;
  background: var(--ivory);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(44,44,44,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44,44,44,0.1);
}
.review-card--featured {
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--taupe);
  box-shadow: 0 4px 24px rgba(201,185,154,0.25);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--near-black);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--near-black);
  padding: var(--space-lg) var(--space-md);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__text .h2-serif { font-size: clamp(1.6rem, 4vw, 2.5rem); }
.cta-band__text p { color: rgba(255,255,255,0.65); margin-bottom: 0; }
.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: var(--space-xl) 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .h2-serif { margin-bottom: 1.25rem; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 2rem; }
.contact-details {
  list-style: none;
  margin-bottom: 2.5rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.contact-details li:last-child { border-bottom: none; }
.contact-details li svg { color: var(--taupe-dark); flex-shrink: 0; margin-top: 2px; }
.contact-details li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-details strong {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
}
.contact-details span,
.contact-details a {
  font-size: 0.95rem;
  color: var(--warm-grey);
  text-decoration: none;
}
.contact-details a:hover { color: var(--taupe-dark); }
.opening-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.hours-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
.hours-table td {
  padding: 0.45rem 0.75rem 0.45rem 0;
  color: var(--warm-grey);
  border-bottom: 1px solid var(--ivory-dark);
}
.hours-table td:first-child {
  color: var(--near-black);
  font-weight: 500;
  width: 140px;
}
.hours-table tr:last-child td { border-bottom: none; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(44,44,44,0.07);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--near-black);
  margin-bottom: 1.75rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--near-black);
}
.form-group label span { color: var(--taupe-dark); }
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--near-black);
  background: var(--ivory);
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A898; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(201,185,154,0.2);
}
.form-note {
  font-size: 0.78rem;
  color: var(--warm-grey);
  text-align: center;
  margin: 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer-kit {
  background: var(--near-black);
  color: var(--taupe-pale);
}
.footer-kit__logo-band {
  text-align: center;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  border-bottom: 1px solid rgba(201,185,154,0.15);
}
.footer-monogram {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.55);
  margin: 0;
}
.footer-kit__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: var(--space-lg) var(--space-md);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}
.footer-col p,
.footer-col address p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(232,221,208,0.65);
  font-style: normal;
  margin-bottom: 0.25rem;
}
.footer-col a {
  color: rgba(232,221,208,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--taupe); }
.footer-hours {
  list-style: none;
  font-size: 0.88rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(201,185,154,0.1);
  color: rgba(232,221,208,0.65);
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours li span:first-child { color: var(--taupe-pale); }
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(232,221,208,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.social-link:hover { color: var(--taupe); }
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.footer-nav li { font-size: 0.82rem; }
.footer-kit__bottom {
  text-align: center;
  padding: 1.5rem var(--space-md);
  border-top: 1px solid rgba(201,185,154,0.12);
  font-size: 0.78rem;
  color: rgba(232,221,208,0.35);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { aspect-ratio: 16/9; height: 420px; }
  .about-split__content { padding: var(--space-lg) var(--space-md); }
  .academy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .academy-grid__cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }

  /* Hide desktop nav items, show trigger */
  .nav-links, .btn-nav { display: none; }
  .mobile-menu__trigger { display: flex; }
  .nav-inner { gap: 0; }
  .nav-inner .btn-nav { display: none; }

  /* Hero */
  .hero { height: 100svh; padding-bottom: 3rem; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Tagline strip */
  .tagline-list {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
  }

  /* About split */
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { height: 320px; aspect-ratio: auto; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; }

  /* Academy */
  .academy-grid { grid-template-columns: 1fr; }
  .academy-grid__cards { grid-template-columns: 1fr; }
  .academy-section { min-height: auto; }

  /* Gift */
  .gift-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .gift-section__img { aspect-ratio: 16/10; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child { max-width: 100%; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { width: 100%; justify-content: center; }
  .cta-band__actions .btn { flex: 1 1 0; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-kit__cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-monogram { font-size: 4rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 12vw, 3rem); }
  .about-split__badges { flex-direction: column; gap: 1rem; }
  .btn-large { padding: 0.85rem 1.5rem; font-size: 0.85rem; }
}

/* ── FIXES: uniform card images, star size, hero mobile ── */
.review-stars svg { width: 20px; height: 20px; }
.review-stars { gap: 4px; margin-bottom: 1.25rem; }
@media (max-width: 768px) { .hero__content { padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: 1.5rem; } }

/* ── NAV: ensure full opacity, strong separation ── */
.site-nav {
  background: #FFFFFF !important;
  border-bottom: 1.5px solid rgba(201,185,154,0.35) !important;
  box-shadow: 0 1px 8px rgba(44,44,44,0.06);
}
.nav-links a { color: #2C2C2C !important; font-weight: 500 !important; }

/* ── GIFT LABEL: balanced split ── */
.gift-section__img {
  aspect-ratio: 3/4 !important;
  min-height: 420px;
}

/* ── HERO: push content further down for breathing room ── */
.hero__content {
  padding-bottom: 5rem;
}

/* ── POLISH: taller card images, better review proportions ── */
.card__img-wrap { height: 280px !important; }
.reviews-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 2rem !important;
}
.review-card { padding: 2.25rem 2rem !important; }
.review-card p {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
}
@media (max-width: 768px) {
  .about-split__badges { flex-direction: row !important; flex-wrap: wrap !important; gap: 1rem !important; }
  .badge__num { font-size: 1.5rem !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
}
