/* =========================================================================
   Well Wishes — design system
   Warm cream base, deep slate ink from the logo, and four soft accents that
   are allowed to get saturated when they need to pop (buttons, highlights).
   ========================================================================= */

:root {
  /* Ink */
  --ink: #2f4550;
  --ink-2: #4e6c7a;
  --ink-3: #7b95a1;
  --ink-4: #a9bcc5;

  /* Surfaces */
  --cream: #fffdf9;
  --sand: #fdf3e7;
  --shell: #f4f8fa;
  --line: #ebe2d6;

  /* Accents — soft by default, saturated for emphasis */
  --sky: #8ecae6;
  --sky-deep: #3d95bd;
  --sky-wash: #e6f4fa;

  --coral: #f6a693;
  --coral-deep: #e2705a;
  --coral-wash: #fdeee9;

  --butter: #ffd79a;
  --butter-deep: #dc9b34;
  --butter-wash: #fef4e4;

  --mint: #a9ddc4;
  --mint-deep: #4a9e77;
  --mint-wash: #eaf7f1;

  --lilac: #cbbdea;
  --lilac-wash: #f2eefb;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif;
  --serif: ui-serif, Georgia, 'Iowan Old Style', 'Times New Roman', serif;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(47, 69, 80, 0.06), 0 2px 8px rgba(47, 69, 80, 0.05);
  --shadow-md: 0 4px 12px rgba(47, 69, 80, 0.07), 0 12px 32px rgba(47, 69, 80, 0.08);
  --shadow-lg: 0 8px 24px rgba(47, 69, 80, 0.09), 0 24px 64px rgba(47, 69, 80, 0.12);

  --wrap: 1140px;
  --gutter: clamp(20px, 5vw, 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.7rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }

p { margin: 0 0 1.1em; }
a { color: var(--sky-deep); }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad { padding-block: clamp(72px, 11vw, 128px); }

/* Screen-reader-only, but focusable for skip links */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; clip: auto; margin: 0;
  z-index: 200; background: var(--ink); color: var(--cream);
  padding: 12px 20px; border-radius: var(--r-sm);
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(47, 69, 80, 0.22);
}
.btn-primary:hover {
  background: #24363f;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(47, 69, 80, 0.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-coral {
  background: var(--coral-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(226, 112, 90, 0.3);
}
.btn-coral:hover {
  background: #d1614c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 112, 90, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink-4);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.06rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* =========================================================================
   Header
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 18px rgba(47, 69, 80, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.024em;
  margin-right: auto;
}
.brand svg { width: 32px; height: 32px; color: var(--ink); flex: none; }
.brand .wordmark { white-space: nowrap; }
.brand .dot { color: var(--sky-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; padding-top: 14px; }
  .nav-links a { display: block; padding: 15px 0; font-size: 1.05rem; }
  .nav .btn { width: 100%; }
}

/* =========================================================================
   Decorative background blobs
   ========================================================================= */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 92px) clamp(64px, 10vw, 110px);
  background:
    radial-gradient(1100px 520px at 12% -8%, var(--sky-wash) 0%, transparent 62%),
    radial-gradient(900px 480px at 96% 8%, var(--coral-wash) 0%, transparent 60%),
    var(--cream);
}
.hero .blob-1 { width: 380px; height: 380px; background: var(--butter); top: -90px; right: 18%; opacity: 0.34; }
.hero .blob-2 { width: 300px; height: 300px; background: var(--mint); bottom: -60px; left: -60px; opacity: 0.32; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 15px 7px 9px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .pip {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mint-wash);
  color: var(--mint-deep);
  display: grid; place-items: center;
  font-size: 11px;
}

.hero h1 { margin-bottom: 20px; }

/*
 * Marker-pen highlight. Sized and positioned explicitly rather than with a
 * two-stop gradient over the whole line box — at this font size the line box
 * is much taller than the text, so a percentage stop drifts well below the
 * baseline and reads as a stray bar.
 */
.hero h1 .accent {
  background-image: linear-gradient(var(--butter), var(--butter));
  background-size: 100% 0.3em;
  background-position: 0 0.56em;
  background-repeat: no-repeat;
  padding-inline: 3px;
}

.hero-sub {
  font-size: clamp(1.06rem, 1.9vw, 1.22rem);
  color: var(--ink-2);
  max-width: 30em;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.9rem;
  color: var(--ink-3);
}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 15px; height: 15px; color: var(--mint-deep); flex: none; }

/* Hero collage */
.hero-art { position: relative; }

.photo-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
  transform: rotate(-1.6deg);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(235, 226, 214, 0.9);
  animation: bob 6s ease-in-out infinite;
}
.float-card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 17px;
  flex: none;
}
.float-card .label { font-size: 0.79rem; color: var(--ink-3); line-height: 1.35; }
.float-card .name { font-size: 0.92rem; font-weight: 650; color: var(--ink); line-height: 1.3; }

.float-1 { top: 8%; left: -7%; animation-delay: 0s; }
.float-2 { bottom: 11%; right: -6%; animation-delay: -3s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Miniature waveform */
.wave { display: flex; align-items: center; gap: 2.5px; height: 22px; }
.wave i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--sky-deep);
  animation: pulse 1.25s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { height: 6px; opacity: 0.55; }
  50% { height: 20px; opacity: 1; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 520px; margin-inline: auto; }
  .float-1 { left: -3%; }
  .float-2 { right: -2%; }
}
@media (max-width: 520px) {
  .float-card { padding: 10px 12px; }
  .float-card .avatar { width: 32px; height: 32px; font-size: 15px; }
  .float-1 { left: -6px; top: 4%; }
  .float-2 { right: -6px; bottom: 6%; }
}

/* =========================================================================
   Marquee of occasions
   ========================================================================= */

.ticker {
  background: var(--ink);
  color: #cfe0e8;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 46px;
  animation: slide 34s linear infinite;
  will-change: transform;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
}
.ticker span::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0.65;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* =========================================================================
   Steps
   ========================================================================= */

.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 62px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-bottom: 0; }

.kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.step-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 25px;
}
.step:nth-child(1) .step-icon { background: var(--sky-wash); }
.step:nth-child(2) .step-icon { background: var(--butter-wash); }
.step:nth-child(3) .step-icon { background: var(--coral-wash); }

.step h3 { margin-bottom: 9px; }
.step p { font-size: 0.97rem; margin-bottom: 0; }

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 26px; right: 28px;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  letter-spacing: -0.04em;
}

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================================
   Split feature rows
   ========================================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media { position: relative; }
.split-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}
.split-media .tag {
  position: absolute;
  bottom: -18px; left: -18px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--ink-2);
  max-width: 230px;
  border: 1px solid var(--line);
}
.split-media .tag strong { color: var(--ink); display: block; font-size: 1.02rem; }

.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; }
.check-list .tick {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint-wash);
  color: var(--mint-deep);
  display: grid; place-items: center;
  flex: none;
  margin-top: 1px;
}
.check-list .tick svg { width: 13px; height: 13px; }
.check-list strong { color: var(--ink); }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .tag { left: 12px; bottom: -14px; }
}

/* =========================================================================
   Quote
   ========================================================================= */

.quote-band {
  background: linear-gradient(140deg, var(--sand) 0%, var(--sky-wash) 100%);
  border-block: 1px solid var(--line);
}
.quote {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3.1vw, 1.95rem);
  line-height: 1.42;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.012em;
}
.quote figcaption { font-size: 0.94rem; color: var(--ink-3); }
.quote figcaption strong { color: var(--ink-2); }

/* =========================================================================
   Occasions grid
   ========================================================================= */

.occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: 16px;
}
.occasion {
  border-radius: var(--r-md);
  padding: 24px 22px;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}
.occasion:hover { transform: translateY(-3px); }
.occasion .emoji { font-size: 27px; display: block; margin-bottom: 12px; }
.occasion h4 { font-size: 1.05rem; margin-bottom: 5px; }
.occasion p { font-size: 0.91rem; margin: 0; color: var(--ink-2); }

.occasion:nth-child(5n + 1) { background: var(--sky-wash); }
.occasion:nth-child(5n + 2) { background: var(--butter-wash); }
.occasion:nth-child(5n + 3) { background: var(--coral-wash); }
.occasion:nth-child(5n + 4) { background: var(--mint-wash); }
.occasion:nth-child(5n + 5) { background: var(--lilac-wash); }

/* =========================================================================
   Pricing
   ========================================================================= */

.pricing-band {
  background:
    radial-gradient(760px 400px at 50% 0%, var(--sky-wash) 0%, transparent 70%),
    var(--cream);
}

.price-card {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 46px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sky), var(--mint), var(--butter), var(--coral));
}

.price-badge {
  display: inline-block;
  background: var(--coral-wash);
  color: var(--coral-deep);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.price .currency { font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-top: 10px; }
.price .amount {
  font-size: clamp(3.6rem, 9vw, 4.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price .was {
  align-self: center;
  margin-left: 10px;
  font-size: 1.15rem;
  color: var(--ink-4);
  text-decoration: line-through;
}
.price-sub { color: var(--ink-3); font-size: 0.97rem; margin-bottom: 28px; }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 13px;
  text-align: left;
}
.price-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.99rem; }
.price-features .tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint-wash); color: var(--mint-deep);
  display: grid; place-items: center; flex: none; margin-top: 2px;
}
.price-features .tick svg { width: 12px; height: 12px; }

.price-card .btn { width: 100%; }
.price-fine { font-size: 0.85rem; color: var(--ink-3); margin: 16px 0 0; }

/* =========================================================================
   FAQ
   ========================================================================= */

.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.06rem;
  font-weight: 620;
  color: var(--ink);
  text-align: left;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.45;
}
.faq-q:hover { color: var(--sky-deep); }
.faq-q:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 3px; border-radius: 6px; }
.faq-q::after {
  content: '';
  position: absolute;
  right: 8px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2.2px solid var(--ink-3);
  border-bottom: 2.2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-25%) rotate(-135deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: 22px; margin: 0; color: var(--ink-2); }
.faq-a p + p { padding-top: 12px; }

/* =========================================================================
   Final CTA
   ========================================================================= */

.cta-band {
  background: var(--ink);
  color: #d6e4eb;
  position: relative;
  overflow: hidden;
}
.cta-band .blob-3 { width: 460px; height: 460px; background: var(--sky-deep); top: -180px; left: -80px; opacity: 0.3; }
.cta-band .blob-4 { width: 400px; height: 400px; background: var(--coral-deep); bottom: -200px; right: -60px; opacity: 0.22; }

.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 660px; margin-inline: auto; }
.cta-band h2 { color: var(--cream); }
.cta-band p { font-size: 1.1rem; margin-bottom: 30px; }
.cta-band .btn-primary { background: var(--cream); color: var(--ink); }
.cta-band .btn-primary:hover { background: #fff; }

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  background: #23343c;
  color: #93aab5;
  padding-block: 56px 34px;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 700; font-size: 1.14rem; margin-bottom: 12px; }
.footer-brand svg { width: 30px; height: 30px; color: var(--cream); }
.footer-grid p { max-width: 34ch; margin: 0; }
.footer-grid h4 { color: var(--cream); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 15px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-grid a { color: #93aab5; text-decoration: none; }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.86rem; color: #6f8894;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================================
   Checkout dialog
   ========================================================================= */

dialog.sheet {
  border: none;
  border-radius: var(--r-xl);
  padding: 0;
  max-width: 480px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-lg);
  color: var(--ink-2);
  background: var(--cream);
}
dialog.sheet::backdrop { background: rgba(35, 52, 60, 0.55); backdrop-filter: blur(3px); }

.sheet-head {
  padding: 28px 30px 0;
  position: relative;
}
.sheet-head h3 { margin-bottom: 6px; }
.sheet-head p { font-size: 0.94rem; margin: 0; }
.sheet-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-3); font-size: 26px; line-height: 1;
  padding: 4px 8px; border-radius: 8px;
}
.sheet-close:hover { background: var(--shell); color: var(--ink); }

.sheet-body { padding: 22px 30px 30px; }

.field { margin-bottom: 17px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .hint { font-weight: 400; color: var(--ink-3); }
.field input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px var(--sky-wash);
}
.field input::placeholder { color: var(--ink-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-error {
  background: var(--coral-wash);
  color: #b34f3a;
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.sheet-note {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 0.84rem; color: var(--ink-3); margin-top: 15px;
}
.sheet-note svg { width: 14px; height: 14px; }

/* =========================================================================
   Reveal on scroll
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .float-card, .ticker-track, .wave i { animation: none !important; }
}
