:root {
  --ink: #254252;
  --muted: #5c7179;
  --sky: #68b7c9;
  --coral: #f47765;
  --sun: #f5c44f;
  --mint: #8ed6b0;
  --cream: #fff9f0;
  --paper: #ffffff;
  --line: #d9e6e7;
  --shadow: 0 18px 45px rgba(37, 66, 82, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 240, 0.94);
  border-bottom: 1px solid rgba(37, 66, 82, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 340px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.pill-link {
  padding: 11px 17px;
  background: var(--ink);
  color: white;
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(37, 66, 82, 0.12);
}

.hero-copy {
  padding: clamp(42px, 7vw, 92px) clamp(24px, 6vw, 86px);
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 72px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 56px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lede {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 850;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-rail {
  position: relative;
  display: block;
  min-height: 640px;
  padding: clamp(22px, 3vw, 42px);
  background: #e5f4f2;
  overflow: hidden;
}

.rail-label {
  position: absolute;
  left: clamp(22px, 3vw, 42px);
  top: clamp(22px, 3vw, 42px);
  z-index: 2;
  writing-mode: initial;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}

.hero-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 10px solid white;
  background: white;
  box-shadow: 0 20px 45px rgba(37, 66, 82, 0.16);
}

.hero-tile:first-child {
  grid-row: span 2;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.band {
  padding: clamp(56px, 8vw, 104px) 0;
}

.inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.note-stack {
  display: grid;
  gap: 14px;
}

.note {
  padding: 18px 20px;
  border-left: 6px solid var(--sky);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(37, 66, 82, 0.08);
}

.note strong {
  display: block;
  margin-bottom: 5px;
}

.product-section {
  background: #ffffff;
}

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

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.product-card {
  background: white;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

a.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 66, 82, 0.12);
}

.product-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
}

.product-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  color: var(--ink);
  white-space: nowrap;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink);
  color: white;
}

.feature-panel {
  padding: clamp(36px, 6vw, 76px);
}

.feature-panel:nth-child(2) {
  background: var(--sun);
  color: var(--ink);
}

.feature-panel p {
  margin-top: 18px;
  max-width: 540px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 0;
  border-top: 1px solid currentColor;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 66px);
}

.contact-card {
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-lines {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.contact-lines a {
  color: var(--ink);
  font-weight: 800;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: white;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-inner a {
  color: white;
}

.privacy-main {
  padding: clamp(50px, 7vw, 90px) 0;
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(34px, 5vw, 60px);
  background: linear-gradient(90deg, #fff9f0 0%, #e5f4f2 100%);
  border-bottom: 1px solid rgba(37, 66, 82, 0.12);
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
}

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

.catalog-item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  background: white;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 66, 82, 0.08);
}

.catalog-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.catalog-copy {
  padding: 24px;
}

.catalog-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.catalog-copy h2 {
  font-size: 28px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.detail-image {
  background: white;
  padding: 14px;
  box-shadow: var(--shadow);
}

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

.detail-copy {
  display: grid;
  gap: 18px;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.privacy-doc {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.privacy-doc h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.privacy-doc section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.privacy-doc p,
.privacy-doc li {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    min-height: 520px;
  }

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

@media (max-width: 760px) {
  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 240px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--cream);
    border-bottom: 1px solid rgba(37, 66, 82, 0.12);
  }

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

  .nav-links a {
    padding: 13px 0;
  }

  .pill-link {
    text-align: center;
  }

  .hero-copy {
    padding: 44px 22px;
  }

  .hero-rail {
    min-height: auto;
    padding: 18px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-tile,
  .hero-tile:first-child {
    min-height: 245px;
    grid-row: auto;
  }

  .intro-grid,
  .contact-wrap,
  .split-feature,
  .catalog-grid,
  .catalog-item,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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