:root {
  --ink: #15120f;
  --muted: #635b51;
  --paper: #fbfaf6;
  --panel: #f0eadf;
  --cedar: #9a5a2d;
  --cedar-dark: #5c341d;
  --moss: #526342;
  --charcoal: #24211d;
  --line: #ded4c5;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(34, 26, 18, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.25rem 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--cedar-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.socials {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--cedar-dark);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.socials a:hover {
  background: var(--cedar-dark);
  border-color: var(--cedar-dark);
  color: var(--white);
}

.social-icon {
  display: block;
  width: 19px;
  height: 19px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.social-icon.instagram {
  mask-image: url("icons/instagram.svg");
  -webkit-mask-image: url("icons/instagram.svg");
}

.social-icon.facebook {
  mask-image: url("icons/facebook.svg");
  -webkit-mask-image: url("icons/facebook.svg");
}

.social-icon.tiktok {
  mask-image: url("icons/tiktok.svg");
  -webkit-mask-image: url("icons/tiktok.svg");
}

.social-icon.youtube {
  mask-image: url("icons/youtube.svg");
  -webkit-mask-image: url("icons/youtube.svg");
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.9rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
}

.nav a {
  color: var(--charcoal);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cedar-dark);
  border-bottom-color: var(--cedar);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
}

.hero.hero-small {
  min-height: 430px;
}

.hero img,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 14, 11, 0.78), rgba(17, 14, 11, 0.34) 46%, rgba(17, 14, 11, 0.08));
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  color: #ead8be;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 610px;
  margin-top: 1.2rem;
  color: #f4ede3;
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--cedar-dark);
  background: var(--cedar-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--cedar-dark);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 1.25rem;
}

.section.alt {
  background: var(--panel);
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 460px;
  color: var(--muted);
}

.dark .section-head p {
  color: #d5c8b8;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.kicker {
  color: var(--cedar-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.text-block p {
  color: var(--muted);
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1rem;
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--paper);
  padding: 1.35rem;
}

.stat strong {
  display: block;
  color: var(--cedar-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.45rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-left: 3px solid var(--cedar);
  padding: 0.2rem 0 0.2rem 0.85rem;
  color: var(--muted);
}

.banner {
  background: var(--moss);
  color: var(--white);
  padding: 2rem 1.25rem;
}

.banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner p {
  color: #ede7dd;
  margin: 0.45rem 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-body {
  padding: 1rem;
}

.product-body h3 {
  font-size: 1.18rem;
}

.price {
  color: var(--cedar-dark);
  font-weight: 700;
  margin: 0.45rem 0;
}

.tag {
  display: inline-block;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery figure {
  break-inside: avoid;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery img {
  width: 100%;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0.75rem;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  min-height: 1.4rem;
  color: var(--moss);
  font-weight: 700;
}

.site-footer {
  background: #171512;
  color: #f8f0e5;
  padding: 3rem 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid p,
.footer-grid a {
  color: #cfc3b3;
}

.footer-title {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

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

.copyright {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a89b8a;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .topbar,
  .section-head,
  .banner .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .split,
  .split.reverse,
  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding-top: 0.85rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .socials {
    width: 100%;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .hero,
  .hero.hero-small {
    min-height: 520px;
  }

  .hero-content {
    padding: 3rem 1.1rem;
  }

  .product-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    min-height: 300px;
  }
}
