:root {
  --ink: #17110d;
  --espresso: #24150f;
  --brown: #3a2117;
  --cognac: #9b5a2a;
  --tan: #c68b55;
  --sand: #ead8bf;
  --cream: #f8f1e7;
  --paper: #fffaf1;
  --muted: #7a6656;
  --line: rgba(58, 33, 23, 0.16);
  --shadow: 0 24px 70px rgba(23, 17, 13, 0.22);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(198, 139, 85, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--cream), #f2e2cd 42%, var(--paper));
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(58, 33, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 33, 23, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0.75rem auto 0;
  padding: 0.7rem;
  color: var(--paper);
  background: rgba(36, 21, 15, 0.88);
  border: 1px solid rgba(248, 241, 231, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 17, 13, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  background: var(--tan);
  border-radius: 50%;
  border: 1px solid rgba(248, 241, 231, 0.28);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
  color: rgba(248, 241, 231, 0.84);
  font-size: 0.92rem;
}

.nav a:hover,
.footer a:hover {
  color: var(--tan);
}

.header-cta {
  display: none;
  padding: 0.65rem 0.95rem;
  color: var(--espresso);
  background: var(--sand);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100svh - 5.5rem);
  padding: 3.25rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--cognac);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 5.6rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.hero-subtitle {
  max-width: 38rem;
  color: var(--brown);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:focus-visible,
.filter-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(155, 90, 42, 0.38);
  outline-offset: 3px;
}

.button-primary {
  color: var(--paper);
  background: var(--espresso);
  box-shadow: 0 12px 30px rgba(36, 21, 15, 0.18);
}

.button-secondary {
  color: var(--espresso);
  background: rgba(255, 250, 241, 0.68);
  border-color: var(--line);
}

.button-card {
  width: 100%;
  margin-top: 0.65rem;
  color: var(--paper);
  background: var(--brown);
}

.button-ghost {
  width: 100%;
  min-height: 2.8rem;
  color: var(--brown);
  background: rgba(234, 216, 191, 0.28);
  border-color: var(--line);
}

.hero-proof {
  margin: 2rem 0 0;
}

.hero-proof div {
  min-width: 8.5rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 241, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin: 0.1rem 0 0;
  font-weight: 800;
}

.hero-image {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(23, 17, 13, 0.16), transparent 44%),
    radial-gradient(circle at 24% 20%, rgba(234, 216, 191, 0.3), transparent 10rem),
    linear-gradient(135deg, #1b100b, #3a2117 42%, #895025);
  border: 1px solid rgba(58, 33, 23, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  opacity: 0.24;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 14px);
  mix-blend-mode: soft-light;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 17, 13, 0.08), rgba(23, 17, 13, 0.38)),
    radial-gradient(circle at 28% 16%, rgba(234, 216, 191, 0.18), transparent 12rem);
}

.hero-photo,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.image-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  padding: 0.45rem 0.65rem;
  color: rgba(248, 241, 231, 0.86);
  background: rgba(23, 17, 13, 0.38);
  border: 1px solid rgba(248, 241, 231, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.hero-wallet {
  left: 10%;
  top: 26%;
  width: 44%;
  aspect-ratio: 1.45;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 240, 214, 0.12) 50%, transparent 51%),
    linear-gradient(135deg, #5e2f18, #b66a30);
}

.hero-notebook {
  right: 8%;
  bottom: 20%;
  width: 48%;
  aspect-ratio: 0.76;
  transform: rotate(4deg);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 12%, transparent 12%),
    linear-gradient(135deg, #2a1911, #8b4e26 65%, #d29056);
}

.hero-strap {
  left: 19%;
  bottom: 14%;
  width: 58%;
  height: 3.5rem;
  transform: rotate(-18deg);
  background:
    repeating-linear-gradient(90deg, rgba(255, 240, 214, 0.22) 0 5px, transparent 5px 46px),
    linear-gradient(90deg, #1a100b, #7d421e);
  border-radius: 999px;
}

.hero-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.15rem;
  max-width: 16rem;
  padding: 1rem;
  color: var(--paper);
  background: rgba(23, 17, 13, 0.72);
  border: 1px solid rgba(248, 241, 231, 0.14);
  border-radius: var(--radius);
}

.hero-caption span {
  color: rgba(248, 241, 231, 0.74);
  font-size: 0.88rem;
}

.featured,
.catalog,
.process,
.story-care,
.faq,
.custom-orders {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading p,
.custom-orders p,
.story-panel p,
.care-panel p {
  color: var(--muted);
}

.section-heading-wide {
  display: grid;
  gap: 1rem;
  max-width: none;
}

.featured-grid,
.catalog-grid,
.steps,
.story-care {
  display: grid;
  gap: 1rem;
}

.product-card,
.steps article,
.story-panel,
.care-panel,
.faq details {
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(58, 33, 23, 0.08);
}

.product-image {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  background: linear-gradient(135deg, #2b1810, #935126);
}

.product-image img {
  position: absolute;
  inset: 0;
  transition: transform 420ms ease;
}

.product-image::before,
.product-image::after {
  position: absolute;
  content: "";
}

.product-image::before {
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: calc(var(--radius) - 2px);
}

.product-image::after {
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.55rem;
  color: rgba(255, 250, 241, 0.78);
  background: rgba(23, 17, 13, 0.38);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Placeholder";
}

.product-image.has-photo {
  background: var(--espresso);
}

.product-image.has-photo::after {
  display: none;
}

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

.image-wallet {
  background:
    radial-gradient(circle at 26% 18%, rgba(234, 216, 191, 0.22), transparent 7rem),
    linear-gradient(135deg, #321d14, #b56b33);
}

.image-passport {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0 15%, transparent 15%),
    linear-gradient(135deg, #20130e, #75421f 62%, #c8874d);
}

.image-notebook {
  background:
    repeating-linear-gradient(90deg, rgba(248, 241, 231, 0.1) 0 1px, transparent 1px 36px),
    linear-gradient(135deg, #513018, #c07b3f);
}

.image-belt {
  background:
    repeating-linear-gradient(-18deg, rgba(248, 241, 231, 0.13) 0 8px, transparent 8px 54px),
    linear-gradient(135deg, #140c08, #8b4a23);
}

.image-accessory {
  background:
    radial-gradient(circle at 32% 38%, rgba(234, 216, 191, 0.2), transparent 8rem),
    linear-gradient(135deg, #271710, #6d3a1d 58%, #d69a63);
}

.image-custom {
  background:
    linear-gradient(120deg, rgba(248, 241, 231, 0.16), transparent 35%),
    linear-gradient(135deg, #1f120d, #4b2a19 50%, #a66535);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.product-body p {
  color: var(--muted);
}

.product-kicker,
.catalog-category {
  margin: 0 0 0.45rem;
  color: var(--cognac);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-meta {
  display: grid;
  gap: 0.65rem;
  margin: auto 0 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.filters {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  padding: 0.7rem 0.95rem;
  color: var(--brown);
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--paper);
  background: var(--espresso);
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at top right, rgba(198, 139, 85, 0.28), transparent 22rem),
    linear-gradient(135deg, var(--espresso), #3b2115);
  border-radius: var(--radius);
  padding-inline: 1rem;
}

.split-section .eyebrow,
.info-band .eyebrow {
  color: var(--tan);
}

.split-section p {
  color: rgba(248, 241, 231, 0.74);
}

.split-section .button-primary {
  color: var(--espresso);
  background: var(--sand);
}

.feature-list,
.care-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.care-list li {
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(248, 241, 231, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
}

.steps article {
  padding: 1.2rem;
}

.steps span {
  display: inline-flex;
  margin-bottom: 1.7rem;
  color: var(--cognac);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.steps p,
.faq p {
  color: var(--muted);
}

.info-band {
  color: var(--paper);
  background: var(--espresso);
}

.info-band-inner {
  display: grid;
  gap: 1rem;
  padding-block: 3rem;
}

.info-band h2 {
  margin: 0;
}

.info-band p {
  margin: 0;
  color: rgba(248, 241, 231, 0.78);
}

.story-panel,
.care-panel {
  padding: 1.3rem;
}

.demo-note {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.care-list li {
  color: var(--brown);
  background: rgba(234, 216, 191, 0.44);
  border-color: var(--line);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  padding: 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq summary::marker {
  color: var(--cognac);
}

.faq p {
  margin: 0.75rem 0 0;
}

.footer {
  color: rgba(248, 241, 231, 0.82);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  padding: 2.4rem 0 6rem;
}

.footer p {
  margin: 0.8rem 0 0;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.2rem;
  color: var(--paper);
  background: #215c35;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(20, 50, 31, 0.34);
  font-weight: 900;
}

.quick-view-modal {
  width: min(920px, calc(100% - 2rem));
  max-height: min(720px, calc(100% - 2rem));
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(58, 33, 23, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-view-modal::backdrop {
  background: rgba(23, 17, 13, 0.64);
  backdrop-filter: blur(6px);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--paper);
  background: rgba(23, 17, 13, 0.68);
  border: 1px solid rgba(248, 241, 231, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.modal-grid {
  display: grid;
}

.modal-image {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: var(--espresso);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 1.35rem;
}

.modal-content h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.modal-content p {
  color: var(--muted);
}

.modal-meta {
  margin-top: 1rem;
}

.quick-points {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.quick-points li {
  padding: 0.7rem 0.85rem;
  color: var(--brown);
  background: rgba(234, 216, 191, 0.42);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

@media (min-width: 720px) {
  .nav,
  .header-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.03fr) minmax(21rem, 0.76fr);
    align-items: center;
    padding-top: 4.5rem;
  }

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

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

  .section-heading-wide,
  .split-section,
  .info-band-inner,
  .story-care,
  .footer-inner,
  .modal-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .modal-image {
    min-height: 100%;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .featured-grid,
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section {
    padding-inline: 3rem;
  }
}

@media (max-width: 430px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .brand span:last-child {
    max-width: 8.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-image {
    min-height: 28rem;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
