/* ============================================================
   The Ice Cream House — static rebuild
   ============================================================ */

@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fredoka-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/inter-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/pacifico-regular.woff2") format("woff2");
}

:root {
  --brand: #ec1e79;
  --brand-dark: #c41563;
  --brand-light: #f06fa3;
  --brand-tint: #fce7f1;
  --onyx: #0a0a0a;
  --muted: #6b7280;
  --white: #ffffff;

  --font-display: "Fredoka", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-script: "Pacifico", cursive;

  --container-max: 1280px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--onyx);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 12px; height: 12px; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { position: relative; padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--onyx);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section-title-light { color: var(--white); }

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.section-sub-light { color: rgba(255,255,255,0.65); }

.script {
  font-family: var(--font-script);
  color: var(--brand);
  font-weight: 400;
  text-shadow: 0 0 40px rgba(236,30,121,0.35);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 0.95rem 1.75rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

.btn-brand {
  background: var(--brand);
  color: var(--white);
}
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-2px); }

.btn-glow { box-shadow: 0 8px 24px -6px rgba(236,30,121,0.55); }

.btn-outline-onyx {
  background: var(--white);
  color: var(--onyx);
  border-color: var(--onyx);
}
.btn-outline-onyx:hover { background: var(--onyx); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pill-tint { background: var(--brand-tint); color: var(--brand); }

.link-brand { color: var(--brand); font-weight: 600; }
.link-brand:hover { text-decoration: underline; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--onyx);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-bar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  border: 2px solid rgba(236,30,121,0.4);
  flex-shrink: 0;
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}
.logo-name-light { color: var(--white); font-size: 1.15rem; }
.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brand-light);
  font-weight: 600;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a:not(.btn) {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--white); }

.nav-order-mobile { display: none; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-order-desktop { display: none; }

.menu-toggle {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
  }
  .nav-order-mobile { display: none; }
  .nav-order-desktop { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* mobile dropdown nav */
@media (max-width: 1023.98px) {
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--onyx);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav-links.open { max-height: 480px; opacity: 1; padding-top: 0.75rem; }
  .nav-links a:not(.btn) { padding: 0.65rem 0.25rem; }
  .nav-order-mobile { display: inline-flex; justify-content: center; margin-top: 0.5rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}
@media (min-width: 640px) { .hero { padding: 5rem 0 3.5rem; } }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  background: rgba(236,30,121,0.12);
}
.hero-blob-a { width: 320px; height: 320px; top: -60px; right: -80px; }
.hero-blob-b { width: 280px; height: 280px; bottom: -60px; left: -80px; }

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.hero-copy { text-align: center; }
@media (min-width: 1024px) { .hero-copy { text-align: left; } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 1.25rem;
  color: var(--onyx);
}

.hero-desc {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 34rem;
  margin: 0 auto 2rem;
}
@media (min-width: 1024px) { .hero-desc { margin: 0 0 2rem; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .hero-meta { justify-content: flex-start; } }
.hero-meta .icon { color: var(--brand); }

.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--onyx);
}
@media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
.hero-stats .star { color: var(--brand); }

.hero-media { display: flex; justify-content: center; }
.hero-img-frame {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1000 / 854;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ticker */
.ticker {
  margin-top: 3rem;
  background: var(--onyx);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 28s linear infinite; }
.ticker-set { display: flex; align-items: center; gap: 2.5rem; padding: 0 1.25rem; }
.ticker span {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.ticker em { color: var(--brand); font-style: normal; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- full menu ---------- */
.full-menu { background: rgba(252,231,241,0.4); }

.menu-tabs-wrap {
  position: sticky;
  top: 72px;
  z-index: 30;
  margin: 0 -1.25rem 2.5rem;
  padding: 0 1.25rem;
}
.menu-tabs {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  padding: 0.4rem;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  box-shadow: 0 10px 30px -10px rgba(236,30,121,0.12);
  border: 1px solid rgba(0,0,0,0.05);
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: transparent;
  color: rgba(10,10,10,0.7);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.menu-tab:hover { background: var(--white); color: var(--onyx); }
.menu-tab.active {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(236,30,121,0.55);
}

.menu-items {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-block-fade { animation: fade-up 0.35s ease both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-intro { color: var(--muted); font-size: 1.05rem; line-height: 1.6; text-align: center; }

.menu-subhead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(10,10,10,0.08);
}
.menu-subhead h4 { font-family: var(--font-display); font-weight: 700; color: var(--onyx); font-size: 1.3rem; margin: 0; }
.menu-subhead-note { color: var(--brand); font-weight: 600; font-size: 0.85rem; }

.menu-size-list { display: flex; flex-direction: column; gap: 0.75rem; }
.menu-size-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px -18px rgba(0,0,0,0.2);
}
.menu-size-label { font-family: var(--font-display); font-weight: 700; color: var(--brand); font-size: 1.1rem; min-width: 90px; }
.menu-size-options { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; margin-left: auto; }
.menu-size-option { display: flex; align-items: baseline; gap: 0.5rem; }
.menu-size-option span { color: var(--muted); font-size: 0.92rem; }
.menu-size-option strong { color: var(--onyx); font-weight: 700; white-space: nowrap; }

.menu-price-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) { .menu-price-grid { grid-template-columns: repeat(2, 1fr); } }

.menu-price-item {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 10px 25px -18px rgba(0,0,0,0.2);
}
.menu-price-item-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.menu-price-item-head h4 { font-family: var(--font-display); font-weight: 700; color: var(--onyx); font-size: 1.05rem; margin: 0; }
.menu-price-tag { color: var(--brand); font-weight: 700; white-space: nowrap; }
.menu-price-item p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin: 0.4rem 0 0; }

.menu-taglist-block { display: flex; flex-direction: column; gap: 0.85rem; align-items: center; }
.menu-taglist { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.tag-chip {
  background: var(--brand-tint);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}

.menu-note { text-align: center; color: var(--muted); font-size: 0.9rem; font-style: italic; line-height: 1.6; }

.menu-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 2.5rem 0 0;
}

/* ---------- cake lab ---------- */
.cake-lab { background: var(--onyx); color: var(--white); position: relative; overflow: hidden; }
.cake-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .cake-grid { grid-template-columns: 1fr 1fr; } }

.cake-media { position: relative; max-width: 400px; margin: 0 auto; }
@media (min-width: 1024px) { .cake-media { margin: 0; } }

.cake-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 55px -15px rgba(0,0,0,0.5);
}
.cake-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.cake-carousel img.active { opacity: 1; }

.notice-row { text-align: left; margin-bottom: 1.1rem; }
.notice-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: var(--brand);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px -8px rgba(236,30,121,0.55);
}
.notice-pill strong { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }

.cake-copy { text-align: center; }
.cake-copy .notice-row { text-align: left; }
@media (min-width: 1024px) { .cake-copy { text-align: left; } }

.cake-list {
  list-style: none;
  margin: 1.75rem 0 2.25rem;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}
.cake-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
}
.check-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(236,30,121,0.2);
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.cake-copy .hero-actions { justify-content: center; }
@media (min-width: 1024px) { .cake-copy .hero-actions { justify-content: flex-start; } }

.cake-solo { max-width: 700px; margin: 0 auto; }
@media (min-width: 1024px) {
  .cake-solo .cake-copy { text-align: center; }
  .cake-solo .cake-copy .hero-actions { justify-content: center; }
}
.cake-solo .cake-copy .notice-row { text-align: center; }
.cake-solo .cake-copy .cake-list { margin-left: auto; margin-right: auto; }

/* ---------- gallery ---------- */
.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: thin;
  flex: 1;
  min-width: 0;
}

.gallery-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 240px;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px -15px rgba(0,0,0,0.3);
}
@media (min-width: 640px) { .gallery-slide { width: 280px; } }
@media (min-width: 1024px) { .gallery-slide { width: 300px; } }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slide:hover img { transform: scale(1.06); }

.gallery-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.08);
  box-shadow: 0 10px 25px -12px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--onyx);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-arrow:hover { background: var(--brand); color: var(--white); }
@media (max-width: 767.98px) { .gallery-arrow { display: none; } }

/* ---------- find us ---------- */
.find-us { background: var(--brand-tint); }
.find-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) { .find-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.find-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 15px 40px -20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) { .find-card { padding: 2.5rem; } }

.find-card-top { display: flex; align-items: flex-start; gap: 1rem; }
.find-icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand); flex-shrink: 0;
}
.find-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--onyx); font-size: 1.15rem; margin: 0 0 0.3rem; }
.find-card-top p { color: var(--muted); margin: 0 0 0.5rem; }
.find-card-top .phone-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--brand); font-weight: 600;
}
.find-card-top .phone-link:hover { text-decoration: underline; }

.find-hours { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(10,10,10,0.08); }
.find-hours-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.find-hours-head .icon { color: var(--brand); }
.find-hours-head h3 { margin: 0; }
.hours-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.hours-list li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.98rem; }
.hours-list li span:first-child { color: var(--muted); font-weight: 500; }
.hours-list li span:last-child { color: var(--onyx); font-weight: 600; }

.find-card-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.find-card-actions .btn { flex: 1; min-width: 180px; }

.find-map {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 380px;
  background: var(--onyx);
  box-shadow: 0 15px 40px -20px rgba(0,0,0,0.15);
}
.find-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.find-map-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 1.5rem;
  transition: background 0.2s ease;
}
.find-map-overlay:hover { background: var(--brand); }

/* ---------- why us ---------- */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }

.why-card { text-align: center; padding: 1rem; }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  margin-bottom: 1rem;
}
.why-icon .icon { width: 28px; height: 28px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 0.4rem; }
.why-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* ---------- sweet promise ---------- */
.promise {
  position: relative;
  background: var(--onyx);
  overflow: hidden;
  text-align: center;
}
.promise-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 35%, rgba(236,30,121,0.35), transparent 70%),
    radial-gradient(ellipse 45% 40% at 15% 90%, rgba(128,67,157,0.2), transparent 70%);
}
.promise-inner { position: relative; max-width: 700px; }
.eyebrow-icon { display: inline-flex; align-items: center; gap: 0.4rem; justify-content: center; }
.promise-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}
.promise-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto 2.25rem;
}
.promise-actions { justify-content: center; margin-bottom: 0; }

.btn-dark-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}
.btn-dark-outline:hover { background: rgba(255,255,255,0.16); }

/* ---------- footer ---------- */
.site-footer { background: var(--onyx); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: 0.9rem; margin: 1rem 0 0; line-height: 1.6; }
.footer-brand .logo-link { margin-bottom: 0; }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social-btn:hover { background: var(--brand); }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--brand-light);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col ul li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; }
.footer-col ul li .icon { color: var(--brand); margin-top: 0.15rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-links li a { font-size: 0.9rem; }
.footer-links li a:hover { color: var(--brand); }

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom p { margin: 0; }

