@font-face {
  font-family: "PP Right Grotesk";
  src: url("FONTS/PP-Right-Grotesk-Tight-normal-400-100.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-blue: #015AB5;
  --color-nav: #1e2d3d;
  --color-accent-red: #C8150E;
  --color-teal: #099CC6;
  --color-text: #333333;
  --color-cream: #EAE8E0;
  --color-border: #000000;
  --font-body: "Poppins", sans-serif;
  --font-display: "Londrina Solid", cursive;
  --font-handwritten: "Long Cang", cursive;
  --font-grotesk: "PP Right Grotesk", Impact, "Arial Narrow", sans-serif;
  --radius-card: 10px;
  --radius-button: 20px;
  --frame-rim: clamp(6px, 1vw, 10px);
  /* Nav-only tokens (hex only in :root) */
  --color-nav-link: #f1e2a6;
  --color-nav-link-hover: #ffffff;
  /* Hero tokens */
  --hero-fallback-bg: #1a1a1a;
  --color-white: #ffffff;
  --color-light-gray: #f2f2f2;
  --color-sky: #8ec5df;
  /* CTAs: PP Right Grotesk scale (−4pt vs former 1.7rem headline buttons) */
  --btn-cta-font-size: calc(1.7rem - 4pt);
  /* Sticky nav + sort bar offset (overridden on mobile below) */
  --nav-main-height: 100px;
}

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

body {
  font-family: var(--font-body);
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #000000 0%,
    #0f0f0f 100%
  );
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: var(--btn-cta-font-size);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-red);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
  color: var(--color-white);
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
  color: var(--color-white);
  text-decoration: none;
}

/* Main column: accent rim + black stroke (entire nav + sections + footer) */
.page-column {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: clamp(8px, 2vw, 20px);
}

@media (min-width: 1001px) {
  body {
    background: linear-gradient(180deg, #015ab5 0%, #8fc5df 100%);
  }

  body::before,
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: max(
      clamp(20px, 4vw, 72px),
      calc((100vw - min(100vw, 1440px)) / 2)
    );
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg, #015ab5 0%, #8fc5df 100%);
  }

  body::before {
    left: 0;
  }

  body::after {
    right: 0;
  }

  .page-column {
    position: relative;
    z-index: 1;
    padding: clamp(8px, 2vw, 20px) 0 0;
    background: transparent;
  }

  .page-column__plate {
    border-top: 4px solid #2a2a2a;
    border-bottom: 4px solid #2a2a2a;
    border-left: none;
    border-right: none;
  }

  .nav-main {
    box-shadow: none;
  }
}

.page-column__rim {
  background: transparent;
  padding: 0;
  border-radius: var(--radius-button);
}

.page-column__plate {
  border: 4px solid var(--color-border);
  border-radius: var(--radius-button);
  background: var(--color-cream);
}

.page-column__plate--white {
  background: var(--color-white);
}

@media (max-width: 767px) {
}

/* NAV */
.nav-main {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--nav-main-height);
  background: var(--color-nav);
  border-bottom: 2px solid color-mix(in srgb, var(--color-nav-link) 22%, transparent);
  border-radius: calc(var(--radius-button) - 4px) calc(var(--radius-button) - 4px) 0 0;
  box-shadow: none;
  isolation: isolate;
}

.nav-main.is-open {
  z-index: 2500;
}

.nav-main__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.nav-main__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  border: 0;
  padding: 0;
  margin: 0;
  background: color-mix(in srgb, var(--color-border) 42%, transparent);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.nav-main.is-open .nav-main__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-main__mobile-left,
.nav-main__mobile-right {
  display: none;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
}

.nav-main__mobile-right {
  pointer-events: none;
}

.nav-main__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-main__toggle:hover {
  color: #ffffff;
  background-color: color-mix(in srgb, #ffffff 12%, transparent);
}

.nav-main__toggle:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.nav-main__toggle-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
}

.nav-main__toggle-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
}

.nav-main__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 100px;
  z-index: 3;
  text-decoration: none;
}

.nav-main__logo-img {
  display: block;
  width: auto;
  max-width: 188px;
  height: clamp(56px, 8vw, 72px);
  object-fit: contain;
}

.nav-main__utility {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  padding-right: clamp(12px, 2.5vw, 40px);
}

.nav-main__utility a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.nav-main__utility a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.nav-main__utility svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav-main__drawer-close {
  display: none;
  align-self: flex-end;
  margin-bottom: 1rem;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid color-mix(in srgb, var(--color-nav-link) 55%, transparent);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--color-nav-link) 10%, transparent);
  color: var(--color-nav-link);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-main__drawer-close:hover {
  background: color-mix(in srgb, var(--color-nav-link) 22%, transparent);
  color: var(--color-nav-link-hover);
  border-color: var(--color-nav-link);
}

.nav-main__drawer-close:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

.nav-main__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(16px, 4vw, 60px);
  padding-left: clamp(12px, 2.5vw, 40px);
}

/* Desktop: symmetrical space around centered logo */
.nav-drawer__panel--main > .nav-main__dropdown:last-of-type {
  margin-right: clamp(80px, 12vw, 200px);
}

.nav-drawer__panel--main > a[href="about.html"] {
  margin-left: clamp(80px, 12vw, 200px);
}

.nav-main__links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-nav-link);
  text-decoration: none;
  transition: color 180ms ease;
  white-space: nowrap;
}

.nav-main__links a:hover {
  color: var(--color-nav-link-hover);
}

.nav-drawer__home {
  display: none;
}

.nav-main__links a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* DROPDOWN */
.nav-main__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drawer__chevron {
  display: none;
}

.nav-drawer__panel--sub {
  display: none;
}

.nav-drawer__panel--main {
  display: contents;
}

.nav-main__dropdown > a {
  position: relative;
}

.nav-main__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 30px 0 12px;
  margin-top: 0;
  background: color-mix(in srgb, var(--color-nav) 88%, #000000);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 200;
}

.nav-main__dropdown:hover .nav-main__dropdown-menu,
.nav-main__dropdown:focus-within .nav-main__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-main__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-nav-link);
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease;
}

.nav-main__dropdown-menu a:hover {
  background: color-mix(in srgb, var(--color-nav-link) 14%, transparent);
  color: var(--color-nav-link-hover);
}

body.nav-drawer-open {
  overflow: hidden;
}

@media (max-width: 1000px) {
  :root {
    --nav-main-height: 80px;
  }

  .page-column {
    padding: 0;
  }

  .page-column__rim {
    border-radius: 0;
  }

  .page-column__plate {
    border: none;
    border-radius: 0;
  }

  .nav-main {
    height: var(--nav-main-height);
    border-radius: 0;
  }

  .nav-main__mobile-left,
  .nav-main__mobile-right {
    display: flex;
  }

  .nav-main__toggle {
    width: 40px;
    height: 40px;
  }

  .nav-main__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 169px;
    height: 72px;
    padding: 0;
  }

  .nav-main__logo-img {
    width: auto;
    max-width: 173px;
    max-height: 72px;
    height: auto;
    aspect-ratio: 157 / 84;
    object-fit: contain;
  }

  .nav-main__drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-drawer__home {
    display: block;
  }

  .nav-drawer__panel--main > a[href="about.html"] {
    margin-left: 0;
  }

  .nav-drawer__panel--main > .nav-main__dropdown:last-of-type {
    margin-right: 0;
  }

  .nav-main__links {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(22rem, 92vw);
    height: 100dvh;
    max-height: 100dvh;
    padding: calc(var(--nav-main-height, 80px) + 0.75rem) 1.25rem 1.5rem;
    margin: 0;
    background: var(--color-nav);
    border-right: 10px solid var(--color-blue);
    box-shadow: 8px 0 32px color-mix(in srgb, #000000 35%, transparent);
    overflow: auto;
    overscroll-behavior: contain;
    transform: translateX(-100%);
    transition: transform 220ms ease;
    pointer-events: none;
  }

  .nav-main.is-open .nav-main__links {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-main__links a {
    white-space: normal;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
    padding: 1rem 0.75rem;
    color: var(--color-nav-link);
    border-bottom: 1px solid color-mix(in srgb, var(--color-nav-link) 18%, transparent);
  }

  .nav-main__links a:hover {
    color: var(--color-nav-link-hover);
  }

  .nav-main__links a:last-of-type {
    border-bottom: 0;
  }

  .nav-main__mobile-left {
    flex: 0 0 auto;
    width: auto;
    position: absolute;
    left: 12px;
  }

  .nav-main__utility {
    position: absolute;
    right: 12px;
    padding-right: 0;
  }

  .nav-main__utility svg {
    width: 26px;
    height: 26px;
  }

  .nav-main__logo {
    margin: 0 auto;
  }

  .nav-main__dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    min-width: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-main__dropdown-menu a {
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--color-nav-link) 82%, #ffffff);
    border-bottom: 1px solid color-mix(in srgb, var(--color-nav-link) 12%, transparent);
  }

  .nav-main__dropdown-menu a:hover {
    background: transparent;
    color: var(--color-nav-link-hover);
  }

  /* Drill-down panels */
  .nav-main__links {
    overflow: hidden;
  }

  .nav-drawer__panel {
    display: none;
    flex-direction: column;
    width: 100%;
    min-height: 0;
  }

  .nav-drawer__panel.is-active {
    display: flex;
    animation: drawerSlideIn 250ms ease forwards;
  }

  .nav-drawer__panel--main .nav-main__dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav-drawer__panel--main .nav-main__dropdown > a {
    flex: 1 1 auto;
    cursor: pointer;
  }

  .nav-drawer__panel--main .nav-main__dropdown-menu {
    display: none;
  }

  .nav-drawer__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    height: 100%;
    background: none;
    border: 0;
    padding: 1rem 0.75rem;
    cursor: pointer;
    color: var(--color-nav-link);
    opacity: 0.65;
    transition: opacity 180ms ease, color 180ms ease;
  }

  .nav-drawer__chevron:hover {
    opacity: 1;
  }

  .nav-drawer__chevron svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  .nav-drawer__back {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-nav-link) 18%, transparent);
    padding: 1rem 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-nav-link);
    cursor: pointer;
  }

  .nav-drawer__back svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  .nav-drawer__panel--sub a {
    padding: 1rem 0.75rem;
    color: var(--color-nav-link);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid color-mix(in srgb, var(--color-nav-link) 12%, transparent);
  }

  .nav-drawer__panel--sub a:hover {
    color: var(--color-nav-link-hover);
  }

  @keyframes drawerSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

@media (max-width: 1000px) and (prefers-reduced-motion: reduce) {
  .nav-main__links,
  .nav-main__backdrop {
    transition: none;
  }
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-carousel__track {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  height: 85vh;
  cursor: pointer;
}

.hero-carousel__shade {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: #000;
  opacity: 0;
  pointer-events: none;
  /* Fade *up* into black slowly on exit; lift off black quickly between slides */
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.55, 1);
}

.hero-carousel__shade.is-visible {
  opacity: 1;
  transition: opacity 460ms cubic-bezier(0.35, 0, 0.2, 1);
}

/* Mobile-only slide progress (hidden on desktop) */
.hero-carousel__dots {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}

.hero-slide.is-active {
  visibility: visible;
  pointer-events: auto;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--hero-fallback-bg);
  transform: scale(1.2);
  opacity: 0;
  transition:
    transform 2000ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 2000ms ease;
  will-change: transform, opacity;
}

.hero-slide__media.is-zoomed {
  transform: scale(1);
  opacity: 1;
}

.hero-slide--1 .hero-slide__media {
  background-image: url("assets/hero_fairfax.jpg");
}

.hero-slide--2 .hero-slide__media {
  background-image: url("assets/surfing-fort-point-front.jpg?v=2");
}

.hero-slide--3 .hero-slide__media {
  background-image: url("assets/surfing-thewedge-front.png");
}

.hero-slide--4 .hero-slide__media {
  background-image: url("assets/hero_raccoon_walk.jpg");
}

.hero-slide--5 .hero-slide__media {
  background-image: url("assets/surfing-jaws-front.jpg");
}

.hero-slide__text-zone {
  position: static;
  z-index: 2;
  width: 100%;
  padding: 0 24px 40px;
}

.hero-slide__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  top: 42%;
  transform: none;
  pointer-events: none;
  border-radius: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 22%,
    rgba(0, 0, 0, 0.38) 52%,
    transparent 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px) scale(1.2);
  transform-origin: center bottom;
  /* Leaving .is-visible: fade out sooner, motion continues longer (2× slower than prior) */
  transition:
    opacity 800ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide__content.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1.2);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Staggered reveal / exit on each line (parent holds layout during exit) */
.hero-slide__content:not(.is-visible):not(.is-exiting) .hero-slide__label,
.hero-slide__content:not(.is-visible):not(.is-exiting) .hero-slide__heading,
.hero-slide__content:not(.is-visible):not(.is-exiting) .hero-slide__meta,
.hero-slide__content:not(.is-visible):not(.is-exiting) .hero-slide__actions {
  animation: none;
}

.hero-slide__content.is-exiting {
  opacity: 1;
  transform: translateY(0) scale(1.2);
  transition: none;
}

/* Exit bottom → top: buttons, meta, title, eyebrow */
.hero-slide__content.is-exiting .hero-slide__actions {
  animation: heroLineOut 0.56s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0s;
}

.hero-slide__content.is-exiting .hero-slide__meta {
  animation: heroLineOut 0.54s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.06s;
}

.hero-slide__content.is-exiting .hero-slide__heading {
  animation: heroLineOut 0.54s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.12s;
}

.hero-slide__content.is-exiting .hero-slide__label {
  animation: heroLineOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.hero-slide__content.is-visible .hero-slide__label {
  animation: heroLineIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.05s;
}

.hero-slide__content.is-visible .hero-slide__heading {
  animation: heroLineIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.13s;
}

.hero-slide__content.is-visible .hero-slide__meta {
  animation: heroLineIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.2s;
}

.hero-slide__content.is-visible .hero-slide__actions {
  animation: heroLineIn 0.64s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.3s;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(18px);
  }
}

.hero-slide__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-nav-link);
  text-align: center;
}

.hero-slide__heading {
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: clamp(2.25rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  line-height: 1;
}

.hero-slide__meta {
  /* Tight to title: flex gap 12px + negative margin ≈ 6px */
  margin: -6px 0 clamp(14px, 2vw, 20px);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.52rem, 0.84vw, 0.64rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  line-height: 1.35;
}

.hero-slide__meta-sep {
  margin: 0 0.35em;
  font-weight: 300;
  opacity: 0.75;
}

.hero-slide__blurb {
  max-width: 520px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 1000px) {
  .hero-carousel .hero-slide__blurb {
    display: none;
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-nav-link-hover);
  text-align: center;
}

.hero-logo {
  display: block;
  width: 70vw;
  max-width: 900px;
  height: auto;
}

.hero-page.hero-page--home {
  position: relative;
  min-height: 85vh;
  gap: 20px;
}

.hero-bio {
  max-width: 520px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  color: var(--color-nav-link-hover);
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.hero-slide__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  width: max-content;
  max-width: 100%;
}

.hero-slide__actions .btn {
  width: auto;
  flex: 0 1 auto;
  margin-top: 0;
  font-size: calc(var(--btn-cta-font-size) - 2px);
  /* +40px overall width vs default .btn (20px each side) */
  padding: 10px calc(16px + 20px);
}

.hero-slide__actions .btn--primary {
  background: #ffffff;
  border-color: #ffffff;
  color: #0f0f0f;
}

.hero-slide__actions .btn--primary:hover {
  background: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
  color: #ffffff;
}

.hero-slide__actions .btn--secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.hero-slide__actions .btn--secondary:hover {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
  color: #ffffff;
}

.hero-quote {
  max-width: 720px;
  text-align: center;
  margin: 0;
  padding: 0;
  border: 0;
}

.hero-quote p {
  font-family: var(--font-handwritten);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--color-nav-link-hover);
}

@media (max-width: 1000px) {
  .hero-carousel__track {
    height: 90vh;
  }

  .hero-page.hero-page--home {
    min-height: 90vh;
    gap: 16px;
  }

  .hero-slide__scrim {
    top: 24%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.88) 14%,
      rgba(0, 0, 0, 0.78) 30%,
      rgba(0, 0, 0, 0.62) 48%,
      rgba(0, 0, 0, 0.48) 62%,
      rgba(0, 0, 0, 0.28) 78%,
      transparent 100%
    );
  }

  .hero-slide__text-zone {
    padding: 0 24px 50px;
  }

  .hero-slide__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-slide__actions .btn {
    width: 100%;
    max-width: 20rem;
  }

  .hero-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    position: absolute;
    z-index: 18;
    left: 0;
    right: 0;
    bottom: clamp(11.5rem, 30vh, 14.5rem);
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .hero-carousel__dot {
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    pointer-events: auto;
    transition: background 220ms ease, transform 220ms ease, opacity 220ms ease;
  }

  .hero-carousel__dot.is-active {
    background: rgba(255, 255, 255, 0.72);
    transform: scale(1.2);
  }

  .hero-carousel__dot:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide__media {
    transform: none;
    transition: opacity 400ms ease;
  }

  .hero-slide__content {
    transform: scale(1.2);
    transition: opacity 800ms ease;
  }

  .hero-slide__content.is-visible {
    transform: scale(1.2);
  }

  .hero-slide__content.is-visible .hero-slide__label,
  .hero-slide__content.is-visible .hero-slide__heading,
  .hero-slide__content.is-visible .hero-slide__actions,
  .hero-slide__content.is-exiting .hero-slide__label,
  .hero-slide__content.is-exiting .hero-slide__heading,
  .hero-slide__content.is-exiting .hero-slide__actions {
    animation: none;
  }

  .hero-carousel__shade {
    transition: opacity 300ms ease;
  }
}

@media (max-width: 540px) {
  .hero-carousel__track {
    height: 90vh;
  }

  .hero-page.hero-page--home {
    min-height: 90vh;
  }
}

/* FEATURED WORKS */
.featured-works {
  padding: 12px clamp(12px, 2vw, 30px) clamp(40px, 6vw, 80px);
  background: var(--color-white);
}

.featured-works__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: clamp(24px, 4vw, 48px);
  text-align: center;
}

.featured-works__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1.25vw, 16px);
  margin-top: 50px;
}

.featured-works__grid .art-card:nth-child(-n+2) {
  grid-column: span 3;
  margin-bottom: 50px;
}

.featured-works__grid .art-card:nth-child(n+3) {
  grid-column: span 2;
}

.art-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.art-card__image {
  position: relative;
  border: 2px solid #777;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.art-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.art-card__img--default {
  transition: transform 150ms linear;
}

.art-card:hover .art-card__img--default {
  transform: rotate(5deg) scale(1.24) translateX(8%);
  transition: transform 80ms linear;
}

.art-card--heavy-zoom:hover .art-card__img--default {
  transform: rotate(55deg) scale(1.86) translateX(8%) translateY(50px);
}

.art-card__img--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: rotate(0deg) scale(1) translateX(0);
  transition: opacity 150ms linear, transform 150ms linear;
}

.art-card:hover .art-card__img--hover {
  opacity: 1;
  transform: rotate(5deg) scale(1.24) translateX(8%);
  transition: opacity 80ms linear, transform 80ms linear;
}

.art-card--swap-only:hover .art-card__img--hover {
  transform: none;
}

.art-card:hover .art-card__name {
  text-decoration: underline;
}

.art-card__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-red);
}

.art-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.art-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.art-card__medium,
.art-card__size,
.art-card__price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text);
}

.art-card__price {
  font-weight: 700;
}

.featured-works__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 56px);
}

.featured-works__btn {
  min-width: 320px;
}

@media (max-width: 1000px) {
  .featured-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-works__grid .art-card:nth-child(-n+2),
  .featured-works__grid .art-card:nth-child(n+3) {
    grid-column: span 1;
  }

  .featured-works__grid .art-card:nth-child(-n+2) {
    margin-bottom: 0;
  }
}

@media (max-width: 540px) {
  .featured-works__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* LATEST NEWS */
.latest-news {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 60px);
  background: var(--color-white);
}

.latest-news__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-light-gray);
  padding: clamp(20px, 3vw, 40px);
}

.latest-news__image {
  overflow: hidden;
}

.latest-news__image img {
  display: block;
  width: 100%;
  height: auto;
}

.latest-news__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.latest-news__section-title {
  font-family: var(--font-handwritten);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--color-text);
}

.latest-news__date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text);
}

.latest-news__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
}

.latest-news__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.5;
  color: var(--color-text);
}

.latest-news__btn {
  align-self: flex-start;
}

@media (max-width: 1000px) {
  .latest-news__layout {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
}

/* ABOUT */
.about {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 60px);
  background: var(--color-teal);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.about__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__body {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.4;
  color: var(--color-nav-link-hover);
}

.about .about__btn.btn--secondary {
  border-color: var(--color-nav-link-hover);
  color: var(--color-nav-link-hover);
}

.about__btn {
  align-self: flex-start;
}

@media (max-width: 1000px) {
  .about__layout {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
}

.hero-utility {
  position: absolute;
  top: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-utility__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 200ms ease;
}

.hero-utility__btn:hover {
  opacity: 0.7;
}

.hero-utility__btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.hero-page__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}

/* PAGE HERO (single-slide, text-only hero for subpages) */
.hero-page {
  position: relative;
  width: 100%;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}

.hero-page__title {
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-nav-link-hover);
  text-align: center;
}

/* SECTION HEADING (below nav, in white content area) */
.section-heading {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 60px) 0;
  background: var(--color-white);
  text-align: center;
}

.section-heading__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text);
}

/* CATEGORY TABS */
.category-toolbar {
  display: none;
}

.category-toolbar__label {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.2;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(16px, 2.5vw, 28px);
  padding: 0 16px;
}

@media (min-width: 1001px) {
  .category-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(11px, 2.2vw, 22px);
    margin-top: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(16px, 2.5vw, 28px);
    padding: 0 16px;
  }

  .category-toolbar .category-tabs {
    margin: 0;
    padding: 0;
    flex: 0 1 auto;
    justify-content: flex-start;
  }
}

/* Sticky sort/filter bar — pins below nav while catalog scrolls */
.originals-catalog .category-toolbar,
.originals-catalog .catalog-controls,
.news-catalog .category-toolbar {
  position: sticky;
  top: var(--nav-main-height, 100px);
  z-index: 99;
  background: var(--color-white);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.category-tab {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #999;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #888;
  background: transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.category-tab:hover {
  background: var(--color-sky);
  border-color: var(--color-sky);
  color: var(--color-white);
}

.category-tab.is-active {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
  color: var(--color-white);
}

.category-dropdown {
  display: none;
}

.catalog-controls {
  display: none;
}

@media (max-width: 1000px) {
  .category-toolbar {
    display: none;
  }

  .category-tabs {
    display: none;
  }

  .news-catalog .category-tabs {
    display: flex;
    margin-top: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(16px, 2.5vw, 28px);
  }

  .catalog-controls {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: clamp(12px, 2vw, 20px) 0 clamp(16px, 2.5vw, 28px);
    padding: 0 clamp(12px, 3vw, 24px);
  }

  .catalog-controls__field {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .catalog-controls__label {
    flex: 0 0 auto;
    font-family: var(--font-body);
    font-size: clamp(0.65rem, 2.4vw, 0.75rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    line-height: 1.2;
  }

  .catalog-controls__control {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
  }

  .catalog-controls .category-dropdown,
  .catalog-controls .sort-dropdown {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .category-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-text);
    background: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
  }

  .catalog-controls__field--filter .category-dropdown__trigger,
  .catalog-controls__field--filter .category-dropdown__menu a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .category-dropdown__arrow {
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 200ms ease;
  }

  .category-dropdown.is-open .category-dropdown__arrow {
    transform: rotate(180deg);
  }

  .category-dropdown__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
  }

  .category-dropdown__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    color: var(--color-text);
    transition: background 150ms ease;
  }

  .category-dropdown__menu a:hover {
    background: #f5f5f5;
  }

  .category-dropdown__menu a.is-active {
    background: transparent;
    color: var(--color-text);
    font-weight: 500;
  }

  .category-dropdown__menu a.is-active::after {
    content: "✓";
    color: #2a9d4b;
    font-size: 1rem;
    line-height: 1;
  }

  .catalog-controls__field--filter .category-dropdown__menu a.is-active {
    background: var(--color-accent-red);
    color: #fff;
  }

  .catalog-controls__field--filter .category-dropdown__menu a.is-active::after {
    color: #fff;
  }
}

/* ORIGINALS CATALOG */
.originals-catalog {
  padding: 12px clamp(12px, 2vw, 30px) clamp(32px, 5vw, 60px);
  background: var(--color-white);
}

.originals-catalog__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 8px;
  text-align: center;
}

.originals-catalog__count {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: clamp(24px, 3vw, 40px);
  text-align: center;
}

.originals-catalog__coming-soon {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 60px);
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.originals-catalog__coming-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.merch-shopify {
  padding: clamp(20px, 4vw, 40px) clamp(12px, 2vw, 24px) clamp(32px, 5vw, 56px);
  min-height: 120px;
}

.originals-catalog__coming-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  max-width: 560px;
}

.originals-catalog__empty {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #999;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px;
}

.originals-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.25vw, 16px);
}

@media (max-width: 1000px) {
  .originals-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .originals-catalog__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-page {
    min-height: 140px;
    padding: 20px 24px;
  }
}

/* NEWS BLOG */
.news-catalog {
  padding: 0 clamp(24px, 4vw, 60px) clamp(40px, 6vw, 80px);
  background: var(--color-white);
}

.news-catalog__panel {
  padding-top: clamp(24px, 4vw, 48px);
}

.news-blog {
  background: var(--color-white);
}

.news-blog__featured {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 100px;
}

.news-blog__featured-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.news-blog__featured-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.news-blog__featured-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.news-blog__featured-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 700px;
}

.news-blog__featured-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  max-width: 600px;
}

.news-blog__featured-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-card);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: background-color 200ms ease, color 200ms ease;
  align-self: flex-start;
}

.news-blog__featured-link:hover .news-blog__featured-cta {
  background: var(--color-white);
  color: var(--color-text);
}

.news-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.news-blog__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-blog__card-img {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.news-blog__card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease;
}

.news-blog__card-link:hover .news-blog__card-img img {
  transform: scale(1.03);
}

.news-blog__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
}

.news-blog__card-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.news-blog__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  line-height: 1.3;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.news-blog__card-excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  line-height: 1.55;
  color: #666;
  margin-top: 4px;
}

.news-blog__card-more {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 8px;
  transition: color 180ms ease;
}

.news-blog__card-link:hover .news-blog__card-more {
  color: var(--color-teal);
}

@media (max-width: 1000px) {
  .news-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-blog__featured-img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 540px) {
  .news-blog__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .news-blog__featured-img {
    aspect-ratio: 4 / 3;
  }

  .news-blog__featured-title {
    font-size: 1.15rem;
  }

  .news-blog__featured-desc {
    display: none;
  }
}

/* NEWS BLOG — SECTION HEADERS */
.news-blog__section-header {
  border-top: 1px solid #e0e0e0;
  padding-top: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.news-blog__section-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-align: center;
}

.news-blog__section-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #666;
  text-align: center;
  margin-top: 8px;
}

/* NEWS BLOG — LATEST SPLIT (About-style layout) */
.news-blog__latest-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 100px;
}

.news-blog__latest-photo img {
  display: block;
  width: auto;
  max-height: 676px;
  object-fit: contain;
  border-radius: 0;
}

.news-blog__latest-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-blog__latest-date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.news-blog__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 60px;
}

.news-blog__latest-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.news-blog__latest-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.7;
  color: #555;
  margin-top: 14px;
}

.news-blog__latest-text:first-of-type {
  margin-top: 0;
}

.news-blog__latest-more {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 20px;
  transition: color 180ms ease;
}

.news-blog__latest-more:hover {
  color: var(--color-teal);
}

@media (max-width: 1000px) {
  .news-blog__latest-split {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: 60px;
  }
}

/* NEWS BLOG — SECTION TITLES (Tips & Techniques) */
.news-blog__section-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 8px;
}

.news-blog__section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #666;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.news-blog--tips {
  padding-top: 0;
}

/* NEWS POST — ARTICLE DETAIL PAGE */
.news-post {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 60px) clamp(12px, 2.25vw, 30px) clamp(48px, 6vw, 80px);
  background: var(--color-white);
}

.news-post__header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.news-post__back {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
  flex-shrink: 0;
}

.news-post__back:hover {
  color: var(--color-teal);
}

.news-post__date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.news-post__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.news-post__intro {
  margin-bottom: clamp(32px, 4vw, 48px);
  text-align: left;
}

.news-post__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.news-post__intro p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.6;
  color: var(--color-text);
  margin-top: 12px;
}

.news-post__figure {
  margin: clamp(24px, 4vw, 40px) 0;
}

.news-post__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid #e0e0e0;
}

.news-post__figure figcaption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  font-style: italic;
  color: #999;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.news-post__body {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.news-post__body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--color-text);
  margin-bottom: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.news-post__body h3:first-child {
  margin-top: 0;
}

.news-post__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: var(--color-text);
  margin-top: 14px;
}

.news-post__body ul {
  margin: 14px 0 14px 24px;
  list-style: disc;
}

.news-post__body li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: var(--color-text);
  margin-top: 6px;
}

/* Product callout card */
.news-post__callout {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: clamp(32px, 4vw, 48px) 0;
  background: var(--color-light-gray);
}

.news-post__callout-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-post__callout-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(20px, 3vw, 32px);
}

.news-post__callout-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.news-post__callout-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
}

.news-post__comments {
  border-top: 1px solid #e0e0e0;
  padding-top: clamp(32px, 4vw, 48px);
  margin-top: clamp(32px, 4vw, 48px);
}

.news-post__comments-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.news-post__comments-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 20px;
}

.news-post__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-post__form-row {
  display: flex;
  gap: 16px;
}

.news-post__input,
.news-post__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  border: 1px solid #ccc;
  border-radius: var(--radius-card);
  background: var(--color-white);
  transition: border-color 180ms ease;
  resize: vertical;
}

.news-post__input:focus,
.news-post__textarea:focus {
  outline: none;
  border-color: var(--color-text);
}

.news-post__submit {
  align-self: flex-start;
}

@media (max-width: 540px) {
  .news-post__form-row {
    flex-direction: column;
  }

  .news-post__header {
    gap: 24px;
  }
}

/* ABOUT PAGE */
.about-page {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px) 100px;
  background: var(--color-white);
}

.about-page__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-top: 1px solid #e0e0e0;
}

.about-page__photo img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 100px 0 100px 0;
}

.about-page__story {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.about-page__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.7;
  color: #555;
  margin-top: 14px;
}

.about-page__text:first-of-type {
  margin-top: 0;
}

.about-page__section {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid #e0e0e0;
}

.about-page__section-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.about-page__section-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.7;
  color: #555;
  margin-top: 12px;
}

.about-page__section-text:first-of-type {
  margin-top: 0;
}

.about-page__section-text a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.about-page__section-text a:hover {
  color: var(--color-blue);
}

@media (max-width: 1000px) {
  .about-page__split {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
}

/* CONTACT PAGE */
.contact-page {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px) clamp(48px, 6vw, 80px);
  background: var(--color-white);
}

.contact-page__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid #e0e0e0;
}

.contact-page__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 100px 0 100px 0;
}

.contact-page__section-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 12px;
}

.contact-page__direct {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 16px;
}

.contact-page__direct a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page__direct a:hover {
  color: var(--color-accent-red);
}

.contact-page__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-page__form-error {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text);
  background: rgba(200, 21, 14, 0.08);
  border-left: 3px solid var(--color-accent-red);
  padding: 12px 16px;
  margin: 0 0 16px;
}

.contact-page__success {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  background: rgba(200, 21, 14, 0.08);
  border-left: 3px solid var(--color-accent-red);
  padding: 12px 16px;
  margin: 0 0 20px;
}

.contact-page__section-intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.contact-page__contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page__info-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #666;
  margin-top: 20px;
  margin-bottom: 4px;
}

.contact-page__info-heading:first-of-type {
  margin-top: 0;
}

.contact-page__info-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #777;
  margin-top: 4px;
}

.contact-page__good-to-know {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid #e0e0e0;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-page__form .contact-page__form-row {
  display: flex;
  gap: 14px;
}

.contact-page__form .contact-page__form-row .contact-page__input {
  flex: 1;
  min-width: 0;
  width: auto;
}

.contact-page__form .contact-page__fieldset--inquiry {
  margin: 20px;
  padding: 0;
}

.contact-page__input,
.contact-page__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text);
  border: 1px solid #ccc;
  border-radius: 0;
  background: var(--color-white);
  transition: border-color 180ms ease;
  resize: vertical;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
  outline: none;
  border-color: var(--color-text);
}

.contact-page__submit.btn {
  width: 100%;
  margin-top: 8px;
  border-radius: 0;
  padding: 14px 20px;
  font-family: var(--font-grotesk);
  font-size: var(--btn-cta-font-size);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.contact-page__submit.btn.is-sent,
.contact-page__submit.btn.is-sent:hover {
  background: #2d8a4e;
  border-color: #2d8a4e;
  color: var(--color-white);
  cursor: default;
}

.contact-page__submit.btn:disabled:not(.is-sent) {
  opacity: 0.65;
  cursor: wait;
}

/* Commissions form */
.contact-page__commissions {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid #e0e0e0;
}

.contact-page__commission-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page__form-row {
  display: flex;
  gap: 16px;
}

.contact-page__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.contact-page__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
}

.contact-page__label span {
  font-weight: 400;
  color: #999;
  font-size: 0.8rem;
}

.contact-page__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page__legend {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-page__radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text);
  cursor: pointer;
}

.contact-page__radio input {
  margin-top: 4px;
  accent-color: var(--color-text);
}

.contact-page__terms {
  padding: 20px;
  background: var(--color-light-gray);
  border-radius: var(--radius-card);
}

.contact-page__terms-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.contact-page__terms-title span {
  font-weight: 400;
  color: #999;
  font-size: 0.8rem;
}

.contact-page__terms-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 16px;
}

.contact-page__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--color-text);
  cursor: pointer;
}

.contact-page__checkbox input {
  accent-color: var(--color-text);
}

.contact-page__upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page__upload-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.contact-page__upload-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px;
}

.contact-page__upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  border: 2px dashed #ccc;
  border-radius: var(--radius-card);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-page__upload-zone:hover {
  border-color: var(--color-text);
  background: var(--color-light-gray);
}

.contact-page__upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  font-size: 1.25rem;
  color: #666;
}

/* Newsletter signup */
.contact-page__newsletter {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px) 0 100px;
  border-top: 1px solid #e0e0e0;
}

.contact-page__newsletter-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 20px;
}

.contact-page__newsletter-form {
  display: flex;
  gap: 0;
}

.contact-page__newsletter-input {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text);
  border: 1px solid #ccc;
  border-right: 0;
  border-radius: 0;
  background: var(--color-white);
  transition: border-color 180ms ease;
}

.contact-page__newsletter-input:focus {
  outline: none;
  border-color: var(--color-text);
}

.contact-page__newsletter-btn.btn {
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: 0;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .contact-page__split {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: clamp(40px, 5vw, 60px);
  }
}

@media (max-width: 540px) {
  .contact-page__form-row {
    flex-direction: column;
  }

  .contact-page__newsletter-form {
    flex-direction: column;
  }

  .contact-page__newsletter-input {
    border-right: 1px solid #ccc;
  }

  .contact-page__newsletter-btn.btn {
    border-top: 0;
  }
}

/* ─── Product Detail Page ─── */

.product-detail {
  padding: clamp(20px, 4vw, 48px) clamp(16px, 4vw, 48px);
  background: var(--color-white);
}

.product-detail__breadcrumb {
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-bottom: clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
}

.product-detail__breadcrumb a {
  color: var(--color-text);
  text-decoration: none;
}

.product-detail__breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-detail__title {
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.product-detail__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text);
}

.product-detail__availability {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-teal);
  font-weight: 600;
}

.product-detail__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-red);
}

.product-detail__description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.product-detail__specs {
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
}

.product-detail__specs strong {
  font-weight: 700;
}

.product-detail__cart-btn.btn {
  width: 100%;
  align-self: stretch;
  margin-top: 8px;
}

.product-detail__cart-btn.btn--secondary:focus-visible {
  outline-color: var(--color-text);
}

.product-detail__cart-btn.btn--secondary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Product detail accordions (below Add to Cart) */
.product-detail__accordions {
  width: 100%;
  margin-top: clamp(12px, 2vw, 24px);
}

.product-detail__accordion + .product-detail__accordion {
  margin-top: 0;
}

.product-detail__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(14px, 2vw, 20px) 0;
  border: none;
  border-top: 1px solid #d8d8d8;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--color-text);
}

.product-detail__accordion:last-child .product-detail__accordion-trigger {
  border-bottom: 1px solid #d8d8d8;
}

.product-detail__accordion-trigger:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.product-detail__accordion-title {
  font-weight: 700;
  font-size: clamp(0.78rem, 1.35vw, 0.88rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-detail__accordion-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__accordion-icon-plus {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 0.48s cubic-bezier(0.34, 1.35, 0.52, 1);
}

.product-detail__accordion-icon-plus::before,
.product-detail__accordion-icon-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.product-detail__accordion-icon-plus::before {
  width: 14px;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.product-detail__accordion-icon-plus::after {
  width: 2px;
  height: 14px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition:
    opacity 0.22s ease,
    transform 0.38s cubic-bezier(0.34, 1.35, 0.52, 1);
}

.product-detail__accordion.is-open .product-detail__accordion-icon-plus {
  transform: rotate(225deg);
}

.product-detail__accordion.is-open .product-detail__accordion-icon-plus::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}

.product-detail__accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s ease,
    visibility 0s linear 0.48s;
}

.product-detail__accordion.is-open .product-detail__accordion-panel {
  max-height: min(120rem, 200vh);
  opacity: 1;
  visibility: visible;
  transition:
    max-height 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.42s ease 0.06s,
    visibility 0s linear 0s;
}

.product-detail__accordion-inner {
  padding: 0 0 clamp(18px, 3vw, 28px);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text);
}

.product-detail__accordion-inner > p:first-child {
  margin-top: 0;
}

.product-detail__accordion-inner p {
  margin: 0 0 0.85rem;
}

.product-detail__accordion-lede {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-detail__accordion-block + .product-detail__accordion-block {
  margin-top: 1.15rem;
}

.product-detail__accordion-subhd {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.product-detail__accordion-subhd strong {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .product-detail__accordion-panel {
    transition: none;
  }

  .product-detail__accordion.is-open .product-detail__accordion-panel {
    transition: none;
  }

  .product-detail__accordion-icon-plus {
    transition: none;
  }

  .product-detail__accordion-icon-plus::after {
    transition: none;
  }

  .product-detail__accordion.is-open .product-detail__accordion-icon-plus {
    transform: none;
  }

  .product-detail__accordion.is-open .product-detail__accordion-icon-plus::after {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }
}

.product-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-detail__main-image {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #f5f5f5;
}

.product-detail__main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-detail__thumbs {
  display: flex;
  gap: 10px;
}

.product-detail__thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #f5f5f5;
  cursor: pointer;
  transition: border-color 150ms ease;
}

.product-detail__thumb.is-active {
  border-color: var(--color-text);
}

.product-detail__thumb:hover {
  border-color: #999;
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
  }

  .product-detail__gallery {
    order: -1;
  }
}

.footer-main {
  border-bottom-left-radius: calc(var(--radius-button) - 4px);
  border-bottom-right-radius: calc(var(--radius-button) - 4px);
  background: #0f0f0f;
  color: #c8c8c8;
  padding: clamp(32px, 5vw, 48px) clamp(16px, 3vw, 40px);
}

.footer-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  text-align: center;
}

.footer-main__brand {
  margin: 0;
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.footer-main__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 24px);
}

.footer-main__nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.footer-main__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.5;
  color: #777;
}

/* ─── Home landing (index only: body.page-home) — does not alter .nav-main rules ─── */

@media (max-width: 1000px) {
  .page-home .page-column {
    padding: 0;
  }
}

.page-home .page-column__plate {
  background: #0f0f0f;
  border-color: #2a2a2a;
}

.page-home .home-section-heading {
  background: #0f0f0f;
  padding: 40px clamp(12px, 2vw, 30px) 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.225em;
  font-size: clamp(1.5rem, 3.25vw, 2.15rem);
}

.page-home .home-section-heading__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.34em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-nav-link);
  line-height: 1.2;
}

.page-home .home-section-heading .section-heading__title {
  margin: 0;
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-align: left;
  line-height: 1.05;
  padding: 0 0 clamp(8px, 2vw, 14px);
}

.page-home .home-features__lead {
  text-align: center;
  color: #aaa;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px) clamp(24px, 4vw, 40px);
}

.page-home .featured-works {
  background: #0f0f0f;
  padding: 0 clamp(12px, 2vw, 30px) clamp(40px, 6vw, 80px);
}

.page-home .featured-works__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  margin-top: 0;
}

.page-home .featured-works__grid .art-card {
  grid-column: span 1;
  margin-bottom: 0;
}

.page-home .featured-works__grid .art-card:nth-child(-n+2),
.page-home .featured-works__grid .art-card:nth-child(n+3) {
  grid-column: span 1;
  margin-bottom: 0;
}

.page-home .art-card__image {
  border-color: #444;
}

.page-home .art-card__name,
.page-home .art-card__medium,
.page-home .art-card__size,
.page-home .art-card__price {
  color: #e8e8e8;
}

.page-home .featured-works__btn.btn--secondary {
  border-color: #fff;
  color: #fff;
}

.page-home .featured-works__btn.btn--secondary:hover {
  background: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
  color: #fff;
}

.page-home .home-section-title {
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 0.5rem;
}

.page-home .home-section-lead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #999;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  padding: 0 clamp(16px, 3vw, 32px);
}

.page-home .home-lifestyle {
  padding: clamp(48px, 7vw, 88px) clamp(16px, 3vw, 40px);
  background: #0f0f0f;
}

/* Merch — light panel */
.page-home .home-lifestyle--merch {
  background: #f2f2f2;
}

.page-home .home-lifestyle--merch .home-section-title,
.page-home .home-lifestyle--merch .home-section-lead,
.page-home .home-lifestyle--merch .home-lifestyle__card,
.page-home .home-lifestyle--merch .home-lifestyle__card-label {
  color: #333;
}

.page-home .home-lifestyle--merch .home-lifestyle__card-img {
  background: #fff;
  border-color: #ccc;
}

/* Prints “Lifestyle art” block — light panel (matches merch) */
.page-home .home-lifestyle--prints {
  background: #f2f2f2;
}

.page-home .home-lifestyle--prints .home-section-title,
.page-home .home-lifestyle--prints .home-section-lead {
  color: #333;
}

.page-home .home-lifestyle--prints .home-lifestyle__tile {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  margin: 0;
}

.page-home .home-lifestyle--prints .home-lifestyle__tile-img {
  display: block;
  background: #fff;
  border-color: #ccc;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.page-home .home-lifestyle--prints .home-lifestyle__tile-img:hover {
  opacity: 0.92;
}

.page-home .home-lifestyle--prints .home-lifestyle__tile-btn {
  width: 100%;
}

.page-home .home-lifestyle__grid {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
  max-width: 1200px;
  margin-inline: auto;
}

.page-home .home-lifestyle__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-home .home-lifestyle__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .home-lifestyle__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #e8e8e8;
  transition: opacity 180ms ease;
}

.page-home .home-lifestyle__card:hover {
  opacity: 0.88;
}

.page-home .home-lifestyle__card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #3a3a3a;
  border-radius: var(--radius-card);
  background: #1a1a1a;
}

.page-home .home-lifestyle__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-lifestyle__card-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .home-lifestyle__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
}

.page-home .home-lifestyle__btn {
  min-width: 320px;
}

.page-home .home-lifestyle--merch .home-lifestyle__btn.btn--secondary {
  border-color: #777;
  color: #777;
}

.page-home .home-lifestyle--merch .home-lifestyle__btn.btn--secondary:hover {
  color: #fff;
}

.page-home .home-lifestyle__tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: #ccc;
}

.page-home .home-lifestyle__tile-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: var(--radius-card);
  background: #141414;
}

.page-home .home-lifestyle__tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-lifestyle__tile-caption {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

.page-home .home-spotlight {
  margin: 0;
  padding: 0;
  background: #000;
}

.page-home .home-spotlight--parallax {
  position: relative;
  overflow: hidden;
  height: clamp(520px, calc(52vh + 200px), 840px);
}

.page-home .home-spotlight__parallax {
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  height: 136%;
  background-image: url("assets/Backgrounds/Hideaway_Beach.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.page-home .latest-news {
  background: #0f0f0f;
}

.page-home .latest-news__layout {
  background: #161616;
  border-color: #333;
}

.page-home .latest-news__section-title,
.page-home .latest-news__title {
  color: #f5f5f5;
}

.page-home .latest-news__date {
  color: #888;
}

.page-home .latest-news__body {
  color: #bbb;
}

.page-home .latest-news__btn.btn--secondary {
  border-color: #fff;
  color: #fff;
}

.page-home .latest-news__btn.btn--secondary:hover {
  background: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
  color: #fff;
}

.page-home .about {
  background: #0a0a0a;
}

.page-home .about__body {
  color: #c8c8c8;
}

.page-home .about__btn.btn--secondary {
  border-color: #fff;
  color: #fff;
}

.page-home .about__btn.btn--secondary:hover {
  background: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
  color: #fff;
}

/* Landing-page studio footer (index only: .footer-main--studio) */
.footer-main--studio {
  background: #737373;
  color: #fff;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 48px) clamp(32px, 5vw, 48px);
}

.footer-main--studio .footer-main__inner {
  align-items: stretch;
  gap: clamp(28px, 4vw, 40px);
  text-align: center;
}

.footer-main--studio .footer-main__nav {
  justify-content: center;
  gap: clamp(14px, 2.5vw, 32px);
  width: 100%;
}

.footer-main--studio .footer-main__nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.6vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.footer-main--studio .footer-main__nav-link:hover {
  opacity: 0.75;
}

.footer-main--studio .footer-main__brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.5vw, 14px);
}

.footer-main--studio .footer-main__mascot {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto;
}

.footer-main--studio .footer-main__title {
  margin: 0;
  font-family: var(--font-grotesk);
  font-weight: 400;
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.footer-main--studio .footer-main__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}

.footer-main--studio .footer-main__contact {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer-main--studio .footer-main__contact a {
  color: inherit;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.footer-main--studio .footer-main__contact a:hover {
  opacity: 0.75;
}

.footer-main--studio .footer-main__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  text-align: left;
}

.footer-main--studio .footer-main__newsletter {
  flex: 1 1 320px;
  max-width: 560px;
}

.footer-main--studio .footer-main__newsletter-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.footer-main--studio .footer-main__newsletter-field {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  background: #fff;
  border: 0;
  border-radius: 0;
}

.footer-main--studio .footer-main__newsletter-field::placeholder {
  color: var(--color-text);
  opacity: 1;
}

.footer-main--studio .footer-main__newsletter-field:focus {
  outline: none;
}

.footer-main--studio .footer-main__newsletter-join {
  flex: 0 0 clamp(88px, 22%, 120px);
  margin: 0;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease;
}

.footer-main--studio .footer-main__newsletter-join:hover {
  background: #1a1a1a;
}

.footer-main--studio .footer-main__social {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.footer-main--studio .footer-main__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
}

.footer-main--studio .footer-main__copy {
  width: 100%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

@media (max-width: 720px) {
  .footer-main--studio .footer-main__bottom {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
  }

  .footer-main--studio .footer-main__newsletter {
    flex: 0 0 auto;
    max-width: none;
  }

  .footer-main--studio .footer-main__social {
    justify-content: center;
    margin-left: 0;
  }

  .footer-main--studio .footer-main__newsletter-bar {
    flex-direction: column;
  }

  .footer-main--studio .footer-main__newsletter-join {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .page-home .featured-works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-lifestyle__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-lifestyle__grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .page-home .featured-works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 16px);
    max-width: none;
    margin-inline: 0;
  }

  .page-home .featured-works__grid .art-card {
    gap: 10px;
  }

  .page-home .featured-works__grid .art-card__name {
    font-size: clamp(0.7rem, 2.8vw, 0.85rem);
    letter-spacing: 0.08em;
  }

  .page-home .featured-works__grid .art-card__medium,
  .page-home .featured-works__grid .art-card__size,
  .page-home .featured-works__grid .art-card__price {
    font-size: clamp(0.65rem, 2.4vw, 0.8rem);
  }

  .page-home .home-lifestyle--merch .home-lifestyle__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 16px);
    max-width: none;
    margin-inline: 0;
  }

  .page-home .home-lifestyle--merch .home-lifestyle__card {
    gap: 10px;
  }

  .page-home .home-lifestyle--merch .home-lifestyle__card-label {
    font-size: clamp(0.65rem, 2.4vw, 0.8rem);
    letter-spacing: 0.1em;
  }
}

/* PROOF REVIEW (private /proofs/ page — not in site nav) */
.page-proofs .proofs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--nav-main-height);
  padding: 12px 24px;
  background: var(--color-nav);
  border-bottom: 2px solid color-mix(in srgb, var(--color-nav-link) 22%, transparent);
  border-radius: calc(var(--radius-button) - 4px) calc(var(--radius-button) - 4px) 0 0;
}

.page-proofs .proofs-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-proofs .proofs-header__logo-img {
  display: block;
  width: auto;
  max-width: min(188px, 52vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.page-proofs .proofs-page {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px) clamp(32px, 5vw, 56px);
}

.page-proofs .proofs-intro {
  max-width: 42rem;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.page-proofs .proofs-intro--bottom {
  margin-top: clamp(32px, 5vw, 48px);
  margin-bottom: 0;
}

.page-proofs .proofs-intro__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
}

.page-proofs .proofs-intro__text {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.55;
  color: var(--color-text);
}

.page-proofs .proofs-intro__cta {
  display: inline-flex;
  margin-inline: auto;
}

.page-proofs .proofs-catalog {
  padding: 0;
}

.page-proofs .proofs-catalog .originals-catalog__count {
  text-align: center;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.page-proofs .proofs-catalog__grid .art-card {
  grid-column: span 1;
}

.page-proofs .art-card--proof {
  cursor: default;
}

.page-proofs .art-card--proof:hover .art-card__img--default {
  transform: none;
}

.page-proofs .art-card--proof:hover .art-card__name {
  text-decoration: none;
}

.page-proofs .proofs-footer-copy {
  margin: 0;
  padding: clamp(16px, 3vw, 24px);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
  border-top: 1px solid color-mix(in srgb, var(--color-text) 15%, transparent);
}

.page-proofs .proofs-intro__heart {
  color: var(--color-nav);
}

.page-proofs .proofs-selection-count {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-nav);
}

.page-proofs .proofs-intro__hint {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}

.page-proofs .art-card__image {
  position: relative;
  cursor: zoom-in;
}

.page-proofs .art-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  vertical-align: middle;
  background: color-mix(in srgb, var(--color-text) 6%, var(--color-cream));
}

.page-proofs .proof-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-cream) 92%, transparent);
  cursor: pointer;
  transition: background 150ms ease, transform 120ms ease;
}

.page-proofs .proof-heart__icon {
  font-size: 1.35rem;
  line-height: 1;
  color: color-mix(in srgb, var(--color-text) 35%, transparent);
  transition: color 150ms ease, transform 120ms ease;
}

.page-proofs .proof-heart:hover .proof-heart__icon,
.page-proofs .proof-heart:focus-visible .proof-heart__icon {
  color: var(--color-nav);
  transform: scale(1.08);
}

.page-proofs .proof-heart.is-selected,
.page-proofs .proof-heart[aria-pressed="true"] {
  background: var(--color-nav);
  border-color: var(--color-border);
}

.page-proofs .proof-heart.is-selected .proof-heart__icon,
.page-proofs .proof-heart[aria-pressed="true"] .proof-heart__icon {
  color: #fff;
}

.page-proofs .art-card--proof.is-favorite .art-card__image {
  border-color: var(--color-nav);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-nav) 25%, transparent);
}

.page-proofs .proofs-submit {
  max-width: 28rem;
  margin: clamp(32px, 5vw, 48px) auto 0;
  padding: clamp(20px, 3vw, 28px);
  background: color-mix(in srgb, var(--color-cream) 60%, #fff);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
}

.page-proofs .proofs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.page-proofs .proofs-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-proofs .proofs-form__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-proofs .proofs-form__label-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.page-proofs .proofs-form__label-text em {
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
}

.page-proofs .proofs-form__input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.page-proofs .proofs-form__summary {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
}

.page-proofs .proofs-form__submit {
  width: 100%;
  justify-content: center;
}

.page-proofs .proofs-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-proofs.page-proofs--thanks .proofs-thanks {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

/* Proof detail modal */
.page-proofs .proof-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
}

.page-proofs .proof-modal[hidden] {
  display: none;
}

.page-proofs .proof-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 72%, transparent);
}

.page-proofs .proof-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  max-height: min(94vh, 1200px);
  padding: clamp(16px, 3vw, 24px);
  background: var(--color-cream);
  border: 4px solid var(--color-border);
  border-radius: var(--radius-button);
  box-shadow: 0 20px 60px color-mix(in srgb, #000 35%, transparent);
  overflow: hidden;
}

.page-proofs .proof-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.page-proofs .proof-modal__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding-right: 48px;
  margin-bottom: 12px;
}

.page-proofs .proof-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-text);
}

.page-proofs .proof-modal__label {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.page-proofs .proof-modal__heart {
  position: static;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  padding: 8px 14px;
  border-radius: var(--radius-button);
  gap: 6px;
}

.page-proofs .proof-modal__heart .proof-heart__icon {
  font-size: 1.1rem;
}

.page-proofs .proof-modal__heart-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
}

.page-proofs .proof-modal__heart.is-selected .proof-modal__heart-text,
.page-proofs .proof-modal__heart[aria-pressed="true"] .proof-modal__heart-text {
  color: #fff;
}

.page-proofs .proof-modal__img-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  text-align: center;
  background: color-mix(in srgb, var(--color-text) 8%, #fff);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
}

.page-proofs .proof-modal__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 1100px);
  margin: 0 auto;
  object-fit: contain;
}

body.page-proofs.proof-modal-open {
  overflow: hidden;
}
