:root {
  --bg: #050505;
  --panel: #c9b8b0;
  --panel-deep: #baa39a;
  --surface: rgba(255, 255, 255, 0.38);
  --surface-strong: rgba(255, 255, 255, 0.62);
  --ink: #151515;
  --muted: #4a403b;
  --white: #fff;
  --accent: #b90e16;
  --accent-dark: #8f0a10;
  --line: rgba(0, 0, 0, 0.2);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1400px, calc(100vw - 10px));
  margin: 10px auto;
}

.frame {
  min-height: calc(100vh - 20px);
  padding: 8px 6px 10px;
  border-radius: 18px;
  background: var(--bg);
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 8px 8px;
  color: var(--white);
}

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

.brand img {
  width: 160px;
}

.brand-mark {
  display: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
}

.nav-area {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--white);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tool-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
}

.panel {
  position: relative;
  min-height: 86vh;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel) 0%, #c8b6ae 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 28px;
}

.section-title,
.hero-copy h1,
.banner-copy h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-title {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 18px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.panel-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.panel-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.btn,
.card-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.btn,
.card-button {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.btn:hover,
.card-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn {
  min-width: 140px;
  padding: 14px 24px;
  font-weight: 700;
}

.secondary-button {
  border: 1px solid var(--line);
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 12px 4px 12px 10px;
}

.hero-copy h1 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.92;
}

.hero-copy p {
  margin: 0;
  max-width: 420px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.meta-pill,
.tag,
.size-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.24);
  font-size: 13px;
}

.hero-visual,
.media-card,
.contact-image,
.gallery-lead {
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
}

.hero-visual img,
.contact-image img,
.gallery-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.split-grid,
.shop-layout,
.contact-layout,
.gallery-grid,
.feature-grid,
.promise-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.mini-card,
.info-card,
.support-card,
.product-card,
.gallery-card,
.promise-card,
.footer-card,
.story-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-card,
.info-card,
.support-card,
.promise-card,
.story-card,
.footer-card {
  padding: 20px;
}

.mini-card h3,
.info-card h3,
.support-card h3,
.product-card h3,
.gallery-card h3,
.promise-card h3,
.story-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.mini-card p,
.info-card p,
.support-card p,
.promise-card p,
.story-card p,
.footer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.shop-layout {
  grid-template-columns: 250px 1fr;
  align-items: start;
}

.shop-side {
  display: grid;
  gap: 18px;
}

.shop-cats,
.filter-box {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--line);
}

.shop-cats h3,
.filter-box h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.shop-cats p,
.filter-box p {
  margin: 0;
  line-height: 1.9;
  font-weight: 600;
}

.sale-banner {
  width: 100%;
  border-radius: var(--radius-md);
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.55);
  padding: 10px;
}

.product-copy {
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.product-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  font-size: 24px;
  font-weight: 800;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-chip {
  background: rgba(255, 255, 255, 0.45);
}

.card-button {
  padding: 12px 18px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.story-card {
  padding: 28px;
}

.story-card p + p {
  margin-top: 16px;
}

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

.stat-box {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.28);
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 34px;
  margin-bottom: 6px;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

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

.field,
.newsletter-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

textarea.field {
  min-height: 160px;
  resize: vertical;
}

.contact-image {
  min-height: 690px;
}

.support-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.support-list span {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.36);
}

.gallery-lead {
  margin-bottom: 18px;
  height: 360px;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-copy {
  padding: 18px;
}

.gallery-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 26px;
  background: #111;
  color: rgba(255, 255, 255, 0.88);
}

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

.footer-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-card a,
.footer-card p,
.footer-card li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.newsletter-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.newsletter-row .card-button {
  white-space: nowrap;
}

.footer-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1100px) {
  .hero-layout,
  .about-grid,
  .contact-layout,
  .shop-layout,
  .footer-grid,
  .feature-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .products,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .contact-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100%, calc(100vw - 8px));
    margin: 4px auto;
  }

  .frame {
    padding: 4px;
    min-height: auto;
  }

  .panel {
    padding: 20px;
    min-height: auto;
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-area {
    width: 100%;
    justify-content: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .brand img {
    width: 132px;
  }

  .hero-copy h1,
  .section-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-copy {
    padding: 0;
  }

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

  .product-card img,
  .gallery-card img,
  .gallery-lead {
    height: auto;
  }

  .newsletter-row {
    flex-direction: column;
  }
}
