:root {
  --bg: #f5ede3;
  --surface: #fff8f1;
  --surface-strong: #ffffff;
  --panel-dark: #18100d;
  --panel-dark-soft: #241814;
  --text: #241612;
  --muted: #726055;
  --light-text: rgba(255, 246, 239, 0.78);
  --light-muted: rgba(255, 246, 239, 0.6);
  --line: rgba(88, 50, 29, 0.12);
  --accent: #cf7c3d;
  --accent-dark: #b26227;
  --shadow: 0 24px 60px rgba(80, 48, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(223, 176, 136, 0.28), transparent 24%),
    linear-gradient(180deg, #f8f1e8 0%, #f4ebdf 100%);
}

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

.topbar {
  padding: 12px 20px;
  background: #120c09;
  color: var(--light-text);
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 44px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 36px rgba(86, 48, 28, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 248, 241, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fffaf6;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.hero-copy h1,
.section-title h2,
.split-copy h2,
.feature-copy p,
.contact-main h2,
.footer-brand strong,
.product-copy h3,
.catalog-copy h3,
.support-card h3 {
  font-family: "Playfair Display", serif;
}

.brand-copy strong {
  font-size: 1.02rem;
}

.brand-copy small,
.eyebrow {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a,
.footer-column a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.footer-column a:hover,
.text-link:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.hero-text,
.section-title p,
.split-copy p,
.feature-copy p,
.catalog-copy p,
.support-card p,
.contact-panel p,
.footer-brand p,
.footer-bottom p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff8f2;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-metrics p,
.feature-note p,
.contact-info p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-metrics strong,
.feature-note strong,
.contact-info strong {
  display: block;
  margin-bottom: 6px;
}

.hero-metrics span,
.feature-note span,
.contact-info span {
  color: var(--muted);
}

.hero-media {
  overflow: hidden;
  border-radius: 28px;
}

.hero-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section {
  padding-top: 76px;
}

.section-dark {
  margin-top: 28px;
  padding: 44px 34px;
  border-radius: 36px;
  background: var(--panel-dark);
}

.section-dark .section-title h2,
.section-dark .section-title p,
.section-dark .eyebrow,
.section-dark .product-copy h3,
.section-dark .product-copy p,
.section-dark .product-copy span,
.section-dark .catalog-copy h3,
.section-dark .catalog-copy p {
  color: var(--light-text);
}

.section-dark .eyebrow,
.site-footer .footer-column a,
.site-footer .footer-brand p,
.site-footer .footer-column h3,
.site-footer .footer-bottom p {
  color: var(--light-muted);
}

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

.section-title h2,
.split-copy h2,
.contact-main h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.product-grid,
.catalog-grid,
.support-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

.product-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel-dark-soft);
}

.product-card img {
  height: 320px;
  object-fit: cover;
}

.product-copy,
.catalog-copy {
  padding: 22px;
}

.product-copy h3,
.catalog-copy h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.product-copy span {
  color: #ffcf9f;
  font-size: 0.88rem;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.split-media img {
  min-height: 460px;
  object-fit: cover;
}

.split-copy {
  padding: 12px 0;
}

.section-light {
  padding: 44px 34px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.feature-panel,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.feature-copy p {
  margin-top: 0;
  font-size: 1.05rem;
}

.feature-note,
.contact-info {
  display: grid;
  gap: 14px;
}

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

.catalog-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--panel-dark-soft);
}

.catalog-card img {
  height: 260px;
  object-fit: cover;
}

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

.support-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(91, 54, 33, 0.08);
}

.support-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.contact-panel {
  padding: 34px;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 76px;
  padding: 40px 32px 24px;
  border-radius: 36px;
  background: var(--panel-dark);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #fff7ef;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #fff7ef;
  font-size: 1rem;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 241, 233, 0.12);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero,
  .section-split,
  .feature-panel,
  .contact-panel,
  .product-grid,
  .catalog-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 16px, 100%);
  }

  .site-header {
    gap: 14px;
    padding: 16px 18px;
    border-radius: 28px;
  }

  .site-header,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section-dark,
  .section-light,
  .contact-panel,
  .site-footer {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

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

  .hero-media img,
  .split-media img,
  .product-card img,
  .catalog-card img {
    min-height: 0;
    height: 260px;
  }

  .site-nav {
    width: 100%;
    gap: 12px;
  }
}
