/* Hyperice Nordics — product store */
:root {
  --bg: #ffffff;
  --bg-warm: #f3f3f1;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e4e2dd;
  --accent: #111111;
  --danger: #b42318;
  --radius: 2px;
  --header-h: 64px;
  --ticker-h: 34px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", "Manrope", system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: min(1280px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Announcement + Header */
.announcement {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: var(--ticker-h);
  height: var(--ticker-h);
}

.announcement a {
  display: block;
  color: inherit;
}

.announcement a:hover {
  opacity: 0.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  gap: 0.75rem;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
  gap: 0.35rem;
}

.header-left a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.92;
  transition: opacity 0.2s;
}

.header-left a:hover {
  opacity: 0.55;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  justify-self: center;
}

.logo-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.logo span {
  line-height: 1;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: background 0.2s;
}

.icon-btn:hover {
  background: var(--bg-warm);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.cart-badge[data-count="0"] {
  display: none;
}

@media (min-width: 720px) {
  .header-right {
    gap: 0.15rem 0.55rem;
  }

  .logo {
    font-size: 1.35rem;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
  }
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}

.search-overlay[hidden] {
  display: none !important;
}

.search-panel {
  width: min(640px, 100%);
  margin: 4rem auto 0;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.5rem;
}

.search-form input {
  border: 0;
  outline: none;
  min-height: 48px;
  font-size: 1.25rem;
  background: transparent;
  padding: 0;
}

.search-form input:focus {
  outline: none;
}

.search-results {
  margin-top: 1rem;
  display: grid;
  gap: 0.35rem;
  max-height: min(60vh, 480px);
  overflow: auto;
}

.search-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.search-item:hover {
  background: var(--bg-warm);
}

.search-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--bg);
}

.search-item strong {
  display: block;
  font-size: 0.95rem;
}

.search-item small {
  color: var(--muted);
}

.search-empty {
  color: var(--muted);
  padding: 1rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: #222;
}

.btn-ghost {
  background: transparent;
  border: 1px solid currentColor;
}

.btn-ghost.light {
  color: #fff;
}

.btn-ghost.dark {
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: grid;
  align-items: start;
  overflow: hidden;
  color: var(--ink);
  background: #ececeb;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.03);
  animation: heroZoom 14s var(--ease) forwards;
}

.hero-media .hero-video {
  display: block;
  transform: none;
  animation: none;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(236, 236, 235, 0.55) 0%, rgba(236, 236, 235, 0.08) 28%, transparent 48%),
    linear-gradient(90deg, rgba(236, 236, 235, 0.5) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 0;
  max-width: 720px;
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0;
  line-height: 1.02;
  max-width: 12ch;
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-caption a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .header-left a:last-child {
    display: none;
  }

  .header-inner {
    min-height: 56px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 18px;
    height: 18px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 1.75rem;
  }

  .hero h1 {
    max-width: 11ch;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0;
}

.section-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 36rem;
}

.link-arrow {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.85rem;
}

@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1.25rem;
  }
}

@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 45%),
    linear-gradient(160deg, #f3f2ef, #e7e5e0);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.55s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  z-index: 1;
}

.product-badge.sale {
  background: var(--danger);
}

.product-card-body h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-card-body .meta {
  margin: 0.2rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
}

.price-row .compare {
  color: var(--muted);
  font-weight: 500;
  text-decoration: line-through;
  font-size: 0.85rem;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.product-card-actions .btn {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  flex: 1;
}

/* Category band */
.category-band {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .category-band {
    grid-template-columns: 1.05fr 1fr;
    min-height: 520px;
  }

  .category-band.reverse .band-copy {
    order: 2;
  }

  .category-band.reverse .band-media {
    order: 1;
  }
}

.band-copy {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.band-copy.light {
  background: var(--bg-warm);
  color: var(--ink);
}

.band-copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.band-copy p {
  margin: 0;
  max-width: 28rem;
  opacity: 0.85;
}

.band-media {
  min-height: 320px;
  background: #1a1a1a;
  overflow: hidden;
}

.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 1.2s var(--ease);
}

.category-band:hover .band-media img {
  transform: scale(1.04);
}

/* Filters */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-chip {
  min-height: 40px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.035em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
}

/* Product detail */
.pdp {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
  }
}

.pdp-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--ticker-h) + 1rem);
}

.pdp-main-image {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 45%),
    linear-gradient(160deg, #f3f2ef, #e7e5e0);
  margin-bottom: 0.75rem;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.pdp-thumbs button {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: var(--bg-warm);
  padding: 0;
  overflow: hidden;
}

.pdp-thumbs button.is-active,
.pdp-thumbs button:hover {
  border-color: var(--ink);
}

.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
}

.pdp-info .category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pdp-info h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.pdp-desc {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
}

.qty-control button {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  font-weight: 600;
}

.qty-control span {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
}

.pdp-features {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.pdp-features li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.pdp-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--ink);
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 60;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--surface);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 3rem 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--bg-warm);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-top h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-item-remove {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: underline;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.65rem;
}

.cart-item .qty-control {
  transform: scale(0.9);
  transform-origin: left center;
}

.cart-drawer-footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 1.25rem 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.05rem;
}

.cart-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Checkout */
.checkout-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

@media (min-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.form-card,
.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.form-card h2,
.summary-card h2 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid.two {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.checkout-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--bg-warm);
}

.payment-block {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.payment-block h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.payment-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .payment-options {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: inherit;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.payment-option:hover {
  border-color: #bbb;
}

.payment-option:has(input:checked) {
  border-color: var(--ink);
  background: #f7f7f5;
  box-shadow: inset 0 0 0 1px var(--ink);
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
}

.payment-option-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid #bbb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}

.payment-option-check::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}

.payment-option:has(input:checked) .payment-option-check {
  border-color: var(--ink);
}

.payment-option:has(input:checked) .payment-option-check::after {
  background: var(--ink);
}

.payment-option-body {
  display: grid;
  gap: 0.2rem;
  text-align: left;
  min-width: 0;
}

.payment-option-body strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.payment-option-body span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.card-fields {
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: #fafafa;
}

.card-fields[hidden],
.cod-note[hidden] {
  display: none !important;
}

.cod-note {
  margin: 0;
  padding: 0.95rem 1.1rem;
  background: #f7f7f5;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-error {
  display: block;
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  min-height: 1.05em;
  font-weight: 500;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--danger);
}

/* Content pages */
.content-page {
  padding: 2.5rem 0 4.5rem;
  max-width: 760px;
}

.content-page h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.content-page h2 {
  font-family: var(--display);
  margin: 2rem 0 0.65rem;
  font-size: 1.35rem;
}

.content-page p,
.content-page li {
  color: var(--ink-soft);
}

/* Newsletter / support */
.support-band {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem 0;
}

.support-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .support-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.support-band h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.support-band p {
  margin: 0;
  opacity: 0.8;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter .btn {
  background: #fff;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.site-footer .logo {
  color: #fff;
  margin-bottom: 0.75rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 650;
  z-index: 90;
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* Thank you */
.thank-you {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.thank-you h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}
