/*
  Liz The Nail Tech — Editorial Redesign
  @lizthenailtexh · Gaithersburg, MD
  Aesthetic: High-Fashion Editorial · Luxury Beauty
*/

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

/* ─────────────────────────────── Variables ─────────────────────────────── */
:root {
  --ink:        #0E0A0C;
  --cream:      #F7F3EE;
  --warm-white: #FDFAF7;
  --blush:      #E8CDD2;
  --blush-light:#F5E9EC;
  --mauve:      #C4A2A8;
  --rose:       #A85467;
  --rose-light: #C97888;
  --black:      #0E0A0C;
  --charcoal:   #2E2028;
  --text-dark:  #2E2028;
  --text-mid:   #8A757C;
  --mid-gray:   #8A757C;
  --light-gray: #C8BAC0;
  --white:      #FDFAF7;
  --silver:     #C8C4C0;
  --blush-pale: #F2E4E7;
  --blush-mid:  #D9B8BE;
  --rose-deep:  #7A3A4A;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body:  'Outfit', sans-serif;
  --nav-h: 68px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(14,10,12,0.07);
  --shadow:    0 6px 28px rgba(14,10,12,0.10);
  --shadow-lg: 0 14px 48px rgba(14,10,12,0.13);
  --shadow-xl: 0 24px 72px rgba(14,10,12,0.18);
}

/* ─────────────────────────────── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─────────────────────────────── Typography ─────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); color: var(--ink); line-height: 1.08; font-weight: 300; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.15rem; font-weight: 400; }
em { font-style: italic; }

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 16px;
}
.eyebrow::before,.eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--mauve); }

p { line-height: 1.8; }
.text-mid { color: var(--text-mid); }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* ─────────────────────────────── Navigation ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(196, 162, 168, 0.15);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 2px 32px rgba(14,10,12,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--ink); transition: width var(--transition); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-book { background: var(--ink) !important; color: var(--warm-white) !important; padding: 10px 24px; font-size: 0.68rem !important; letter-spacing: 0.18em !important; transition: background var(--transition) !important; }
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--rose) !important; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: var(--transition); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-serif); font-size: clamp(2rem, 7vw, 3rem); font-weight: 300; color: var(--warm-white); letter-spacing: 0.02em; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--rose-light); }
.mobile-book-btn { margin-top: 8px; padding: 14px 44px; background: var(--rose) !important; color: var(--warm-white) !important; font-family: var(--font-body) !important; font-size: 0.72rem !important; letter-spacing: 0.18em !important; border: none; }
.mobile-book-btn:hover { background: var(--rose-light) !important; }

/* ─────────────────────────────── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 36px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--warm-white); border-color: var(--ink); }
.btn-primary:hover { background: var(--rose); border-color: var(--rose); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--warm-white); }
.btn-white { background: var(--warm-white); color: var(--ink); border-color: var(--warm-white); }
.btn-white:hover { background: transparent; color: var(--warm-white); border-color: rgba(255,255,255,0.5); }
.btn-blush { background: var(--blush); color: var(--ink); border-color: var(--blush); }
.btn-blush:hover { background: var(--mauve); border-color: var(--mauve); color: var(--warm-white); }
.btn-sm { padding: 10px 22px; font-size: 0.66rem; }

/* ─────────────────────────────── Layout ─────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 840px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }
.section-dark { background: var(--ink); }
.section-dark .eyebrow, .section-dark .label { color: var(--mauve); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--warm-white); }
.section-dark p { color: rgba(253,250,247,0.6); }
.section-blush { background: var(--blush-light); }
.section-header { margin-bottom: 60px; }
.section-header-center { text-align: center; margin-bottom: 60px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 24px; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--cream);
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 40px;
  max-width: 680px; margin-left: auto;
  position: relative; z-index: 2;
}
.hero-content h1 { margin-bottom: 28px; font-style: italic; }
.hero-line { display: block; }
.hero-accent { font-style: normal; color: var(--rose); display: block; }
.hero-sub { font-size: 1rem; color: var(--text-mid); max-width: 420px; margin-bottom: 40px; font-weight: 300; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-rule { width: 40px; height: 1px; background: var(--mauve); margin-bottom: 20px; }
.hero-meta { display: flex; flex-direction: column; gap: 7px; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
.hero-visual { position: relative; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--cream) 0%, transparent 18%); z-index: 1; pointer-events: none; }
.hero-img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-stat-card { position: absolute; bottom: 48px; left: 28px; background: var(--warm-white); border: 1px solid rgba(196,162,168,0.25); padding: 20px 24px; z-index: 2; min-width: 170px; }
.hero-stat-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 300; color: var(--rose); line-height: 1; display: block; }
.hero-stat-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); margin-top: 6px; display: block; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-wrap { background: var(--ink); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-text { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(253,250,247,0.55); }
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rose-light); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════ STYLE SHOWCASE ═══════════════ */
.style-section { padding: 100px 0 80px; background: var(--cream); overflow: hidden; }
.style-section .section-header { padding: 0 40px; max-width: 1400px; margin: 0 auto 48px; }
.style-scroll-outer { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 40px 24px; cursor: grab; }
.style-scroll-outer::-webkit-scrollbar { display: none; }
.style-scroll-outer:active { cursor: grabbing; }
.style-scroll-track { display: flex; gap: 16px; width: max-content; }
.style-card { flex-shrink: 0; width: 240px; position: relative; cursor: pointer; }
.style-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--blush); }
.style-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.style-card:hover .style-card-img img { transform: scale(1.08); }
.style-card-body { padding: 14px 0 0; }
.style-card-label { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--ink); display: block; }
.style-card-sub { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); display: block; margin-top: 3px; }
.style-scroll-cta { padding: 0 40px; max-width: 1400px; margin: 32px auto 0; }

/* ═══════════════ ABOUT PREVIEW ═══════════════ */
.about-preview-section { background: var(--ink); overflow: hidden; }
.about-preview-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.about-preview-img { position: relative; overflow: hidden; }
.about-preview-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-preview-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--ink) 100%); pointer-events: none; }
.about-preview-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 48px; }
.about-preview-text .eyebrow { color: var(--mauve); }
.about-preview-text h2 { color: var(--warm-white); margin-bottom: 24px; font-style: italic; }
.about-preview-text p { color: rgba(253,250,247,0.6); font-size: 1rem; margin-bottom: 16px; max-width: 480px; }
.about-stats { display: flex; gap: 40px; margin: 40px 0; padding: 32px 0; border-top: 1px solid rgba(253,250,247,0.08); border-bottom: 1px solid rgba(253,250,247,0.08); }
.stat-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--rose-light); line-height: 1; display: block; }
.stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(253,250,247,0.4); margin-top: 6px; display: block; }

/* ═══════════════ PORTFOLIO ═══════════════ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border: 1px solid rgba(196,162,168,0.35); font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); background: transparent; cursor: pointer; transition: all var(--transition); }
.filter-btn:hover,.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--warm-white); }
.portfolio-masonry { columns: 4 220px; column-gap: 12px; }
.portfolio-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; position: relative; cursor: zoom-in; transition: opacity 0.3s ease; }
.portfolio-item img { width: 100%; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,10,12,0.65) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity var(--transition); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag { display: inline-block; padding: 5px 12px; background: rgba(253,250,247,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(253,250,247,0.2); color: var(--warm-white); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.portfolio-feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; align-items: start; }
.portfolio-feature-main { overflow: hidden; position: relative; cursor: pointer; }
.portfolio-feature-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 0.6s ease; }
.portfolio-feature-main:hover img { transform: scale(1.04); }
.portfolio-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.portfolio-feature-grid .portfolio-item { margin-bottom: 0; }
.portfolio-feature-grid .portfolio-item img { aspect-ratio: 1/1; object-fit: cover; }

/* ═══════════════ SERVICE CARDS ═══════════════ */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: var(--warm-white); border: 1px solid rgba(196,162,168,0.2); padding: 36px 28px; transition: border-color var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--rose); transition: width 0.4s ease; }
.service-card:hover { border-color: rgba(196,162,168,0.5); box-shadow: var(--shadow); }
.service-card:hover::before { width: 100%; }
.service-icon { font-size: 1.8rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 20px; }
.service-price { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--rose); line-height: 1; }
.service-price-note { font-size: 0.7rem; color: var(--text-mid); margin-top: 2px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(196,162,168,0.15); }
.pricing-cell { background: var(--warm-white); padding: 36px 28px; }
.pricing-cell-dark { background: var(--ink); }
.pricing-cell h4 { font-size: 1.4rem; margin-bottom: 12px; }
.add-on-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.add-on-card { border: 1px solid rgba(196,162,168,0.2); padding: 20px 16px; background: var(--warm-white); text-align: center; }
.add-on-card h4 { font-size: 1rem; margin-bottom: 6px; }
.add-on-price { font-family: var(--font-serif); color: var(--rose); font-size: 1.1rem; }

/* About page */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img-wrap { position: relative; }
.about-img-main { overflow: hidden; aspect-ratio: 3/4; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float { position: absolute; bottom: -28px; right: -28px; width: 52%; overflow: hidden; border: 5px solid var(--cream); box-shadow: var(--shadow-xl); }
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 20px; }

/* Why book strip */
.why-book-strip { background: var(--ink); padding: 80px 0; }
.why-book-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.why-book-item { padding: 40px 28px; background: var(--ink); }
.why-book-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: rgba(168,84,103,0.3); line-height: 1; margin-bottom: 16px; }
.why-book-item h4 { color: var(--warm-white); font-size: 1.1rem; margin-bottom: 10px; }
.why-book-item p { color: rgba(253,250,247,0.45); font-size: 0.88rem; line-height: 1.75; }

/* Social strip */
.social-strip { background: var(--cream); padding: 72px 0; border-top: 1px solid rgba(196,162,168,0.2); border-bottom: 1px solid rgba(196,162,168,0.2); }
.social-strip-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: center; }
.social-stat { text-align: center; }
.social-stat-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: var(--ink); line-height: 1; display: block; }
.social-stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); display: block; margin-top: 8px; }
.social-strip-divider { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.social-strip-divider::before,.social-strip-divider::after { content: ''; display: block; width: 1px; height: 60px; background: rgba(196,162,168,0.3); }
.social-handle { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; color: var(--ink); }

/* CTA */
.cta-full { background: var(--ink); padding: 120px 0; position: relative; overflow: hidden; }
.cta-full::before { content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: rgba(168,84,103,0.05); pointer-events: none; }
.cta-full-inner { max-width: 700px; }
.cta-full h2 { color: var(--warm-white); font-style: italic; margin-bottom: 20px; }
.cta-full p { color: rgba(253,250,247,0.55); margin-bottom: 40px; font-size: 1.05rem; max-width: 480px; }
.cta-btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Policy preview */
.policy-preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.policy-preview-item { padding: 36px 28px; background: var(--ink); }
.policy-preview-icon { font-size: 1.6rem; display: block; margin-bottom: 16px; }
.policy-preview-item h4 { color: var(--warm-white); font-size: 1.05rem; margin-bottom: 8px; }
.policy-preview-item p { color: rgba(253,250,247,0.45); font-size: 0.85rem; line-height: 1.7; margin: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(14,10,12,0.95); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(8px); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 28px; right: 36px; font-size: 2rem; color: rgba(253,250,247,0.6); cursor: pointer; transition: color var(--transition); line-height: 1; }
.lightbox-close:hover { color: var(--warm-white); }

/* Footer */
footer { background: var(--ink); color: rgba(253,250,247,0.5); padding: 72px 0 36px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; margin-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 20px; filter: invert(1); opacity: 0.85; }
.footer-tagline { font-size: 0.88rem; color: rgba(253,250,247,0.4); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.12); color: rgba(253,250,247,0.5); transition: all var(--transition); }
.footer-social a:hover { border-color: var(--rose-light); color: var(--rose-light); }
.footer-col-title { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(253,250,247,0.3); margin-bottom: 20px; }
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { font-size: 0.88rem; color: rgba(253,250,247,0.5); transition: color var(--transition); }
.footer-links-list a:hover { color: var(--warm-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.72rem; color: rgba(253,250,247,0.25); }
.footer-bottom a { color: rgba(253,250,247,0.25); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(253,250,247,0.6); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-book-grid { grid-template-columns: repeat(2,1fr); }
  .policy-preview-grid { grid-template-columns: repeat(2,1fr); }
  .add-on-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 55vw; min-height: 300px; order: 1; }
  .hero-visual::before { background: linear-gradient(to bottom, var(--cream) 0%, transparent 30%); }
  .hero-content { padding: 48px 28px; margin: 0; max-width: 100%; order: 2; }
  .about-preview-inner { grid-template-columns: 1fr; }
  .about-preview-img { height: 400px; }
  .about-preview-img::after { background: linear-gradient(to bottom, transparent 60%, var(--ink) 100%); }
  .about-preview-text { padding: 48px 28px; }
  .portfolio-feature { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .social-strip-inner { grid-template-columns: 1fr 1fr; }
  .social-strip-divider { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { right: -12px; bottom: -12px; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(2.8rem, 9vw, 3.5rem); }
  h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .container, .container-sm { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero-content { padding: 36px 20px 48px; }
  .hero-stat-card { display: none; }
  .style-scroll-outer { padding: 8px 20px 20px; }
  .style-scroll-cta { padding: 0 20px; }
  .style-section .section-header { padding: 0 20px; }
  .style-card { width: 190px; }
  .why-book-grid { grid-template-columns: 1fr; }
  .policy-preview-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .social-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .add-on-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-full { padding: 80px 0; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .marquee-wrap { padding: 14px 0; }
}
