:root {
  --bg: #f7f4ef;
  --bg-alt: #ece7df;
  --surface: #ffffff;
  --text: #1f1c1a;
  --text-muted: #5c5650;
  --accent: #8b6f47;
  --accent-dark: #6b5435;
  --border: rgba(31, 28, 26, 0.12);
  --shadow: 0 24px 60px rgba(31, 28, 26, 0.12);
  --radius: 18px;
  --header-height: 76px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

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

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
}

.section {
  padding: 5.5rem 0;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(20, 18, 16, 0.72), rgba(20, 18, 16, 0.35)),
    url("assets/images/final_images/img-000.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 6rem 0 4rem;
  max-width: 760px;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.stats-bar {
  background: var(--text);
  color: #fff;
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-media img,
.product-card img,
.gallery-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.split-media img {
  min-height: 420px;
  box-shadow: var(--shadow);
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.swatch {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figcaption {
  padding: 0.65rem 0.25rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-layout {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 28, 26, 0.08);
}

.product-card img {
  aspect-ratio: 4 / 3;
}

.product-body {
  padding: 1.25rem;
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.product-meta {
  font-size: 0.82rem !important;
  color: var(--accent-dark) !important;
  margin: 0 !important;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-details strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--accent-dark);
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(139, 111, 71, 0.35);
  border-color: var(--accent);
}

.form-note {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.form-note.success {
  color: #2f6b3f;
}

.form-note.error {
  color: #9b3b3b;
}

.site-footer {
  padding: 2.5rem 0;
  background: #151311;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.footer-inner .logo {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .stats-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 0;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }
}
