
:root {
  --bg: #f7f5ef;
  --bg-alt: #ffffff;
  --bg-soft: #eef2ee;
  --ink: #2f3c3d;
  --muted: #5b6b6c;
  --line: #d9ddd6;
  --teal: #547473;
  --teal-deep: #3f5f61;
  --orange: #f58634;
  --gold: #f3cb57;
  --purple: #7f79b7;
  --shadow: 0 18px 40px rgba(39, 53, 54, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid rgba(84, 116, 115, 0.12);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  padding: 0.8rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.brand img.logo-lockup {
  height: clamp(38px, 5vw, 54px);
  width: auto;
}
.brand img.logo-mark {
  width: 44px;
  height: 44px;
}
.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}
.nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
}
.nav a:hover, .nav a.active {
  background: rgba(84, 116, 115, 0.08);
  text-decoration: none;
}
.hero {
  padding: 4.5rem 0 2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  display: grid;
  gap: 1.25rem;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.kicker::before {
  content: "";
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.tagline {
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.3rem;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 12ch;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero-cta, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.button-primary {
  color: white;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  box-shadow: 0 12px 24px rgba(63, 95, 97, 0.18);
}
.button-secondary {
  color: var(--ink);
  border-color: rgba(84, 116, 115, 0.18);
  background: rgba(255,255,255,0.8);
}
.hero-media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e9ece6;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.notice-strip {
  margin-top: 1.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(84, 116, 115, 0.14);
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}
.section {
  padding: 2.5rem 0 4rem;
}
.section-tight { padding-top: 1rem; }
.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.section-eyebrow {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--teal);
}
.grid {
  display: grid;
  gap: 1.2rem;
}
.quick-facts {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.fact-card, .card, .panel, .download-card, .faq-card {
  background: var(--bg-alt);
  border: 1px solid rgba(84, 116, 115, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fact-card {
  padding: 1.25rem;
}
.fact-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.fact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.family-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.family-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
}
.family-card .media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #edf0ea;
}
.family-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-card .body {
  padding: 1.2rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.8rem;
}
.family-card p {
  margin: 0;
  color: var(--muted);
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pill, .mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  background: rgba(84, 116, 115, 0.08);
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 700;
}
.mini-pill {
  padding: 0.32rem 0.6rem;
  font-size: 0.8rem;
}
.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.panel {
  padding: 1.25rem 1.3rem;
}
.panel ul, .card ul {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
}
.panel li, .card li { margin: 0.3rem 0; }
.icon-row {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
}
.icon-row img {
  width: min(300px, 100%);
  justify-self: center;
  margin-inline: auto;
}
.page-hero {
  padding: 3rem 0 1.5rem;
}
.page-hero-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,242,238,0.9));
  border-radius: 30px;
  border: 1px solid rgba(84, 116, 115, 0.12);
  box-shadow: var(--shadow);
}
.page-hero-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}
.page-hero-media {
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: #edf0ea;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breadcrumbs {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.breadcrumbs a {
  color: var(--teal);
}
.highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.highlight-card {
  padding: 1.1rem 1.15rem;
}
.highlight-card strong {
  display: block;
  margin-bottom: 0.3rem;
}
.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}
.product-card .thumb {
  border-radius: 18px;
  overflow: hidden;
  background: #f0f2ee;
  aspect-ratio: 1 / 1;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.product-card h3 {
  font-size: 1.2rem;
}
.product-card p {
  margin: 0;
  color: var(--muted);
}
.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid rgba(84, 116, 115, 0.12);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th, td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(84, 116, 115, 0.10);
  text-align: left;
  vertical-align: top;
}
th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(84, 116, 115, 0.05);
}
tbody tr:last-child td {
  border-bottom: none;
}
td .mini-pill { margin-right: 0.3rem; margin-bottom: 0.3rem; }
.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-grid .shot {
  border-radius: 20px;
  overflow: hidden;
  background: #f0f2ee;
  box-shadow: var(--shadow);
}
.gallery-grid .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.faq-grid {
  display: grid;
  gap: 1rem;
}
details.faq {
  background: var(--bg-alt);
  border: 1px solid rgba(84, 116, 115, 0.12);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
details.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}
.download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.download-card {
  padding: 1.2rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.85rem;
}
.download-card p {
  margin: 0;
  color: var(--muted);
}
.inline-note {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(84, 116, 115, 0.07);
  border: 1px solid rgba(84, 116, 115, 0.12);
  color: var(--muted);
}
.callout {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(84, 116, 115, 0.08), rgba(245, 134, 52, 0.08));
  border: 1px solid rgba(84, 116, 115, 0.12);
}
.card {
  padding: 1.2rem;
}
.card p { margin: 0.4rem 0 0; color: var(--muted); }
.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(84, 116, 115, 0.12);
}
.footer-inner {
  display: grid;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}
.small {
  font-size: 0.95rem;
  color: var(--muted);
}
.centered { text-align: center; }
.two-col-auto {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}

@media (max-width: 1080px) {
  .quick-facts, .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .family-grid, .product-grid, .download-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .page-hero-card, .columns-2, .icon-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav { justify-content: flex-start; }
  .hero { padding-top: 2.6rem; }
  .quick-facts, .family-grid, .highlight-grid, .product-grid, .download-grid, .gallery-grid { grid-template-columns: 1fr; }
  .button, .nav a { width: fit-content; }
  h1 { max-width: 100%; }
}
