:root {
  --ink: #100d09;
  --ink-soft: #2b241b;
  --gold: #d5ae2e;
  --gold-deep: #a57d13;
  --cream: #fff8ec;
  --sand: #eadcc4;
  --muted: #8a7a66;
  --white: #ffffff;
  --line: rgba(16, 13, 9, 0.12);
  --shadow: 0 24px 70px rgba(16, 13, 9, 0.18);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 174, 46, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #f7efe3 45%, #fffaf1 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.announcement strong {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 248, 236, 0.82);
  backdrop-filter: blur(18px);
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 58px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1.04rem;
  letter-spacing: 0.18em;
}

.brand small {
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.cart-button,
.icon-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.cart-button {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 1.6rem;
  min-height: 1.6rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.section-pad {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 11vw, 9.4rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 630px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0.88rem 1.35rem;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f4d66c);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(165, 125, 19, 0.22);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.hero-metrics {
  margin-top: 2.2rem;
}

.hero-metrics span {
  display: grid;
  gap: 0.2rem;
  min-width: 132px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 1.7rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
}

.hero-photo-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 42px;
  background:
    radial-gradient(circle at 80% 8%, rgba(213, 174, 46, 0.38), transparent 18rem),
    linear-gradient(145deg, #11100e, #070604);
  box-shadow:
    0 34px 90px rgba(16, 13, 9, 0.28),
    inset 0 0 0 1px rgba(213, 174, 46, 0.16);
}

.hero-photo-card::before,
.hero-photo-card::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero-photo-card::before {
  inset: 1rem;
  border: 1px solid rgba(213, 174, 46, 0.26);
  border-radius: 32px;
}

.hero-photo-card::after {
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 4, 0.84));
}

.hero-model-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 6, 4, 0) 52%, rgba(7, 6, 4, 0.24) 100%),
    var(--ristair-model-photo);
  background-position: center top;
  background-size: cover;
  transform: scale(1.01);
}

.hero-logo-badge {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 4;
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(16, 13, 9, 0.78);
  color: var(--cream);
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-logo-badge img {
  width: 44px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 480px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 44% 44% 34px 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 212, 0.64)),
    radial-gradient(circle at 20% 18%, rgba(213, 174, 46, 0.34), transparent 15rem);
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.hero-card::before {
  inset: 7%;
  border: 1px solid rgba(213, 174, 46, 0.34);
}

.hero-card::after {
  right: -4rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(213, 174, 46, 0.22);
}

.hero-card img {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  filter: drop-shadow(0 20px 24px rgba(77, 53, 0, 0.16));
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.15rem;
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(16, 13, 9, 0.9);
  color: var(--cream);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(16, 13, 9, 0.2);
}

.floating-card span {
  color: var(--sand);
  font-size: 0.8rem;
}

.floating-card strong {
  color: var(--gold);
}

.card-top {
  top: 5rem;
  left: 0;
}

.card-bottom {
  right: 0;
  bottom: 5rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(16, 13, 9, 0.08);
}

.trust-strip article {
  padding: 1.5rem;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-strip span,
.lookbook-grid span {
  color: var(--gold-deep);
  font-weight: 900;
}

.trust-strip strong {
  display: block;
  margin: 0.35rem 0;
}

.trust-strip p,
.section-heading p,
.shop-header p,
.lookbook-panel p,
.experience p,
.newsletter p,
.site-footer p,
.cart-empty p,
#checkoutNote {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 520px;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(16, 13, 9, 0.88), rgba(16, 13, 9, 0.62)),
    radial-gradient(circle at top left, rgba(213, 174, 46, 0.62), transparent 12rem);
  color: var(--cream);
  padding: 1.2rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.category-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  content: "R";
  color: rgba(213, 174, 46, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11rem;
  line-height: 0.7;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card strong {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  font-size: 1.35rem;
}

.shop-header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.shop-header h2 {
  margin: 0;
}

.shop-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filters,
.search-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0.65rem 0.95rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.filter-chip.active {
  border-color: rgba(213, 174, 46, 0.58);
  background: var(--ink);
  color: var(--gold);
}

.search-sort label {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-sort input,
.search-sort select,
.newsletter-form input {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  outline: none;
}

.search-sort input,
.search-sort select {
  min-height: 46px;
  padding: 0 0.9rem;
}

.search-sort input:focus,
.search-sort select:focus,
.newsletter-form input:focus {
  border-color: rgba(213, 174, 46, 0.8);
  box-shadow: 0 0 0 4px rgba(213, 174, 46, 0.14);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.8rem;
  box-shadow: 0 16px 50px rgba(16, 13, 9, 0.07);
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 15%, rgba(255, 255, 255, 0.7), transparent 9rem),
    linear-gradient(150deg, #f1dfb1, #b88919);
}

.product-art::before {
  position: absolute;
  content: "";
  width: 46%;
  height: 58%;
  border-radius: 34% 34% 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 42%),
    rgba(16, 13, 9, 0.84);
  box-shadow:
    -42px 18px 0 -18px rgba(16, 13, 9, 0.7),
    42px 18px 0 -18px rgba(16, 13, 9, 0.7),
    0 25px 50px rgba(16, 13, 9, 0.22);
}

.product-art.product-polo::before {
  border-radius: 24px 24px 18px 18px;
}

.product-art.product-polo::after {
  box-shadow: 0 0 0 999px transparent;
}

.product-art.product-hoodie::before {
  width: 52%;
  height: 62%;
  border-radius: 42% 42% 20px 20px;
}

.product-art.product-set::before {
  width: 36%;
  height: 48%;
  transform: translateX(-2rem);
  box-shadow:
    -38px 15px 0 -20px rgba(16, 13, 9, 0.7),
    38px 15px 0 -20px rgba(16, 13, 9, 0.7),
    110px 78px 0 -18px rgba(16, 13, 9, 0.88),
    92px -72px 0 -24px rgba(16, 13, 9, 0.78),
    0 25px 50px rgba(16, 13, 9, 0.22);
}

.product-art::after {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  content: attr(data-badge);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.9);
  color: var(--ink);
  padding: 0.36rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-art .mark {
  position: absolute;
  z-index: 2;
  color: rgba(213, 174, 46, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  transform: translateY(-0.4rem);
}

.product-art.product-photo {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(16, 13, 9, 0) 58%, rgba(16, 13, 9, 0.78) 100%),
    var(--ristair-product-tee-photo);
  background-position: center top;
  background-size: cover;
}

.product-art.product-photo::before {
  display: none;
}

.product-art.product-photo::after {
  z-index: 3;
  background: rgba(16, 13, 9, 0.82);
  color: var(--gold);
}

.tone-noir {
  background:
    radial-gradient(circle at 18% 18%, rgba(213, 174, 46, 0.4), transparent 10rem),
    linear-gradient(150deg, #1b1712, #0b0805);
}

.tone-cream {
  background:
    radial-gradient(circle at 20% 12%, rgba(213, 174, 46, 0.36), transparent 10rem),
    linear-gradient(150deg, #fff8ec, #d7c09d);
}

.tone-rose {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.56), transparent 10rem),
    linear-gradient(150deg, #edd0c7, #a96d63);
}

.tone-olive {
  background:
    radial-gradient(circle at 18% 16%, rgba(213, 174, 46, 0.28), transparent 10rem),
    linear-gradient(150deg, #d6d1a5, #4c5135);
}

.tone-ivory {
  background:
    radial-gradient(circle at 18% 16%, rgba(213, 174, 46, 0.36), transparent 10rem),
    linear-gradient(150deg, #fffdf5, #cfc6b0);
}

.tone-gold {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.56), transparent 10rem),
    linear-gradient(150deg, #efd46b, #9e7412);
}

.product-info {
  display: grid;
  gap: 0.55rem;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 1.18rem;
}

.product-info p {
  margin: 0;
  color: var(--muted);
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.2rem;
}

.size-picker > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-pill {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.size-pill.active {
  border-color: rgba(213, 174, 46, 0.7);
  background: var(--ink);
  color: var(--gold);
}

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

.price-row del {
  color: var(--muted);
  font-weight: 700;
}

.product-card .btn {
  width: 100%;
  min-height: 46px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed rgba(165, 125, 19, 0.45);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  padding: 2rem;
  text-align: center;
}

.lookbook {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
}

.lookbook-panel,
.lookbook-grid article,
.experience-grid article,
.size-grid article,
.authority-panel,
.facts-grid article,
.faq-list article,
.newsletter,
.testimonials {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 50px rgba(16, 13, 9, 0.07);
}

.lookbook-panel {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.lookbook-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold-deep);
  font-weight: 900;
}

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

.lookbook-grid article {
  min-height: 330px;
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.size-guide {
  padding-top: 3.5rem;
}

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

.size-grid article {
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.size-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
}

.size-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
}

.seo-authority {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.authority-panel {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.authority-panel h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.facts-grid article {
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

.facts-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-list article {
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

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

.experience-grid article {
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonials h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.quote-stack {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
}

blockquote {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: grid;
  gap: 0.65rem;
}

.newsletter-form label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.newsletter-form input {
  min-height: 52px;
  padding: 0 1rem;
}

.form-note {
  min-height: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}

.site-footer p {
  max-width: 520px;
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  min-width: 180px;
  font-weight: 800;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(16, 13, 9, 0.42);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(460px, 100%);
  background: #fffaf0;
  box-shadow: -30px 0 70px rgba(16, 13, 9, 0.22);
  padding: 1.2rem;
  transform: translateX(106%);
  transition: transform 0.25s ease;
}

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

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

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.cart-head h2 {
  margin: 0;
  font-size: 2.4rem;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  overflow: auto;
  padding: 1rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.7rem;
}

.cart-thumb {
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a1510, #d5ae2e);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.cart-line {
  display: grid;
  gap: 0.35rem;
}

.cart-line h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty-control button {
  width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  font-weight: 900;
}

.qty-control span {
  display: grid;
  place-items: center;
  min-width: 34px;
  font-weight: 900;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font-weight: 900;
}

.cart-empty {
  display: none;
  align-self: start;
  border: 1px dashed rgba(165, 125, 19, 0.45);
  border-radius: var(--radius-md);
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.cart-empty.show {
  display: block;
}

.cart-summary {
  display: grid;
  gap: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.checkout-btn {
  width: 100%;
}

#checkoutNote {
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 1000px) {
  .hero,
  .section-heading,
  .shop-header,
  .lookbook,
  .seo-authority,
  .testimonials,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-photo-card {
    min-height: 600px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-tools {
    grid-template-columns: 1fr;
  }

  .search-sort {
    justify-content: stretch;
  }

  .search-sort label {
    flex: 1 1 220px;
  }

  .lookbook-grid,
  .experience-grid,
  .size-grid {
    grid-template-columns: 1fr;
  }

  .lookbook-grid article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .announcement {
    display: grid;
    gap: 0.18rem;
    text-align: center;
  }

  .navbar {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 248, 236, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
  }

  .cart-button span {
    display: none;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .hero-card {
    min-height: 430px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-photo-card {
    min-height: 520px;
    border-radius: 30px;
  }

  .floating-card {
    position: static;
    justify-self: stretch;
    margin-top: 0.8rem;
  }

  .trust-strip,
  .category-grid,
  .product-grid,
  .facts-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .newsletter-form div,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-actions .btn,
  .newsletter-form .btn {
    width: 100%;
  }

  .product-art {
    min-height: 240px;
  }

  .hero-photo-card {
    min-height: 470px;
  }

  .hero-logo-badge {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
}
