:root {
  --ink: #1d1a17;
  --ink-soft: #3a352e;
  --paper: #f6f2ea;
  --surface: #ffffff;
  --line: #ddd6ca;
  --muted: #6f675c;
  --tan: #9c6b3a;
  --green: #2f4a3c;
  --green-dark: #24392f;
  --rust: #9a4f2e;
  --footer: #14120f;
  --footer-text: #cbc4b8;
  --shadow: 0 10px 30px rgba(29, 26, 23, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--surface);
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(29, 26, 23, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: "Marcellus", Georgia, serif;
  font-size: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.brand-text span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav > a:not(.btn):hover,
.site-nav > a.active {
  color: var(--ink);
  border-bottom-color: var(--tan);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

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

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

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

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(246, 242, 234, 0.7);
}

.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 13px;
}

.btn-nav {
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 18, 15, 0.92) 0%, rgba(20, 18, 15, 0.62) 48%, rgba(20, 18, 15, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 720px;
}

.hero-eyebrow,
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--rust);
  margin: 0 0 10px;
}

.hero-content .hero-eyebrow {
  color: #d9b18a;
}

.hero-content h1 {
  font-size: clamp(44px, 7vw, 76px);
  margin: 0 0 16px;
}

.hero-content p {
  font-size: 18px;
  max-width: 560px;
  color: rgba(246, 242, 234, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
}

.stat {
  background: var(--surface);
  padding: 22px 18px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Marcellus", Georgia, serif;
  font-size: 22px;
  color: var(--green);
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

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

.section-head h2 {
  font-size: 34px;
}

.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-compact {
  padding: 56px 0 44px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: var(--rust);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  padding: 28px 0 20px;
}

.search-field {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
}

.search-field input:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-chip:hover {
  border-color: var(--tan);
  color: var(--ink);
}

.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.result-count {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  padding-bottom: 72px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #c9bfae;
}

.product-media {
  display: block;
  aspect-ratio: 4 / 5;
  background: #e9e3d8;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  flex: 1;
}

.product-category {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rust);
  background: #f3eadc;
  border-radius: 4px;
  padding: 3px 8px;
}

.product-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 40px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a:hover {
  color: var(--rust);
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  padding-top: 48px;
  padding-bottom: 24px;
}

.detail-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e9e3d8;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info h2 {
  font-size: 30px;
  margin: 12px 0 14px;
}

.detail-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.detail-price span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
}

.detail-price strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 36px;
  color: var(--green);
}

.detail-desc {
  color: var(--muted);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.detail-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.detail-meta li {
  padding-left: 18px;
  position: relative;
}

.detail-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tan);
}

.spec-section {
  padding: 24px 0 80px;
}

.spec-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--surface);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 220px;
  color: var(--muted);
  font-weight: 600;
  background: var(--paper);
}

.spec-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.about-band {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
}

.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-band h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.about-band p {
  color: rgba(246, 242, 234, 0.78);
}

.about-band .btn {
  margin-top: 10px;
}

.about-band-points {
  display: grid;
  gap: 14px;
}

.point {
  border-left: 3px solid var(--tan);
  background: rgba(246, 242, 234, 0.06);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.point strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.point span {
  font-size: 14px;
  color: rgba(246, 242, 234, 0.72);
}

.contact-cta {
  padding-top: 24px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  color: var(--paper);
  padding: 44px;
  border-radius: var(--radius);
}

.cta-card h2 {
  font-size: 30px;
}

.cta-card p {
  color: rgba(246, 242, 234, 0.78);
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.about-points-list .point {
  background: var(--paper);
  border-left-color: var(--green);
}

.about-points-list .point strong {
  color: var(--ink);
}

.about-points-list .point span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 20px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

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

.contact-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.contact-card:hover {
  border-color: var(--tan);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: "Marcellus", Georgia, serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card h2 {
  font-size: 22px;
}

.contact-card p {
  color: var(--muted);
  margin: 0 0 10px;
}

.contact-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--rust);
}

.inquiry-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.inquiry-panel h2 {
  font-size: 30px;
}

.inquiry-panel p {
  color: var(--muted);
  max-width: 640px;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  padding: 56px 0 26px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 34px;
}

.brand-footer {
  color: var(--paper);
}

.brand-footer .brand-mark {
  background: var(--paper);
  color: var(--ink);
}

.brand-footer .brand-text span {
  color: var(--footer-text);
}

.footer-brand-col p {
  color: rgba(203, 196, 184, 0.75);
  font-size: 14px;
  margin: 14px 0 0;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  color: rgba(203, 196, 184, 0.85);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bottom {
  border-top: 1px solid rgba(203, 196, 184, 0.16);
  padding-top: 22px;
  font-size: 13px;
  color: rgba(203, 196, 184, 0.65);
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.btn) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    border-left: 2px solid transparent;
  }

  .site-nav > a.active {
    border-left-color: var(--tan);
    border-bottom-color: var(--line);
  }

  .site-nav .btn {
    margin-top: 12px;
  }

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

  .about-band-inner,
  .two-col,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 64vh;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-title {
    font-size: 13px;
    min-height: 36px;
  }

  .product-price {
    font-size: 15px;
  }

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

  .steps {
    grid-template-columns: 1fr;
  }

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

  .cta-card {
    padding: 28px;
  }

  .inquiry-panel {
    padding: 28px;
  }

  .result-count {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
