/* =============================================================================
   SPA / NAIL SALON — STYLES
   Palette: ivory, charcoal, rose-gold. Cormorant headlines + Inter body.
   ============================================================================= */

:root {
  --cream:       #FAF6F0;
  --ivory:       #F3EBDF;
  --bone:        #ECE2D2;
  --blush:       #E8D5C4;
  --charcoal:    #1F1A17;
  --ink:         #2A2520;
  --mocha:       #6B5749;
  --muted:       #8C7B6B;
  --rose-gold:   #B08968;
  --rose-deep:   #8C6A4D;
  --line:        #E0D5C5;

  --font-head:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 1px 2px rgba(31, 26, 23, 0.06);
  --shadow-md:   0 8px 24px rgba(31, 26, 23, 0.08);
  --shadow-lg:   0 24px 60px rgba(31, 26, 23, 0.12);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2vw, 2rem);   font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { color: var(--ink); }

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container    { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width:  860px; margin: 0 auto; padding: 0 2rem; }
.container-md { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

.section-alt { background: var(--ivory); }
.section-bone { background: var(--bone); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mocha);
  max-width: 56ch;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.center { text-align: center; }
.center .section-title,
.center .section-sub { margin-left: auto; margin-right: auto; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--rose-gold);
  margin: 1.5rem auto;
}

/* =========================================================================
   NAV
   ========================================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.0);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  padding: 1.5rem 0;
}
#navbar.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 1px 0 rgba(31, 26, 23, 0.05);
  padding: 1rem 0;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-top: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--rose-gold); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
  margin: 0 auto;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  padding: 6rem 2rem 3rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  font-size: 1.5rem;
  font-family: var(--font-head);
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--rose-gold);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rose-gold);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--rose-gold); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.7rem; }

/* =========================================================================
   HERO
   ========================================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(31,26,23,0.45) 0%,
              rgba(31,26,23,0.30) 40%,
              rgba(31,26,23,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: white;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.hero-content h1 {
  color: white;
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--blush);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btns .btn-primary { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.hero-btns .btn-primary:hover { background: var(--rose-gold); color: white; border-color: var(--rose-gold); }
.hero-btns .btn-outline { color: var(--cream); border-color: var(--cream); }
.hero-btns .btn-outline:hover { background: var(--cream); color: var(--charcoal); }

/* =========================================================================
   PAGE HERO (smaller hero for inner pages)
   ========================================================================= */
.page-hero {
  padding: 12rem 2rem 5rem;
  text-align: center;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--mocha);
  max-width: 56ch;
  margin: 0 auto;
}
.page-hero .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  display: inline-block;
}

/* =========================================================================
   TWO-COLUMN INTRO (about preview)
   ========================================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
}
.about-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::before {
  content: '';
  position: absolute;
  top: 1rem; left: 1rem;
  right: -1rem; bottom: -1rem;
  border: 1px solid var(--rose-gold);
  z-index: -1;
  border-radius: 2px;
}
.about-text p { margin-bottom: 1.25rem; color: var(--mocha); font-size: 1rem; line-height: 1.85; }

/* =========================================================================
   FEATURES STRIP
   ========================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.feature {
  text-align: left;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.feature h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.feature p {
  color: var(--mocha);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* =========================================================================
   SERVICES PREVIEW (home page)
   ========================================================================= */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-preview-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  text-align: center;
}
.service-preview-card:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}
.service-preview-card .num {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.service-preview-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-preview-card p {
  font-size: 0.92rem;
  color: var(--mocha);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-preview-card .from {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
}

/* =========================================================================
   SERVICES MENU (services page)
   ========================================================================= */
.menu-category {
  margin-bottom: 4.5rem;
  scroll-margin-top: 8rem;
}
.menu-category-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}
.menu-category-head h3 {
  font-size: 2rem;
  font-weight: 400;
}
.menu-category-head p {
  color: var(--mocha);
  font-size: 0.95rem;
  font-style: italic;
  text-align: right;
  max-width: 36ch;
}
@media (max-width: 700px) {
  .menu-category-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .menu-category-head p { text-align: left; }
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item-info h4 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.menu-item-info .desc {
  color: var(--mocha);
  font-size: 0.92rem;
  line-height: 1.6;
}
.menu-item-info .duration {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-top: 0.5rem;
}
.menu-item-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

/* category jump nav */
.menu-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
  justify-content: center;
}
.menu-jumpnav a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.menu-jumpnav a:hover { color: var(--rose-gold); }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ivory);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 23, 0);
  transition: background 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(31, 26, 23, 0.35); }
.gallery-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  border: 1px solid white;
  padding: 0.6rem 1.5rem;
}
.gallery-item:hover .gallery-overlay span { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 1; }
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 23, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
}

/* =========================================================================
   TEAM
   ========================================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.team-member { text-align: center; }
.team-member .photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.team-member .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.team-member .role {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.team-member .bio {
  color: var(--mocha);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonial {
  text-align: center;
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}
.testimonial blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 2rem;
  position: relative;
}
.testimonial blockquote::before,
.testimonial blockquote::after {
  font-family: var(--font-head);
  color: var(--rose-gold);
  font-size: 1.5em;
  line-height: 1;
}
.testimonial blockquote::before { content: '\201C'; margin-right: 0.1em; }
.testimonial blockquote::after  { content: '\201D'; margin-left: 0.1em; }
.testimonial .author {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}
.testimonial .source {
  font-size: 0.85rem;
  color: var(--mocha);
  margin-top: 0.25rem;
  font-style: italic;
}
.testimonial-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.testimonial-dot.active { background: var(--rose-gold); width: 28px; border-radius: 4px; }

/* =========================================================================
   HOURS / CONTACT
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-block { padding: 0; }
.contact-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .day { color: var(--mocha); letter-spacing: 0.05em; }
.contact-row .time { color: var(--charcoal); font-weight: 500; }
.contact-row.today { color: var(--rose-gold); }
.contact-row.today .day,
.contact-row.today .time { color: var(--rose-gold); }

.contact-info p { margin-bottom: 1rem; color: var(--mocha); }
.contact-info a { color: var(--charcoal); border-bottom: 1px solid var(--line); transition: all 0.2s var(--ease); }
.contact-info a:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.contact-info .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
  margin-top: 1.75rem;
}
.contact-info .label:first-child { margin-top: 0; }

.map-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 2px;
  margin-top: 3rem;
  overflow: hidden;
  background: var(--ivory);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(0.95);
}

/* =========================================================================
   BOOKING FORM
   ========================================================================= */
.booking-card {
  background: white;
  padding: 3.5rem 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .booking-card { padding: 2rem 1.5rem; }
}
.booking-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.booking-note {
  color: var(--mocha);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form-required { color: var(--rose-gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; margin-top: 1rem; }

.booking-success {
  background: var(--blush);
  color: var(--charcoal);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  display: none;
}
.booking-success.show { display: block; }

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
  background: var(--charcoal);
  color: rgba(250, 246, 240, 0.85);
  padding: 5rem 0 2rem;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer-brand p {
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1240px;
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(250, 246, 240, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.body-lock { overflow: hidden; }
