:root {
  --emerald: #075347;
  --emerald-deep: #023b33;
  --emerald-black: #061f1b;
  --emerald-soft: #dcebe5;
  --champagne: #f2e7d7;
  --champagne-deep: #e4d1b7;
  --ivory: #fffaf2;
  --paper: #fffdf8;
  --ink: #112923;
  --muted: #68766f;
  --gold: #bd9254;
  --gold-light: #e5ca9f;
  --pink: #dc9cae;
  --line: rgba(7, 83, 71, 0.14);
  --line-light: rgba(255, 250, 242, 0.17);
  --shadow: 0 28px 80px rgba(5, 47, 40, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1380px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  background: var(--emerald);
  color: var(--ivory);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.section {
  padding: clamp(88px, 9vw, 144px) clamp(20px, 5vw, 76px);
}

.section > * {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--ivory);
  color: var(--emerald-deep);
  font-weight: 800;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-inline: clamp(18px, 4vw, 64px);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.nav-shell {
  width: min(var(--max-width), 100%);
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  border-bottom: 1px solid transparent;
}

.header-overlay {
  color: var(--ivory);
}

.header-overlay .nav-shell {
  border-bottom-color: var(--line-light);
}

.header-solid,
.header-overlay.is-scrolled {
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 35px rgba(3, 50, 42, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-solid .nav-shell,
.header-overlay.is-scrolled .nav-shell {
  border-bottom-color: transparent;
}

.brand {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.35em;
}

.header-solid .brand small,
.header-overlay.is-scrolled .brand small {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 43px);
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-light);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-current {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-solid .desktop-nav a::after,
.header-overlay.is-scrolled .desktop-nav a::after {
  background: var(--emerald);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--ivory);
  color: var(--emerald-deep);
}

.header-solid .nav-cta,
.header-overlay.is-scrolled .nav-cta {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--ivory);
}

.header-solid .nav-cta:hover,
.header-overlay.is-scrolled .nav-cta:hover {
  background: var(--emerald-deep);
}

.menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  width: calc(100% - 36px);
  max-height: calc(100svh - 105px);
  margin: 0 18px 18px;
  padding: 16px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu .mobile-menu-cta {
  justify-content: center;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--emerald);
  color: var(--ivory);
}

/* Buttons and labels */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-emerald {
  background: var(--emerald);
  color: var(--ivory);
  box-shadow: 0 14px 30px rgba(3, 59, 50, 0.2);
}

.button-emerald:hover {
  background: var(--emerald-deep);
  box-shadow: 0 18px 36px rgba(3, 59, 50, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--ivory);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-champagne {
  background: var(--champagne);
  color: var(--emerald-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.button-champagne:hover {
  background: var(--ivory);
}

.kicker,
.toolbar-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.19em;
}

.kicker span {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.kicker-dark {
  color: var(--gold);
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: max(760px, 100svh);
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 140px clamp(20px, 6vw, 96px) 150px;
  overflow: hidden;
  background: var(--emerald-black);
  color: var(--ivory);
}

.home-hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 54% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 32, 27, 0.92) 0%, rgba(1, 41, 34, 0.72) 36%, rgba(1, 35, 29, 0.15) 67%, rgba(1, 35, 29, 0.03) 100%),
    linear-gradient(0deg, rgba(1, 31, 26, 0.5), transparent 40%);
}

.home-hero-content {
  width: min(620px, 52vw);
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.home-hero h1 {
  margin: 24px 0 26px;
  font-size: clamp(3.6rem, 6.6vw, 7rem);
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 250, 242, 0.77);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero .button-emerald {
  background: var(--ivory);
  color: var(--emerald-deep);
}

.home-hero .button-emerald:hover {
  background: var(--champagne);
}

.hero-proof {
  position: absolute;
  inset: auto clamp(20px, 6vw, 96px) 34px;
  width: min(var(--max-width), calc(100% - clamp(40px, 12vw, 192px)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.hero-proof div {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 26px;
  border-left: 1px solid var(--line-light);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-proof span {
  color: rgba(255, 250, 242, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* Home collections */
.home-categories {
  background:
    radial-gradient(circle at 94% 5%, rgba(218, 193, 154, 0.22), transparent 27%),
    var(--ivory);
}

.section-heading {
  margin-bottom: clamp(44px, 6vw, 76px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  gap: 52px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 40px;
}

.section-heading h2 {
  margin: 0;
  color: var(--emerald-deep);
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

.section-heading h2 em,
.discover h2 em {
  color: var(--gold);
}

.section-heading p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 590px;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: clamp(34px, 4vw, 58px);
}

.category-copy > span {
  display: block;
  margin-bottom: 120px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.68;
}

.category-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 3.4vw, 3.75rem);
  letter-spacing: -0.035em;
}

.category-copy p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.72;
}

.category-copy strong {
  min-height: 46px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.02em;
}

.category-copy i,
.editorial-copy i {
  font-style: normal;
}

.category-men {
  background: var(--emerald-deep);
  color: var(--ivory);
}

.category-women {
  background: linear-gradient(135deg, #fffaf3, var(--champagne));
  color: var(--emerald-deep);
}

.category-men > img,
.category-women > img {
  position: absolute;
  z-index: 1;
  right: -1%;
  bottom: 0;
  width: 48%;
  height: 94%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover > img {
  transform: scale(1.025);
}

.category-splash {
  min-height: 500px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  background: linear-gradient(110deg, #e8f0ec 0 50%, #f7ede1 50% 100%);
  color: var(--emerald-deep);
}

.category-splash .category-copy {
  width: 45%;
}

.category-splash .category-copy > span {
  margin-bottom: 56px;
}

.splash-images {
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.splash-images img {
  width: 48%;
  height: 94%;
  object-fit: contain;
  object-position: bottom;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-splash:hover .splash-images img:first-child {
  transform: translateX(-8px) scale(1.02);
}

.category-splash:hover .splash-images img:last-child {
  transform: translateX(8px) scale(1.02);
}

/* TUT standard */
.standard {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(460px, 1.25fr);
  gap: clamp(64px, 8vw, 130px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 44%, rgba(41, 127, 111, 0.35), transparent 32%),
    var(--emerald-black);
  color: var(--ivory);
}

.standard > * {
  width: 100%;
  margin: 0;
}

.standard-number {
  position: relative;
  min-height: 480px;
  display: grid;
  place-content: center;
  text-align: center;
}

.standard-number::before,
.standard-number::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(229, 202, 159, 0.2);
  border-radius: 50%;
}

.standard-number::before {
  inset: 0;
}

.standard-number::after {
  inset: 34px;
}

.standard-number span,
.standard-number p {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.standard-number strong {
  margin: -5px 0 -18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 13vw, 11.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
}

.standard-number i {
  position: absolute;
  top: 28%;
  right: 21%;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-style: normal;
}

.standard-content h2 {
  max-width: 780px;
  margin: 20px 0 48px;
  font-size: clamp(2.8rem, 4.7vw, 5.1rem);
  letter-spacing: -0.045em;
}

.standard-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.standard-list article > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.standard-list h3 {
  margin: 0 0 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.standard-list p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 250, 242, 0.61);
  line-height: 1.7;
}

/* Editorial and recommendation */
.editorial-banner {
  position: relative;
  min-height: 610px;
  isolation: isolate;
  display: flex;
  align-items: center;
  margin: clamp(20px, 3vw, 44px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--ivory);
}

.editorial-banner > img,
.editorial-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-banner > img {
  z-index: -2;
  object-fit: cover;
}

.editorial-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(1, 30, 25, 0.9), rgba(2, 42, 35, 0.52) 46%, rgba(2, 42, 35, 0.04));
}

.editorial-copy {
  max-width: 670px;
  margin-left: max(34px, calc((100vw - var(--max-width)) / 2));
  padding: 70px 32px;
}

.editorial-copy > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.editorial-copy h2 {
  margin: 25px 0 36px;
  font-size: clamp(3rem, 5.3vw, 5.5rem);
  letter-spacing: -0.05em;
}

.editorial-copy a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 800;
}

.discover {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(56px, 8vw, 130px);
  background: var(--champagne);
}

.discover > * {
  width: 100%;
  margin: 0;
}

.discover h2 {
  margin: 20px 0 24px;
  color: var(--emerald-deep);
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: -0.05em;
}

.discover-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--muted);
}

.mood-list {
  display: flex;
  flex-direction: column;
}

.mood-list span {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 17px 46px 17px 0;
  border-top: 1px solid rgba(7, 83, 71, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.mood-list span:last-child {
  border-bottom: 1px solid rgba(7, 83, 71, 0.22);
}

.mood-list span::after {
  content: "↗";
  position: absolute;
  right: 4px;
  color: var(--gold);
  font-family: sans-serif;
  font-size: 1rem;
}

/* Catalog hero */
.page-catalog {
  --theme-background: var(--emerald-deep);
  --theme-text: var(--ivory);
  --theme-muted: rgba(255, 250, 242, 0.67);
  --theme-accent: var(--gold-light);
  --theme-panel: #e2eee9;
  background: var(--paper);
  transition: background 260ms ease;
}

.page-catalog.theme-women {
  --theme-background: var(--champagne);
  --theme-text: var(--emerald-deep);
  --theme-muted: #65716b;
  --theme-accent: #a47279;
  --theme-panel: #f8eee7;
}

.catalog-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(400px, 1.05fr);
  align-items: stretch;
  padding: 88px clamp(20px, 5vw, 76px) 0;
  overflow: hidden;
  background: var(--theme-background);
  color: var(--theme-text);
  transition: background 320ms ease, color 320ms ease;
}

.catalog-hero-copy {
  width: min(650px, 100%);
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 32px 70px 0;
}

.back-link {
  width: fit-content;
  min-height: 44px;
  margin-bottom: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.catalog-hero .kicker {
  color: var(--theme-accent);
}

.catalog-hero h1 {
  max-width: 650px;
  margin: 20px 0 25px;
  font-size: clamp(3.65rem, 6vw, 6.7rem);
  letter-spacing: -0.055em;
}

.catalog-hero-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 0;
  color: var(--theme-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.gender-tabs {
  width: fit-content;
  margin-top: 42px;
  display: flex;
  padding: 4px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  border-radius: 999px;
}

.gender-tabs button {
  min-width: 105px;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease;
}

.gender-tabs button.is-active {
  background: var(--theme-text);
  color: var(--theme-background);
}

.catalog-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 632px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center 55%, rgba(255, 255, 255, 0.35), transparent 40%),
    var(--theme-panel);
  transition: background 320ms ease;
}

.catalog-hero-visual::before {
  content: "TUT";
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(7, 83, 71, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10rem, 22vw, 23rem);
  line-height: 1;
  letter-spacing: -0.09em;
}

.theme-women .catalog-hero-visual::before {
  color: rgba(170, 110, 126, 0.08);
}

.catalog-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(60%, 470px);
  height: min(88%, 600px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 35px 32px rgba(2, 40, 34, 0.18));
  transition: opacity 220ms ease, transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.splash-catalog-hero .catalog-hero-visual img {
  width: min(72%, 540px);
  height: min(92%, 620px);
}

.catalog-hero-visual:hover img {
  transform: translateY(-8px) scale(1.01);
}

.catalog-volume {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 40px;
  color: var(--emerald-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.catalog-hero-line {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 54px;
  width: 28%;
  height: 1px;
  background: rgba(7, 83, 71, 0.2);
}

/* Catalog controls */
.catalog-section {
  width: min(var(--max-width), calc(100% - clamp(40px, 10vw, 152px)));
  margin-inline: auto;
  padding: clamp(80px, 8vw, 124px) 0 clamp(100px, 10vw, 160px);
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.toolbar-label {
  color: var(--gold);
}

.catalog-toolbar strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.search-field {
  width: min(420px, 100%);
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-field:focus-within {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(7, 83, 71, 0.08);
}

.search-field svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: var(--emerald);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-field input::placeholder {
  color: #8b9690;
}

.filter-row {
  display: flex;
  gap: 9px;
  margin: 24px 0 45px;
  padding: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--ivory);
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 18px;
}

.product-card {
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 55% 38%, rgba(255, 255, 255, 0.35), transparent 32%),
    linear-gradient(145deg, #d8e9e3, #bcd7ce);
}

.theme-women .product-media {
  background:
    radial-gradient(circle at 55% 38%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(145deg, #fff9f0, #ead9cb);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 10%;
  border-radius: 50%;
  background: rgba(2, 45, 38, 0.15);
  filter: blur(18px);
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 91%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-media img {
  transform: translateY(-6px) scale(1.025);
}

.loved-badge,
.product-code {
  position: absolute;
  z-index: 3;
  top: 16px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loved-badge {
  left: 14px;
  padding: 6px 10px;
  background: var(--emerald-deep);
  color: var(--ivory);
}

.theme-women .loved-badge {
  background: var(--pink);
  color: #3e2029;
}

.product-code {
  right: 16px;
  color: var(--emerald-deep);
}

.product-info {
  padding: 21px 4px 0;
}

.inspired-label {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 2.15em;
  margin: 8px 0 9px;
  color: var(--emerald-deep);
  font-size: clamp(1.45rem, 1.7vw, 1.8rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
}

.product-family {
  margin: 0;
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-notes {
  min-height: 3.2em;
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.size-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 9px;
}

.size-option {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.size-option:hover,
.size-option.is-selected {
  border-color: var(--emerald);
  background: var(--emerald-soft);
  color: var(--emerald-deep);
}

.theme-women .size-option:hover,
.theme-women .size-option.is-selected {
  border-color: #c78799;
  background: #f5e2e5;
  color: #5d303c;
}

.fixed-size {
  min-height: 53px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.fixed-size span {
  color: var(--emerald-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.fixed-size small {
  color: var(--muted);
  font-size: 0.66rem;
}

.product-order {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  background: var(--emerald-deep);
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.product-order:hover {
  transform: translateY(-2px);
  background: var(--emerald);
}

.theme-women .product-order {
  background: #814b5a;
}

.theme-women .product-order:hover {
  background: #683b48;
}

.empty-state,
.noscript-note {
  padding: 80px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 10px;
  font-size: 2.2rem;
}

.empty-state p,
.noscript-note {
  margin: 0;
  color: var(--muted);
}

.catalog-footer-cta {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 50% 10%, rgba(51, 130, 115, 0.28), transparent 30%),
    var(--emerald-black);
  color: var(--ivory);
  text-align: center;
}

.catalog-footer-cta h2 {
  margin: 22px 0 34px;
  font-size: clamp(2.9rem, 5.5vw, 5.5rem);
  letter-spacing: -0.045em;
}

/* Footer */
.site-footer {
  padding: 70px clamp(20px, 5vw, 76px) 28px;
  background: #031f1a;
  color: var(--ivory);
}

.footer-main,
.footer-bottom {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 52px;
}

.brand-footer img {
  width: 48px;
  height: 48px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 250, 242, 0.58);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom small {
  max-width: 670px;
  color: rgba(255, 250, 242, 0.45);
  font-size: 0.66rem;
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #137a5c;
  color: #fff;
  box-shadow: 0 16px 38px rgba(3, 48, 39, 0.3);
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #0d6a4e;
}

.wa-dot {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .category-copy {
    width: 64%;
  }

  .category-men > img,
  .category-women > img {
    right: -7%;
    width: 51%;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-overlay:has(.menu-toggle[aria-expanded="true"]),
  .menu-open .header-overlay {
    background: rgba(255, 250, 242, 0.98);
    color: var(--ink);
  }

  body.menu-open {
    overflow: hidden;
  }

  .home-hero {
    min-height: 780px;
  }

  .home-hero-content {
    width: min(580px, 67vw);
  }

  .section-heading,
  .section-heading > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading p:last-child {
    max-width: 620px;
  }

  .category-card {
    min-height: 540px;
  }

  .category-copy {
    width: 70%;
    padding: 36px;
  }

  .category-copy > span {
    margin-bottom: 95px;
  }

  .category-men > img,
  .category-women > img {
    right: -14%;
    width: 58%;
  }

  .category-splash .category-copy {
    width: 52%;
  }

  .standard {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .standard-number {
    min-height: 390px;
  }

  .catalog-hero {
    min-height: 670px;
    grid-template-columns: 1fr 0.86fr;
  }

  .catalog-hero-copy {
    padding-right: 28px;
  }

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

  .footer-main > p {
    text-align: right;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 20px;
  }

  .home-hero {
    min-height: 800px;
    align-items: flex-end;
    padding: 120px 20px 190px;
  }

  .home-hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(1, 30, 25, 0.94) 0%, rgba(1, 36, 30, 0.77) 47%, rgba(1, 36, 30, 0.18) 78%),
      linear-gradient(90deg, rgba(1, 30, 25, 0.35), transparent);
  }

  .home-hero-content {
    width: 100%;
    margin: 0;
  }

  .home-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .hero-proof {
    inset: auto 20px 20px;
    width: calc(100% - 40px);
  }

  .hero-proof div {
    min-height: 74px;
    padding: 12px 10px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    font-size: 0.6rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-splash {
    min-height: 550px;
    grid-column: auto;
  }

  .category-copy,
  .category-splash .category-copy {
    width: 72%;
    padding: 32px;
  }

  .category-copy > span,
  .category-splash .category-copy > span {
    margin-bottom: 82px;
  }

  .category-men > img,
  .category-women > img {
    right: -12%;
    width: 58%;
  }

  .category-splash {
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(160deg, #e7f0ec 0 51%, #f7ede1 51% 100%);
  }

  .category-splash .category-copy {
    z-index: 3;
    width: 100%;
    padding-top: 300px;
  }

  .category-splash .category-copy > span {
    margin-bottom: 22px;
  }

  .splash-images {
    inset: 0 0 auto;
    width: 100%;
    height: 340px;
  }

  .splash-images img {
    width: 45%;
    height: 100%;
  }

  .standard {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .standard-number {
    min-height: min(84vw, 430px);
  }

  .standard-number strong {
    font-size: clamp(7.5rem, 32vw, 10rem);
  }

  .standard-number i {
    right: 25%;
  }

  .editorial-banner {
    min-height: 600px;
    margin: 14px;
  }

  .editorial-banner > img {
    object-position: 62% center;
  }

  .editorial-shade {
    background: linear-gradient(0deg, rgba(1, 30, 25, 0.92), rgba(1, 39, 32, 0.36) 72%, rgba(1, 39, 32, 0.08));
  }

  .editorial-copy {
    align-self: flex-end;
    margin: 0;
    padding: 42px 26px;
  }

  .discover {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 78px 20px 0;
  }

  .catalog-hero-copy {
    width: 100%;
    margin: 0;
    padding: 65px 0 52px;
  }

  .back-link {
    margin-bottom: 32px;
  }

  .catalog-hero h1 {
    font-size: clamp(3.25rem, 14vw, 5.2rem);
  }

  .catalog-hero-visual {
    min-height: 480px;
    margin-inline: -20px;
  }

  .catalog-hero-visual img,
  .splash-catalog-hero .catalog-hero-visual img {
    width: min(72%, 420px);
    height: 92%;
  }

  .catalog-volume {
    top: 24px;
    right: 24px;
  }

  .catalog-section {
    width: calc(100% - 40px);
    padding: 74px 0 100px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .filter-row {
    width: calc(100% + 20px);
    margin-right: -20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 14px;
  }

  .product-info h3 {
    min-height: 2.2em;
  }

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

  .footer-main > p {
    text-align: left;
  }

  .footer-links {
    grid-column: auto;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 39px;
    height: 39px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof div {
    padding-inline: 7px;
  }

  .hero-proof strong {
    font-size: 0.9rem;
  }

  .category-card {
    min-height: 520px;
  }

  .category-copy {
    width: 78%;
    padding: 28px 24px;
  }

  .category-copy h3 {
    font-size: 2.45rem;
  }

  .category-men > img,
  .category-women > img {
    right: -18%;
    width: 65%;
  }

  .category-splash {
    min-height: 640px;
  }

  .category-splash .category-copy {
    padding: 330px 24px 28px;
  }

  .splash-images {
    height: 360px;
  }

  .standard-list article {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .gender-tabs {
    width: 100%;
  }

  .gender-tabs button {
    min-width: 0;
    flex: 1;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .product-media {
    aspect-ratio: 4 / 4.7;
  }

  .product-info h3,
  .product-notes {
    min-height: 0;
  }

  .catalog-footer-cta {
    min-height: 500px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding-inline: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
