@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  src: url("/cloud-fonts/inter-f11d729b.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  src: url("/cloud-fonts/inter-daeff530.woff2") format("woff2");
}

:root {
  --bg: #f7f7f2;
  --surface: #ffffff;
  --surface-2: #eceee6;
  --text: #161a17;
  --muted: #667064;
  --line: #dfe3d8;
  --accent: #667a3d;
  --accent-dark: #3f4f27;
  --dark: #182018;
  --dark-2: #222b20;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.serif,
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

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

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--line);
  background: var(--bg);
}

.menu-button {
  display: none;
}

.mobile-menu {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px 20px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.mobile-menu.open {
  display: block;
}

.page {
  min-height: 100vh;
  padding-top: 64px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

.section-copy {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.hero {
  min-height: calc(100vh - 64px);
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: calc(100vh - 64px);
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 36px;
  padding: 72px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-slide.active {
  display: grid;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
}

.hero p {
  max-width: 520px;
  color: #c8d0c1;
  font-size: 16px;
}

.hero-media {
  min-height: 420px;
  background: radial-gradient(circle at 50% 40%, #36412e, #20291f 52%, #111711);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media img {
  width: min(86%, 560px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.35));
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  border-color: var(--white);
  color: var(--text);
}

.section {
  padding: 84px 0;
}

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

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

.product-card {
  display: block;
}

.product-image {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

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

.product-meta {
  padding-top: 14px;
}

.product-category {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-name {
  margin: 5px 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.product-price {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.story-band {
  background: var(--dark);
  color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
}

.story-image {
  background: #26301f;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-image img {
  width: 86%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.38));
}

.story-copy {
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy p {
  color: #c8d0c1;
}

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

.info-card,
.capability-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
}

.info-card h3,
.capability-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.info-card p,
.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.subscribe {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.subscribe form {
  max-width: 560px;
  margin: 26px auto 0;
  display: flex;
  border: 1px solid #43503e;
}

.subscribe input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 16px;
  outline: 0;
}

.subscribe button {
  border: 0;
  background: var(--white);
  color: var(--text);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.status {
  min-height: 22px;
  color: #c8d0c1;
  font-size: 13px;
}

.page-hero {
  padding: 70px 0 38px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: start;
}

.detail-main-image {
  background: var(--surface-2);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.detail-main-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumbs button {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  padding: 4px;
}

.thumbs button.active {
  border-color: var(--accent);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.detail-price {
  font-size: 22px;
  font-weight: 750;
  margin: 22px 0;
}

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

.spec-list {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 22px;
}

.spec-list li {
  margin: 10px 0;
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.about-panel,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  outline: 0;
}

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

.site-footer {
  background: var(--dark);
  color: #aeb8aa;
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: #aeb8aa;
  font-size: 13px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid #2b3529;
  padding-top: 22px;
  color: #74806f;
  font-size: 12px;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 14, 10, 0.72);
  display: grid;
  place-items: start center;
  padding: 92px 20px 20px;
}

.search-modal[hidden] {
  display: none;
}

.search-dialog {
  width: min(820px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
}

.search-bar {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.search-bar input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 20px;
}

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

.search-result {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 10px;
}

.search-result img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: var(--surface-2);
}

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

  .menu-button {
    display: inline-grid;
  }

  .hero-slide,
  .story-grid,
  .detail-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .info-grid,
  .capability-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-copy {
    padding: 42px 24px;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-slide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-grid,
  .info-grid,
  .capability-grid,
  .footer-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .subscribe form {
    flex-direction: column;
  }

  .subscribe button {
    min-height: 46px;
  }
}
