:root {
  --primary-50: #f5f5f4;
  --primary-100: #e7e7e6;
  --primary-200: #d0d0cf;
  --primary-300: #b8b8b7;
  --primary-400: #8b8b89;
  --primary-500: #5e5e5d;
  --primary-600: #545453;
  --primary-700: #474746;
  --primary-800: #3c3c3b;
  --primary-900: #2a2a29;
  --secondary-50: #f4f2ee;
  --secondary-100: #e7e1d6;
  --secondary-200: #d4c7b0;
  --secondary-300: #b9a781;
  --secondary-400: #8f7352;
  --secondary-500: #494133;
  --secondary-600: #40392d;
  --secondary-700: #352f25;
  --secondary-800: #29241d;
  --secondary-900: #191611;
  --accent-50: #fdf8e7;
  --accent-100: #fbefc4;
  --accent-200: #f6de88;
  --accent-300: #f1cd4c;
  --accent-400: #dfa91f;
  --accent-500: #cd9d0d;
  --accent-600: #aa820c;
  --accent-700: #876709;
  --accent-800: #654d07;
  --accent-900: #433304;
  --bg-primary: #f7f5f1;
  --bg-secondary: #efe9de;
  --surface: #ffffff;
  --surface-soft: #f8f6f2;
  --border: rgba(73, 65, 51, 0.14);
  --text-primary: #211d17;
  --text-secondary: #5e5e5d;
  --text-muted: #7c766f;
  --success: #2f6b44;
  --warning: #b0780c;
  --error: #a63d32;
  --info: #426a82;
  --shadow-panel: 0 20px 45px rgba(73, 65, 51, 0.08);
  --shadow-glow: 0 0 0 1px rgba(205, 157, 13, 0.2), 0 18px 40px rgba(205, 157, 13, 0.18);
  --container: min(1200px, calc(100vw - 48px));
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

.dark {
  --bg-primary: #181614;
  --bg-secondary: #221f1a;
  --surface: #201d19;
  --surface-soft: #2a261f;
  --border: rgba(248, 243, 233, 0.1);
  --text-primary: #f8f3e9;
  --text-secondary: #d6cec0;
  --text-muted: #aea392;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(205, 157, 13, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(94, 94, 93, 0.12), transparent 22%),
    var(--bg-primary);
  color: var(--text-primary);
}

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

button,
input {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-space {
  padding: 64px 0;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-primary) 88%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 108px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 230px;
  min-height: 72px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  padding: 10px 18px;
}

.brand-logo {
  width: 100%;
  max-width: 188px;
  height: auto;
}

.hero h1,
.hero h2,
.section-heading h2,
.editorial-content h2,
.manifesto h2,
.site-footer h3 {
  font-family: Georgia, serif;
}

.eyebrow {
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.menu-toggle {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button:hover,
.menu-toggle:hover,
.button:hover,
.slider-control:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: calc(100vh - 89px);
  padding: 40px 0 28px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 28%, rgba(205, 157, 13, 0.16), transparent 18%),
    linear-gradient(180deg, #23211f 0%, #131210 52%, #0b0b0a 100%);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(11, 11, 10, 0), rgba(11, 11, 10, 0.28));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 40px;
  min-height: 680px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #f8f3e9;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 72px;
  height: 2px;
  background: var(--accent-500);
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 2px;
  height: 72px;
  background: rgba(205, 157, 13, 0.48);
}

.hero-copy .eyebrow {
  color: rgba(248, 243, 233, 0.64);
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.hero-copy p {
  max-width: 440px;
  color: rgba(248, 243, 233, 0.78);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  background: var(--accent-500);
  color: var(--secondary-900);
  box-shadow: var(--shadow-glow);
}

.button-secondary {
  background: var(--accent-500);
  color: var(--secondary-900);
}

.button-ghost {
  border-color: rgba(248, 243, 233, 0.2);
  color: #f8f3e9;
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% 0 6% 12%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 50%, rgba(205, 157, 13, 0.1), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-panel);
}

.hero-mark-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(82%, 520px);
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.35));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.intro-strip {
  padding: 32px 0 12px;
  text-align: center;
}

.intro-strip p {
  margin: 0;
  color: var(--text-secondary);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.panel-dark,
.panel-dark-soft,
.panel-light,
.panel-mid,
.product-card,
.info-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
}

.panel-dark,
.panel-dark-soft {
  background: linear-gradient(180deg, var(--primary-800), var(--secondary-700));
  color: #f8f3e9;
}

.panel-light {
  background: var(--surface);
}

.panel-mid {
  background: linear-gradient(180deg, #dfd8cc, #f7f5f1);
  color: var(--secondary-900);
}

.panel-mid .editorial-card-copy h3,
.panel-mid .editorial-card-copy p {
  color: var(--secondary-900);
}

.editorial-feature,
.editorial-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.editorial-feature {
  display: grid;
  min-height: 720px;
  grid-template-rows: 1fr auto;
}

.editorial-content,
.editorial-card-copy {
  padding: 28px;
}

.editorial-content h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.text-link,
.text-button {
  color: var(--accent-500);
}

.text-link {
  font-weight: 600;
}

.text-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.editorial-stack {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.editorial-card {
  min-height: 348px;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.82) 0 8%, rgba(255, 255, 255, 0) 9%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(0, 0, 0, 0.68));
  filter: grayscale(1);
}

.editorial-image-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.editorial-image::before {
  content: "";
  position: absolute;
  inset: 8% 18% 0;
  border-radius: 48% 48% 14% 14% / 28% 28% 12% 12%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88) 0 8%, rgba(255, 255, 255, 0) 8.5%);
}

.editorial-image-wide {
  min-height: 540px;
  filter: none;
  background:
    radial-gradient(circle at 44% 18%, rgba(255, 255, 255, 0.72) 0 7%, rgba(255, 255, 255, 0) 7.5%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.86)),
    linear-gradient(120deg, #111 0%, #2b2b2a 100%);
}

.editorial-image-wide .editorial-image-real {
  position: absolute;
  inset: 0;
  object-position: center 18%;
  image-rendering: auto;
}

.editorial-image-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.22));
}

.editorial-image-wide::before {
  display: none;
}

.editorial-image-tall {
  filter: none;
}

.editorial-image-tall .editorial-image-real {
  position: absolute;
  inset: 0;
  object-position: center 12%;
}

.editorial-image-tall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.18));
}

.editorial-image-tall::before {
  display: none;
}

.editorial-image-portrait {
  filter: none;
}

.editorial-image-portrait .editorial-image-real {
  position: absolute;
  inset: 0;
  object-position: center 14%;
}

.editorial-image-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.18));
}

.editorial-image-portrait::before {
  display: none;
}

.editorial-image-portrait-alt {
  filter: none;
}

.editorial-image-portrait-alt .editorial-image-real {
  position: absolute;
  inset: 0;
  object-position: center 12%;
}

.editorial-image-portrait-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.18));
}

.editorial-image-portrait-alt::before {
  display: none;
}

.editorial-image-square {
  filter: none;
}

.editorial-image-square .editorial-image-real {
  position: absolute;
  inset: 0;
  object-position: center 20%;
}

.editorial-image-square::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.24));
}

.editorial-image-square::before {
  display: none;
}

.editorial-image-tall::before,
.editorial-image-portrait::before,
.editorial-image-portrait-alt::before,
.editorial-image-square::before {
  inset: 10% 20% 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

.section-heading p:last-child,
.essentials .section-heading p:not(.eyebrow) {
  color: var(--text-secondary);
}

.product-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.slider-control {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 8px 6px 14px;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  min-width: 0;
  scroll-snap-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card-featured {
  transform: translateY(-8px);
  border-color: rgba(205, 157, 13, 0.28);
  box-shadow: var(--shadow-glow);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-visual {
  height: 320px;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  position: relative;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 42%),
    rgba(240, 236, 228, 0.98);
  overflow: hidden;
  border: 1px solid rgba(73, 65, 51, 0.08);
  display: grid;
  place-items: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.product-price {
  margin: 12px 0 0;
  color: var(--text-secondary);
}

.product-price span {
  margin-left: 8px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.essentials-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.testimonials-shell {
  position: relative;
}

.essentials-cards {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 14px;
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.essentials-cards::-webkit-scrollbar {
  display: none;
}

.essentials-cards.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.info-card {
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  scroll-snap-align: center;
}

.info-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.info-card p {
  line-height: 1.75;
  color: var(--text-secondary);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 270px;
  flex: 0 0 calc(50% - 9px);
}

.testimonial-card p:last-child {
  margin: 0;
}

.testimonial-stars {
  margin: 12px 0 16px;
  color: var(--accent-500);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.testimonial-stars-dark {
  color: var(--secondary-900);
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-control {
  width: 46px;
  height: 46px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.testimonial-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(94, 94, 93, 0.26);
}

.testimonial-dots .is-active {
  width: 28px;
  background: var(--accent-500);
}

.accent-card {
  background: linear-gradient(180deg, var(--accent-500), var(--accent-600));
}

.accent-card h3,
.accent-card p {
  color: var(--secondary-900);
}

.manifesto {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.54), rgba(24, 22, 20, 0.88)),
    linear-gradient(135deg, #2d2a27 0%, #141311 100%);
  color: #f8f3e9;
}

.manifesto-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18) 0 6%, rgba(255, 255, 255, 0) 7%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.44));
  clip-path: ellipse(22% 44% at 50% 46%);
  filter: grayscale(1);
  opacity: 0.68;
}

.manifesto-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.manifesto-content h2 {
  margin: 12px auto 16px;
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.manifesto-content p:last-of-type {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(248, 243, 233, 0.74);
  line-height: 1.75;
}

.manifesto-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.manifesto-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 243, 233, 0.3);
}

.manifesto-dots .is-active {
  height: 22px;
  background: var(--accent-500);
}

.site-footer {
  background: linear-gradient(180deg, var(--primary-800), var(--secondary-700));
  color: rgba(248, 243, 233, 0.78);
}

.footer-brand-row {
  padding-top: 34px;
}

.footer-logo {
  width: 100%;
  max-width: 184px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 56px 0;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #f8f3e9;
  font-size: 1.35rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(248, 243, 233, 0.7);
}

.footer-address {
  max-width: 28ch;
  margin: 18px 0 0;
  color: rgba(248, 243, 233, 0.74);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(248, 243, 233, 0.08);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }

  .editorial-layout,
  .essentials-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-stack,
  .product-track {
    grid-template-columns: 1fr;
  }

  .essentials-cards {
    gap: 16px;
  }

  .testimonial-card {
    flex-basis: 78%;
  }

  .manifesto-dots {
    position: static;
    transform: none;
    justify-content: center;
    grid-auto-flow: column;
    margin-top: 24px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media::before {
    inset: 8% 4% 0;
  }

  .hero-mark-image {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(72%, 360px);
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand-mark {
    min-width: 188px;
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand-logo {
    max-width: 154px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: var(--shadow-panel);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-self: start;
    grid-column: 1 / -1;
  }

  .hero-copy::before,
  .hero-copy::after {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 32px, 1200px);
  }

  .brand-mark {
    min-width: 150px;
    min-height: 56px;
    padding: 8px 12px;
  }

  .brand-logo {
    max-width: 126px;
  }

  .section-space {
    padding: 48px 0;
  }

  .product-slider {
    grid-template-columns: 1fr;
  }

  .essentials-cards {
    gap: 14px;
  }

  .testimonial-card {
    flex-basis: 88%;
  }

  .slider-control {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
