:root {
  --bg: #f4f1ec;
  --ink: #151515;
  --muted: #69645f;
  --line: #ded8cf;
  --panel: #ffffff;
  --accent: #4c4b93;
  --accent-dark: #343269;
  --warm: #b85f38;
  --olive: #596052;
  --shadow: 0 18px 45px rgba(29, 29, 31, 0.12);
  --topbar-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--topbar-height);
  padding: 12px clamp(18px, 4vw, 54px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.topbar:hover,
.topbar.scrolled {
  background: rgba(248, 245, 239, 0.96);
  border-bottom-color: rgba(23, 23, 25, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 68px;
  position: relative;
}

.brand-logo {
  width: 100%;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.56));
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-abbrev {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: auto;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 23, 25, 0.18);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.topbar.scrolled .brand {
  width: 64px;
}

.topbar.scrolled .brand-logo {
  opacity: 0;
  transform: translateY(-5px);
}

.topbar.scrolled .brand-abbrev {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
}

.nav,
.hero-actions,
.tabs {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  transition: color 220ms ease, text-shadow 220ms ease;
}

.topbar:hover .nav,
.topbar.scrolled .nav {
  color: var(--ink);
  text-shadow: none;
}

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

.hero {
  position: relative;
  height: calc(100svh - 30px);
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.05) 58%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.08) 45%, rgba(10, 10, 10, 0.24));
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.15);
  transition: opacity 900ms ease, transform 7000ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.26);
}

.slide-one {
  background-image: url("assets/great-waves.jpeg");
  background-position: center 42%;
}

.slide-two {
  background-image: url("assets/courage.jpeg");
  background-position: center 42%;
}

.slide-three {
  background-image: url("assets/suppliers.jpeg");
  background-position: center 42%;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(800px, calc(100% - 32px));
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0 auto 18px;
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 1.45vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero .button.primary {
  min-width: 190px;
  color: var(--ink);
  background: #fff;
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.small,
.button.full {
  width: 100%;
}

.button.small {
  min-height: 42px;
  margin-top: 12px;
  font-size: 0.92rem;
}

.ticker {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 8px 0;
  animation: tickerMove 28s linear infinite;
}

.ticker span {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 4px;
  height: 4px;
  background: var(--warm);
  border-radius: 999px;
  transform: translateY(-50%);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(260px, 36vh));
  gap: 1px;
  background: var(--ink);
}

.campaign-tile {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.campaign-tile.large {
  grid-row: span 2;
}

.campaign-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent);
}

.campaign-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.campaign-tile:hover img {
  transform: scale(1.045);
}

.campaign-tile div {
  width: min(520px, calc(100% - 36px));
  margin: 0 0 clamp(24px, 4vw, 42px) clamp(18px, 4vw, 44px);
}

.campaign-tile span {
  display: block;
  margin-bottom: 10px;
  color: #d8d6ff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-tile h2 {
  max-width: 540px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.campaign-tile:not(.large) h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
}

.campaign-tile p {
  display: inline-block;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(58px, 7vw, 96px) 18px clamp(42px, 5vw, 70px);
  text-align: center;
  background:
    linear-gradient(90deg, transparent, rgba(76, 75, 147, 0.18), transparent) center bottom / min(760px, calc(100% - 36px)) 1px no-repeat,
    var(--bg);
}

.catalog-intro p,
.catalog-intro span {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-intro p {
  color: var(--warm);
}

.catalog-intro h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5.4vw, 5.25rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.catalog-intro span {
  color: var(--accent);
}

.style-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 520px;
  margin-top: 0;
  background: var(--ink);
}

.style-tile {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.style-tile:last-child {
  border-right: 0;
}

.style-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.06) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent);
}

.style-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 520ms ease, filter 520ms ease;
}

.style-tile:hover img {
  filter: contrast(1.04) saturate(1.03);
  transform: scale(1.09);
}

.style-tile div {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: 100%;
  padding: 0 22px 34px;
  text-align: center;
}

.style-tile h2 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.style-tile span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.style-tile:hover span {
  background: #f7f2ea;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transform: scale(1.06);
}

.section,
.catalog,
.contact,
.footer {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  padding: 82px 0 34px;
}

.intro p:not(.eyebrow),
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(90deg, var(--ink), #262339 58%, var(--olive));
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 23, 25, 0.16);
}

.promo-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.promo-strip span {
  color: #ffd0a8;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-strip strong {
  font-size: 1.45rem;
}

.promo-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.toolbar {
  padding: 10px 0 24px;
}

.tabs {
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.tab.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
  padding-bottom: 84px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.product-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(29, 29, 31, 0.04);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 75, 147, 0.34);
  box-shadow: 0 20px 44px rgba(29, 29, 31, 0.14);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  overflow: hidden;
  background: #dedbd4;
}

.product-card img {
  aspect-ratio: 3 / 4.25;
  object-fit: cover;
  object-position: center top;
  background: #dedbd4;
  transition: transform 220ms ease;
}

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

.product-info {
  display: grid;
  padding: 16px 17px 18px;
}

.tag {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.details {
  min-height: 48px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sizes,
.modal-sizes {
  display: flex;
  gap: 7px;
}

.sizes {
  margin-top: 14px;
}

.sizes span,
.modal-sizes span {
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: #f1eee8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.sizes span {
  width: 31px;
  height: 31px;
  font-size: 0.78rem;
}

.newsletter {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0 clamp(58px, 7vw, 92px);
  text-align: center;
}

.newsletter p {
  margin: 0;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter h2 {
  max-width: 680px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.newsletter span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
}

.newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  min-height: 58px;
  margin-top: 16px;
  color: #fff;
  background: #56524d;
  border-radius: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.newsletter-button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 7vw, 68px);
  margin-top: 38px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #55504b;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #252239 62%, #3f463b);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.microcopy {
  margin: 4px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer {
  padding: clamp(54px, 7vw, 86px) 0 42px;
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.footer-brand img {
  width: 172px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  gap: 13px;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: #1c1b1a;
  font-size: 0.95rem;
  line-height: 1.35;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px 32px;
  align-items: center;
  margin-top: clamp(52px, 7vw, 84px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-legal,
.payment-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-legal a,
.footer-bottom p {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom p {
  grid-column: 1 / -1;
  margin: 0;
}

.payment-tags {
  justify-content: flex-end;
  gap: 7px;
}

.payment-tags span {
  display: inline-grid;
  min-width: 44px;
  min-height: 22px;
  place-items: center;
  padding: 0 8px;
  color: var(--ink);
  background: #ebe7df;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(34px, 5vw, 58px);
  z-index: 80;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: rgba(23, 23, 25, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  background: #128c4a;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 48px rgba(18, 140, 74, 0.3);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.82fr);
  width: min(980px, 100%);
  max-height: min(760px, calc(100svh - 28px));
  overflow: hidden;
  background: #f8f5ef;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(23, 23, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-image-wrap {
  display: grid;
  place-items: center;
  background: #ddd8ce;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: min(560px, calc(100svh - 28px));
  object-fit: contain;
  object-position: center;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(24px, 3.4vw, 42px);
}

.modal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 0.98;
}

.modal-description {
  color: var(--muted);
  line-height: 1.7;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 16px;
}

.modal-price strong {
  font-size: 2.1rem;
}

.modal-sizes {
  margin-bottom: 20px;
}

.modal-sizes span {
  width: 40px;
  height: 40px;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 56px 1fr 56px;
    min-height: 72px;
    padding-inline: 14px;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: currentColor;
    border-radius: 99px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .topbar:hover .menu-toggle,
  .topbar.scrolled .menu-toggle,
  .topbar.menu-open .menu-toggle {
    color: var(--ink);
    background: rgba(23, 23, 25, 0.04);
    border-color: rgba(23, 23, 25, 0.18);
  }

  .topbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand {
    position: absolute;
    left: 50%;
    width: 196px;
    height: 58px;
    transform: translateX(-50%);
  }

  .brand-logo {
    height: 58px;
  }

  .topbar.scrolled .brand {
    left: 14px;
    width: 56px;
    transform: none;
  }

  .topbar.scrolled .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: rgba(248, 245, 239, 0.98);
    border: 1px solid rgba(23, 23, 25, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    text-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .topbar.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(23, 23, 25, 0.08);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .campaign-tile.large {
    grid-row: auto;
  }

  .campaign-tile {
    min-height: 430px;
  }

  .catalog {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }

  .style-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-tile,
  .style-showcase {
    min-height: 430px;
  }

  .modal-card {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-image-wrap img {
    min-height: 330px;
    max-height: 48svh;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .payment-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand {
    width: 178px;
    height: 54px;
  }

  .brand-logo {
    height: 54px;
  }

  .topbar.scrolled .brand {
    width: 56px;
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.25));
  }

  .hero-slide {
    background-size: auto 112%;
    background-position: center top;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-inline: 14px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(1.9rem, 7.4vw, 2.28rem);
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .ticker-track {
    gap: 26px;
    animation-duration: 22s;
  }

  .intro {
    padding-top: 48px;
  }

  .campaign-tile {
    min-height: 380px;
  }

  .style-showcase {
    grid-template-columns: 1fr;
  }

  .style-tile {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  }

  .style-tile:last-child {
    border-bottom: 0;
  }

  .campaign-tile div {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding-bottom: 28px;
  }

  .promo-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-strip p {
    text-align: left;
  }

  .catalog {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 14px;
    padding-bottom: 54px;
  }

  .contact {
    width: calc(100% - 28px);
    padding: 28px 18px;
  }

  .footer {
    width: calc(100% - 28px);
    padding-bottom: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 154px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .modal-card {
    max-height: calc(100svh - 28px);
  }

  .modal-content {
    padding: 22px 18px;
  }
}
