/* ============================================================
   Welcome Home Gift Company — Design System
   Sweetgreen-style structure, WHGC brand palette.
   Cream canvas ground · deep plum structural anchor ·
   gold as the singular action color · lavender + sand bands.
   ============================================================ */

:root {
  /* Brand */
  --plum: #45203B;        /* structural anchor: logo, dark surfaces, accents */
  --plum-soft: #5E2A4E;
  --gold: #F2A81E;        /* THE action color — CTA fills + badges only */
  --gold-deep: #C2890A;
  --lav: #A98BB5;
  --lav-soft: #CDB8D6;

  /* Surfaces */
  --cream: #F4F0EA;       /* page canvas */
  --sand: #EBE3D8;        /* warm band */
  --lav-mist: #E9DFEA;    /* soft lavender band */

  /* Neutrals */
  --ink: #3A2E34;         /* primary text — near-black w/ plum undertone */
  --muted: #8A7E83;

  /* Type */
  --font-display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --font-body: 'Mulish', ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 120px);
  --radius-img: 20px;
  --radius-card: 24px;
  --radius-btn: 9999px;
  --shadow-xl: rgba(58, 46, 52, 0.4) 3px 3px 32px -10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.017em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

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

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--plum);
}
.accent-line {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--plum);
  margin: 16px 0 20px;
}
.body-lg { font-size: 18px; line-height: 1.5; letter-spacing: 0.03em; }
.body    { font-size: 16px; line-height: 1.55; letter-spacing: 0.017em; }
.caption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 20px;
}
.eyebrow--gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.017em;
  padding: 16px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--plum);
}
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn--outline {
  border-color: var(--plum);
  color: var(--plum);
  background: transparent;
}
.btn--outline:hover { background: var(--plum); color: var(--cream); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 19px 36px; font-size: 17px; }

/* Sweetgreen-style ghost link: small caps + arrow */
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.ghost-link .arrow { transition: transform .18s ease; font-size: 15px; }
.ghost-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.ghost-link:hover .arrow { transform: translateX(4px); }

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

/* ---------- Announcement ticker ---------- */
.ticker {
  background: var(--plum);
  color: var(--cream);
  overflow: hidden;
  padding: 9px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticker__dot { color: var(--gold); font-size: 10px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Nav — flanking links, centered logo ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(58, 46, 52, 0.08);
  transition: box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 24px -18px rgba(58, 46, 52, 0.45); }
.nav__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__logo { justify-self: center; }
.nav__logo img { height: 56px; width: auto; }
.nav__links {
  display: flex;
  gap: 26px;
  justify-self: start;
}
.nav__links a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}
.nav__links a:hover { color: var(--plum); border-bottom-color: var(--gold); }
.nav__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.nav__toggle { display: none; }

/* ---------- Hero — full-bleed with overlay panel ---------- */
.hero {
  position: relative;
  background: var(--sand);
  min-height: clamp(540px, 84vh, 780px);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  top: 50%;
  right: clamp(16px, 7vw, 120px);
  transform: translateY(-50%);
  height: min(82%, 620px);
  width: auto;
  max-width: 56vw;
  object-fit: contain;
}
.hero__panel {
  position: absolute;
  bottom: clamp(24px, 5vh, 56px);
  left: clamp(16px, 4vw, 64px);
  max-width: 640px;
  background: rgba(244, 240, 234, 0.93);
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: 4px;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero__sub {
  margin-top: 20px;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.5;
}
.hero__panel .cta-row { margin-top: 26px; }

/* ---------- Bands & sections ---------- */
.section { padding: var(--section-pad) 0; }
.band { padding: var(--section-pad) 0; }
.band--lav  { background: var(--lav-mist); }
.band--sand { background: var(--sand); }
.band--plum { background: var(--plum); color: var(--cream); }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split__media { overflow: hidden; border-radius: var(--radius-img); }
.split__media img {
  width: 100%;
  transition: transform .5s ease;
}
.split__media:hover img { transform: scale(1.025); }
.split__copy .body { max-width: 48ch; }
.split__note { margin-top: 20px; }

/* Price row — typographic, sweetgreen menu-tab style */
.price-row {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  margin-top: 32px;
}
.price-item { display: flex; flex-direction: column; gap: 6px; }
.price-item .caption { color: var(--ink); }
.price-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1;
  color: var(--plum);
}

/* ---------- Section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head__sub { margin-top: 24px; max-width: 54ch; }

/* ---------- Category tabs — text-only, dot indicator ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.5vw, 44px);
  margin-bottom: clamp(40px, 5vw, 60px);
}
.tab {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0 2px 16px;
  transition: color .18s ease;
}
.tab::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--plum);
  transition: transform .2s ease;
}
.tab:hover { color: var(--plum); }
.tab.is-active { color: var(--plum); }
.tab.is-active::after { transform: translateX(-50%) scale(1); }

/* ---------- Keepsake grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
.card { display: flex; flex-direction: column; }
.card.is-hidden { display: none; }
.card__tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-img);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform .25s ease;
}
.card:hover .card__tile { transform: translateY(-4px); }
.card__tile--sand { background: var(--sand); }
.card__tile--lav  { background: var(--lav-mist); }
.card__tile--photo { background: #FFFFFF; }
.card__tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.card:hover .card__tile--photo img { transform: scale(1.04); }
.card__tile svg {
  width: 44%;
  height: 44%;
  transition: transform .35s ease;
}
.card:hover .card__tile svg { transform: scale(1.07); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.card__name { font-size: 18px; font-weight: 800; letter-spacing: 0.01em; }
.card__desc {
  font-size: 14.5px;
  line-height: 1.45;
  margin-top: 8px;
  flex-grow: 1;
}
.card__price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--plum);
  margin: 14px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.card__price .caption { color: var(--muted); }
.card .ghost-link { font-size: 12px; }

/* Grid fade when filtering */
.grid.is-filtering { animation: gridFade .3s ease; }
@keyframes gridFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Included + add-ons ---------- */
.split--wide { align-items: start; }
.addons { display: flex; flex-direction: column; }
.addon {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(58, 46, 52, 0.14);
}
.addon:first-child { padding-top: 8px; }
.addon__name { font-size: 18px; font-weight: 800; }
.addon__desc { font-size: 15px; margin-top: 6px; max-width: 40ch; }
.addon__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--plum);
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

/* ---------- How to order ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: clamp(40px, 5vw, 56px);
}
.step {
  border-top: 2px solid var(--plum);
  padding-top: 20px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  color: var(--plum);
  display: block;
}
.step__label {
  font-weight: 800;
  font-size: 16px;
  margin-top: 14px;
}
.step__fine { font-weight: 400; color: var(--muted); }
.order-cta {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ---------- Why agents (plum band) ---------- */
.why { max-width: 900px; }
.why__headline {
  color: var(--cream);
  font-size: clamp(52px, 8vw, 96px);
}
.why__headline .accent { color: var(--lav-soft); }
.why__sub {
  margin: 28px 0 36px;
  max-width: 52ch;
  color: rgba(244, 240, 234, 0.82);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(58, 46, 52, 0.08);
  padding: clamp(64px, 8vw, 96px) 0 40px;
  overflow: hidden;
}
.footer__signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: clamp(48px, 6vw, 72px);
}
.signup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.signup__input {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.017em;
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--plum);
  border-radius: var(--radius-btn);
  padding: 14px 24px;
  min-width: 280px;
  outline: none;
}
.signup__input::placeholder { color: var(--muted); }
.signup__input:focus { border-color: var(--plum-soft); background: rgba(255,255,255,0.5); }
.signup__thanks {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--plum);
}

/* Giant wordmark moment */
.footer__grand {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 1;
  color: var(--plum);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
  padding-bottom: clamp(40px, 5vw, 64px);
  user-select: none;
}

.footer__cols {
  border-top: 1px solid rgba(58, 46, 52, 0.12);
  padding-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer__logo { height: 72px; width: auto; }
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  text-align: center;
}
.footer__contact a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__fine { line-height: 1.9; text-align: right; }

/* ---------- Start-an-Order page ---------- */
.order-page { padding: clamp(40px, 6vw, 72px) 0 var(--section-pad); }
.container--form { max-width: 760px; }
.order-page__sub { margin: 20px 0 40px; max-width: 52ch; }
.ofs {
  border: none;
  background: #FFFFFF;
  border-radius: var(--radius-img);
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: 20px;
}
.ofs__head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}
.ofs__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lav-mist);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ofs__hint { font-size: 15px; color: var(--muted); margin: 6px 0 4px; }
.ofs__ideas { margin-top: 14px; line-height: 1.7; letter-spacing: 0.06em; }
.prow__thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(58, 46, 52, 0.12);
  padding: 0;
  background: #fff;
  cursor: zoom-in;
}
.prow__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prow--addon { padding-left: 68px; }
.lightbox[hidden], .order-done[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(46, 36, 41, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  cursor: zoom-out;
  padding: 24px;
}
.lightbox figure { max-width: min(680px, 92vw); text-align: center; }
.lightbox img { width: 100%; border-radius: var(--radius-img); background: #fff; }
.lightbox figcaption { color: var(--cream); font-weight: 700; margin-top: 14px; }
.photo-drop {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 2px dashed rgba(58, 46, 52, 0.3);
  border-radius: var(--radius-img);
  background: var(--cream);
  cursor: pointer;
  transition: border-color .18s ease;
}
.photo-drop:hover { border-color: var(--plum); }
.photo-drop.has-photo { border-style: solid; border-color: var(--plum); }
.photo-drop input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
}
.photo-drop img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; }
.photo-drop__label { font-size: 15px; color: var(--ink); line-height: 1.5; }
.hp { position: absolute; left: -9999px; top: -9999px; }
.order-send__link { font-weight: 800; color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.order-done {
  background: #FFFFFF;
  border-radius: var(--radius-img);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.ofield { margin-top: 18px; }
.ofield label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.ofield__opt { font-weight: 400; color: var(--muted); }
.ofield input, .ofield select, .ofield textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(58, 46, 52, 0.18);
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
}
.ofield input:focus, .ofield select:focus, .ofield textarea:focus { border-color: var(--plum); }
.ofield--row { display: flex; gap: 16px; }
.ofield--row > div { min-width: 110px; }
.ofield__grow { flex: 1; }
.plist { display: flex; flex-direction: column; margin-top: 8px; }
.plist__addons-label { margin-top: 24px; }
.prow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(58, 46, 52, 0.1);
}
.prow:last-child { border-bottom: none; }
.prow__check { display: flex; align-items: center; gap: 12px; font-weight: 700; cursor: pointer; flex: 1; }
.prow__check input { width: 20px; height: 20px; accent-color: var(--plum); cursor: pointer; }
.prow__right { display: flex; align-items: center; gap: 10px; }
.prow__price { font-family: var(--font-display); font-size: 18px; color: var(--plum); white-space: nowrap; }
.prow select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(58, 46, 52, 0.18);
  border-radius: 10px;
  padding: 7px 10px;
}
.prow select:disabled { opacity: 0.45; }
.ofs--photo .body { margin-top: 12px; max-width: none; }
.order-total {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 28px 4px 8px;
}
.order-total__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 44px);
  color: var(--plum);
}
.order-send {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.order-send__fine { margin-top: 18px; line-height: 1.8; }
.footer--slim { padding-top: 40px; }
.footer--slim .footer__cols { border-top: none; padding-top: 0; }

/* ---------- Desktop SMS toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--plum);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  box-shadow: 0 10px 30px -12px rgba(58, 46, 52, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
  max-width: calc(100vw - 32px);
  text-align: center;
}
.toast.is-shown { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__logo { justify-self: start; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav__toggle span {
    display: block;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
  }
  .nav.nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(58, 46, 52, 0.08);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: 36px;
  }
  .hero__img {
    position: static;
    transform: none;
    height: auto;
    max-width: min(92%, 520px);
    margin: 0 auto;
  }
  .hero__panel {
    position: static;
    margin: 20px 16px 28px;
    max-width: none;
    border-radius: var(--radius-img);
  }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav__actions .btn--outline { display: none; }
  .footer__cols {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }
  .footer__fine { text-align: center; }
  .footer__grand { white-space: normal; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .card__tile { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; }
  .btn { font-size: 15px; padding: 15px 24px; }
  .nav__logo img { height: 44px; }
  .signup__input { min-width: 0; width: 100%; }
  .signup { width: 100%; }
}

.photo-drop img[hidden] { display: none; }
