:root {
  --ivory: #fbf7ee;
  --paper: #fffdf8;
  --cognac: #9a5528;
  --cognac-dark: #6e351d;
  --walnut: #4b2d1c;
  --charcoal: #20201d;
  --muted: #776d61;
  --forest: #173a2b;
  --forest-soft: #e3ebe2;
  --brass: #b08a45;
  --line: rgba(32, 32, 29, 0.13);
  --shadow: 0 24px 70px rgba(32, 32, 29, 0.14);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 12% 4%, rgba(176, 138, 69, 0.14), transparent 27rem),
    linear-gradient(180deg, var(--ivory), #f4eadf 46%, var(--paper));
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(251, 247, 238, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand::before {
  content: "";
  width: 38px;
  height: 38px;
  border: 1px solid rgba(154, 85, 40, 0.46);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, var(--brass) 48% 52%, transparent 53%),
    radial-gradient(circle at 62% 34%, var(--cognac), var(--walnut) 67%, var(--forest));
  box-shadow: inset 0 0 0 7px rgba(251, 247, 238, 0.62);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #3e3932;
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cognac);
  transition: transform 0.24s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.82);
}

.btn,
.link-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn,
.link-button {
  color: #fffdf7;
  background: linear-gradient(135deg, var(--forest), #23503b 48%, var(--cognac));
  box-shadow: 0 14px 34px rgba(23, 58, 43, 0.24);
}

.btn:hover,
.link-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--forest);
  border-color: rgba(23, 58, 43, 0.28);
  background: rgba(255, 253, 248, 0.76);
}

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: stretch;
  background: #201711;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, transparent, rgba(32, 18, 12, 0.4) 46%, rgba(20, 14, 10, 0.72)),
    linear-gradient(90deg, rgba(18, 17, 14, 0.72), rgba(18, 17, 14, 0.22) 52%, rgba(18, 17, 14, 0.56));
}

.hero-grain {
  position: absolute;
  inset: -50%;
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0 1px, transparent 1px 6px);
  animation: grainMove 11s steps(8) infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 1fr);
  align-items: end;
  gap: 38px;
  padding: 110px 0 70px;
  color: #fffaf1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #f2d8ae;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--brass);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.98;
  color: inherit;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.hero-subtitle,
.section-lead,
.page-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.hero-subtitle {
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.88);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-buttons .ghost-button {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.42);
  background: rgba(255, 250, 241, 0.1);
}

.trust-badges {
  display: grid;
  gap: 12px;
  align-self: center;
}

.trust-badges span,
.soft-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(255, 250, 241, 0.1);
  color: #fffaf1;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section.compact {
  padding: 54px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 38px;
  align-items: center;
}

.editorial-copy p {
  margin: 0 0 18px;
  color: #51493f;
  font-size: 1.05rem;
}

.quote-panel {
  position: relative;
  border: 1px solid rgba(154, 85, 40, 0.18);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(227, 235, 226, 0.76)),
    radial-gradient(circle at 90% 0, rgba(176, 138, 69, 0.2), transparent 22rem);
  box-shadow: var(--shadow);
}

.quote-panel::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  right: 22px;
  top: 22px;
  border-radius: 50%;
  border: 1px solid rgba(176, 138, 69, 0.38);
}

.quote-panel strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.benefit-grid,
.product-grid,
.lifestyle-grid,
.trust-grid,
.article-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.info-card,
.product-card,
.article-card,
.trust-card,
.contact-card,
.legal-card,
.cart-panel,
.checkout-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 36px rgba(32, 32, 29, 0.07);
}

.benefit-card {
  padding: 22px;
  min-height: 180px;
}

.benefit-card i,
.trust-card i,
.contact-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--forest-soft);
}

.benefit-card h3,
.info-card h3,
.trust-card h3,
.contact-card h3,
.legal-card h3 {
  margin-top: 18px;
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1.08;
}

.benefit-card p,
.info-card p,
.trust-card p,
.contact-card p,
.legal-card p,
.product-card p,
.article-card p {
  color: var(--muted);
}

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

.product-card,
.article-card {
  overflow: hidden;
}

.product-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body,
.article-card-body {
  padding: 22px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--forest);
  background: var(--forest-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.card-actions .ghost-button,
.card-actions .btn {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.lifestyle-band {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #fffaf1;
}

.lifestyle-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 58, 43, 0.92), rgba(23, 58, 43, 0.5)),
    var(--lifestyle-image, none);
  background-size: cover;
  background-position: center;
}

.lifestyle-band.has-image::before {
  background-image:
    linear-gradient(90deg, rgba(23, 58, 43, 0.92), rgba(23, 58, 43, 0.5)),
    url("../img/city-lifestyle.webp");
}

.lifestyle-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.lifestyle-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 34px;
}

.lifestyle-chip {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 250, 241, 0.1);
  backdrop-filter: blur(10px);
}

.lifestyle-chip i {
  color: #f2d8ae;
  font-size: 1.4rem;
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.craft-list {
  display: grid;
  gap: 13px;
}

.craft-list li,
.check-list li {
  list-style: none;
  position: relative;
  padding-left: 34px;
  color: #51493f;
}

.craft-list li::before,
.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--cognac);
}

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

.trust-card,
.info-card,
.contact-card,
.legal-card {
  padding: 24px;
}

.seller-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  border: 1px solid rgba(23, 58, 43, 0.18);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(23, 58, 43, 0.96), rgba(46, 79, 58, 0.92)),
    radial-gradient(circle at 100% 0, rgba(176, 138, 69, 0.34), transparent 24rem);
  color: #fffaf1;
  box-shadow: var(--shadow);
}

.seller-panel p,
.seller-panel li {
  color: rgba(255, 250, 241, 0.82);
}

.large-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(34px, 7vw, 78px);
  color: #fffaf1;
  background:
    radial-gradient(circle at 85% 12%, rgba(176, 138, 69, 0.46), transparent 22rem),
    linear-gradient(135deg, var(--walnut), var(--forest) 68%, #0f241b);
  box-shadow: var(--shadow);
}

.large-cta h2,
.large-cta p {
  max-width: 720px;
}

.large-cta p {
  color: rgba(255, 250, 241, 0.84);
}

.large-cta .btn {
  margin-top: 18px;
  background: #fffaf1;
  color: var(--forest);
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 44px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.page-hero h1 {
  color: var(--charcoal);
  font-size: clamp(3rem, 7vw, 6rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.filter-bar input,
.filter-bar select,
.contact-card input,
.contact-card textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--charcoal);
  background: #fffdf8;
}

.filter-bar input {
  flex: 1 1 240px;
}

.filter-bar select {
  flex: 0 1 220px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(13, 13, 12, 0.62);
}

.modal.is-open {
  display: grid;
}

.modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.modal-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.modal-body {
  padding: clamp(22px, 4vw, 42px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
}

.cart-panel,
.checkout-panel {
  padding: clamp(22px, 4vw, 34px);
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cart-item img {
  width: 92px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
}

.qty-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  cursor: pointer;
}

.checkout-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fffdf8;
}

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

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

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

.contact-card textarea {
  min-height: 150px;
  border-radius: var(--radius);
  resize: vertical;
}

.legal-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
}

.legal-card h2 {
  margin-top: 26px;
  color: var(--charcoal);
  font-size: 2rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.site-footer {
  margin-top: 76px;
  background: #171512;
  color: #fffaf1;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
}

.footer-disclaimer {
  color: rgba(255, 250, 241, 0.76);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.company-block {
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 241, 0.05);
}

.company-block h3 {
  margin-bottom: 12px;
  color: #f2d8ae;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-block p,
.company-block a,
.footer-bottom {
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.92rem;
}

.company-block a {
  display: block;
  margin-top: 7px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.empty-state {
  border: 1px dashed rgba(154, 85, 40, 0.38);
  border-radius: var(--radius);
  padding: 26px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.64);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  transform: translateY(18px);
  opacity: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fffaf1;
  background: var(--forest);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBreath {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-1.2%);
  }
}

@keyframes grainMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(8%, 6%);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 253, 248, 0.97);
    box-shadow: var(--shadow);
  }

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

  .hero-content,
  .section-header,
  .editorial-grid,
  .craft-layout,
  .seller-panel,
  .page-hero-inner,
  .footer-top,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid,
  .product-grid,
  .trust-grid,
  .article-grid,
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .nav-shell {
    min-height: 68px;
  }

  .brand {
    font-size: 1.36rem;
  }

  .nav-actions .link-button {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 80px 0 42px;
  }

  .hero-buttons,
  .checkout-methods,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badges,
  .benefit-grid,
  .product-grid,
  .trust-grid,
  .article-grid,
  .company-grid,
  .checkout-methods,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-item .qty-actions {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
