/* ===== Design tokens ===== */
:root {
  --pink: #FF2D78;
  --pink-light: #FF6FA5;
  --violet: #8B2FE0;
  --violet-light: #B47CF2;
  --gold: #FFD166;
  --cream: #FFF6EF;
  --cream-dim: #FBEDE3;
  --ink: #1B1220;
  --ink-soft: #4A3F4E;
  --dark: #170F1B;
  --dark-2: #26132F;

  --grad-brand: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  --grad-dark: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 55%, #34123f 100%);

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --container-w: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 50px -20px rgba(139, 47, 224, 0.25);
  --shadow-pink: 0 20px 45px -15px rgba(255, 45, 120, 0.45);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--pink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold); }

h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); letter-spacing: -0.01em; }
h2.light { color: var(--cream); }

.section-note {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-top: 14px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 55px -15px rgba(255, 45, 120, 0.55); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 2px solid rgba(255, 246, 239, 0.35);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink-soft); font-weight: 600; padding: 15px 22px; }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-header { padding: 11px 24px; font-size: 0.88rem; }
.btn:disabled { opacity: 0.4; pointer-events: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 239, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27, 18, 32, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
}
.logo-dot { color: var(--pink); margin-left: 4px; }
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav a:hover { color: var(--pink); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--grad-dark);
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: var(--pink);
  top: -180px; right: -120px;
}
.hero-glow-2 {
  width: 420px; height: 420px;
  background: var(--violet);
  bottom: -160px; left: -140px;
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 22px;
}
.hero-text h1 .hl {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  color: rgba(255, 246, 239, 0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-note {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 246, 239, 0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
}
.stat-plus { color: var(--pink-light); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 246, 239, 0.6);
}

.hero-visual { display: flex; justify-content: center; }
.hero-photo-card { position: relative; width: 100%; max-width: 420px; }
.hero-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255, 246, 239, 0.15);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  aspect-ratio: 4/5;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float {
  position: absolute;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 12px 18px;
  border-radius: 100px;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.35);
}
.hero-badge-float:not(.hero-badge-float-2) {
  top: -14px;
  left: -22px;
}
.hero-badge-float-2 {
  bottom: 24px;
  right: -18px;
  background: var(--grad-brand);
  color: #fff;
}

/* ===== About ===== */
.about { padding: 120px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-card { position: relative; max-width: 460px; }
.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-inset {
  position: absolute;
  bottom: -32px;
  left: -36px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
}
.about-photo-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
}
.about-badge-float {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
  padding: 16px 20px;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  transform: rotate(8deg);
}
.about-desc { color: var(--ink-soft); font-size: 1.03rem; margin-top: 20px; }
.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-dim);
  border: 1px solid rgba(139, 47, 224, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.88rem;
}
.about-badge span.icon { font-size: 1.2rem; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 90px; }
  .about-card { max-width: 320px; margin: 0 auto; }
  .about-badges { grid-template-columns: 1fr; }
}

/* ===== Services ===== */
.services { padding: 110px 0; background: var(--cream-dim); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid rgba(139, 47, 224, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card.popular {
  background: var(--grad-dark);
  border: none;
}
.service-card.popular .service-name,
.service-card.popular .service-price { color: var(--cream); }
.service-card.popular .service-desc { color: rgba(255,246,239,0.7); }
.service-card.popular .service-duration { color: rgba(255,246,239,0.5); }
.service-card.popular .service-footer { border-top-color: rgba(255,246,239,0.15); }
.service-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-pink);
}
.service-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  min-height: 62px;
}
.service-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(27,18,32,0.08);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
}
.service-duration { font-size: 0.8rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Portfolio ===== */
.portfolio { padding: 110px 0; }
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  border: 2px solid rgba(27, 18, 32, 0.12);
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 15px 35px -18px rgba(27,18,32,0.35);
}
.portfolio-photo { width: 100%; height: 100%; }
.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-photo img { transform: scale(1.08); }
.portfolio-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 16px 16px;
  background: linear-gradient(0deg, rgba(23,15,27,0.92) 0%, rgba(23,15,27,0) 100%);
  color: var(--cream);
}
.portfolio-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink-light);
  margin-bottom: 4px;
}
.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===== Process ===== */
.process {
  position: relative;
  background: var(--grad-dark);
  padding: 110px 0;
  overflow: hidden;
}
.process .hero-glow-1 { top: -200px; right: -160px; opacity: 0.35; }
.process-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.process .section-head { margin-bottom: 44px; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.process-step {
  border-top: 2px solid rgba(255, 246, 239, 0.15);
  padding-top: 18px;
}
.process-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-light);
  display: block;
  margin-bottom: 10px;
}
.process-step h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(255, 246, 239, 0.65);
  font-size: 0.92rem;
}
.process-visual { display: flex; justify-content: center; }
.process-photo-frame {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  border: 3px solid rgba(255, 246, 239, 0.12);
}
.process-photo-frame img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .process-inner { grid-template-columns: 1fr; }
  .process-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ===== Booking ===== */
.booking { padding: 110px 0; background: var(--cream-dim); }
.booking-widget {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px 48px 48px;
}
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.bp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-dim);
  align-items: center;
  justify-content: center;
  position: relative;
}
.bp-step em {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  white-space: nowrap;
  color: var(--ink-soft);
}
.bp-step.active { background: var(--grad-brand); color: #fff; }
.bp-step.active em { color: var(--pink); }
.bp-step.done { background: var(--violet); color: #fff; }
.bp-line { width: 60px; height: 2px; background: rgba(27,18,32,0.12); }

.booking-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  margin-top: 32px;
}
.booking-label:first-of-type { margin-top: 0; }

.booking-services, .booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 12px 20px;
  border-radius: 100px;
  border: 2px solid rgba(27,18,32,0.12);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--pink); }
.chip.selected { background: var(--grad-brand); border-color: transparent; color: #fff; }

.booking-calendar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.day-chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 58px;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(27,18,32,0.12);
  transition: all 0.2s ease;
}
.day-chip:hover { border-color: var(--pink); }
.day-chip.selected { background: var(--grad-brand); border-color: transparent; color: #fff; }
.day-name { font-size: 0.72rem; color: inherit; opacity: 0.7; }
.day-num { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

.booking-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 36px;
}

.booking-form { margin-top: 0; }
.form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.booking-form input, .booking-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(27,18,32,0.12);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream-dim);
  transition: border-color 0.2s ease;
}
.booking-form input:focus, .booking-form textarea:focus { outline: none; border-color: var(--pink); }
.booking-form textarea { resize: vertical; }

.booking-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
}
.booking-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.booking-success p { color: var(--ink-soft); margin-bottom: 6px; max-width: 440px; margin-left: auto; margin-right: auto; }
.success-note { font-size: 0.9rem; margin-bottom: 26px !important; }

@media (max-width: 640px) {
  .booking-widget { padding: 32px 22px; }
  .bp-step em { display: none; }
  .form-row { flex-direction: column; }
}

/* ===== Reviews ===== */
.reviews { padding: 110px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream-dim);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  border: 1px solid rgba(139,47,224,0.08);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 14px;
}
.review-text {
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pink);
}

@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { padding: 110px 0; background: var(--cream-dim); }
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid rgba(27,18,32,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p {
  color: var(--ink-soft);
  padding: 0 4px 24px;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== Footer CTA + Contact ===== */
.footer-cta {
  position: relative;
  background: var(--grad-dark);
  padding: 110px 0;
  overflow: hidden;
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.footer-cta-text h2 { color: var(--cream); margin-bottom: 16px; }
.footer-cta-text p { color: rgba(255,246,239,0.7); font-size: 1.05rem; margin-bottom: 30px; max-width: 440px; }

.footer-contacts {
  background: rgba(255,246,239,0.06);
  border: 1px solid rgba(255,246,239,0.12);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(8px);
}
.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,246,239,0.1);
}
.contact-item:first-child { padding-top: 0; }
.contact-label { color: rgba(255,246,239,0.5); font-size: 0.85rem; }
.contact-value { color: var(--cream); font-weight: 600; font-size: 0.95rem; text-align: right; }
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-icon {
  flex: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255,246,239,0.2);
  color: var(--cream);
  transition: all 0.2s ease;
}
.social-icon svg { width: 26px; height: 26px; }
.social-icon:hover { background: var(--grad-brand); border-color: transparent; transform: translateY(-2px); }

.site-footer {
  background: var(--dark);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-inner span { color: rgba(255,246,239,0.45); font-size: 0.8rem; }
.footer-disclaimer { max-width: 480px; text-align: right; }

@media (max-width: 900px) {
  .footer-cta-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto 20px; }
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(27,18,32,0.08);
    padding: 8px 24px 20px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(27,18,32,0.06); }
  .burger { display: flex; }
  .btn-header { display: none; }
}
