:root {
  --bg: #f7f6f3;
  --bg-deep: #efeee9;
  --ink: #1c1b1a;
  --muted: #6a6762;
  --line: #ddd9d1;
  --accent: #3d4a52;
  --white: #ffffff;
  --max: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.site {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--ink); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; z-index: 40; }

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-list a:hover { color: var(--ink); }

.site-main { min-height: 60vh; }

.page-body > .hero:first-child { margin-top: 0; }

.hero {
  position: relative;
  min-height: min(78vh, 42rem);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 24, 0.15), rgba(20, 22, 24, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad);
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin: 0 0 0.75rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 0.85rem;
  max-width: 12ch;
}

.hero p {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn:hover { color: var(--ink); filter: brightness(0.97); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

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

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.muted { color: var(--muted); }
.lead { font-size: 1.1rem; max-width: 40rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 0.25rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-deep);
}

.card-body { padding: 1.1rem 1.15rem 1.35rem; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.price {
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}
.stat span { color: var(--muted); font-size: 0.92rem; }

.prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 0.75rem;
}
.prose p { max-width: 42rem; }
.prose ul { padding-left: 1.1rem; color: var(--muted); }

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 0.35rem;
}

.news-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.news-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.news-item:first-child {
  padding-top: 0;
}

.news-date {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.news-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.news-title a {
  color: var(--ink);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--accent);
}

.news-lead {
  margin: 0 0 0.75rem;
  max-width: 40rem;
}

.news-more {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.news-teaser .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-teaser-items {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-teaser-item {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .news-teaser-items {
    grid-template-columns: 1fr;
  }
}

.news-back {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}

.news-back a {
  color: var(--muted);
  text-decoration: none;
}

.news-back a:hover {
  color: var(--ink);
}

.news-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0.35rem 0 1rem;
}

.news-body {
  max-width: 42rem;
}

.news-body p {
  margin: 0 0 1rem;
}

.news-body p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #ebe8e2;
  padding: 2.5rem 0 1.5rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-title {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .split,
  .feature-grid,
  .catalog-grid,
  .stat-row,
  .footer-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .nav { flex-direction: column; align-items: flex-start; padding-block: 0.85rem; }
}
