:root {
  --ink: #161412;
  --muted: #6e625b;
  --paper: #fbf8f4;
  --panel: #ffffff;
  --line: #e5ddd4;
  --rose: #b86872;
  --moss: #667658;
  --charcoal: #24211f;
  --shadow: 0 18px 60px rgba(36, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(251, 248, 244, 0.86);
  border-bottom: 1px solid rgba(229, 221, 212, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: 132px 6vw 7vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 20, 18, 0.72), rgba(22, 20, 18, 0.2) 50%, rgba(22, 20, 18, 0.05)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.app-hero-media {
  background:
    linear-gradient(90deg, rgba(18, 23, 28, 0.82), rgba(18, 23, 28, 0.52) 46%, rgba(18, 23, 28, 0.16)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #fffaf5;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c2bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 250, 245, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--rose);
}

.button.secondary {
  color: #fffaf5;
  border-color: rgba(255, 250, 245, 0.5);
}

.section {
  padding: 92px 6vw;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

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

.product-card {
  min-height: 240px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card p,
.contact-band p {
  color: var(--muted);
  line-height: 1.65;
}

.swatch {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  border-radius: 50%;
  border: 1px solid rgba(22, 20, 18, 0.12);
}

.swatch-one {
  background: var(--charcoal);
}

.swatch-two {
  background: var(--moss);
}

.swatch-three {
  background: var(--rose);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 54px;
  background: #eee7df;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(36, 33, 31, 0.18);
}

.feature-item span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 6vw 6vw;
  padding: 42px;
  color: #fffaf5;
  background: var(--charcoal);
  border-radius: 8px;
}

.contact-band .eyebrow {
  color: #dba4a1;
}

.contact-band p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 250, 245, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 6vw 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-page {
  background: #f6f1ec;
}

.policy-header {
  position: static;
}

.policy-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.policy-title {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.policy-title h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.policy-title p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-section ul {
  margin: 0;
  padding-left: 22px;
}

.policy-section strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 112px;
  }

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

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-band {
    margin: 0 20px 20px;
    padding: 28px;
  }
}
