:root {
  --ink: #2f2930;
  --muted: #766c73;
  --paper: #fff8f5;
  --surface: rgba(255, 255, 255, 0.78);
  --rose: #d96d8b;
  --rose-soft: #f9e1e8;
  --blush: #fff0ef;
  --sage: #9abf9b;
  --sage-soft: #edf6ed;
  --aqua: #9bd6dd;
  --aqua-soft: #edf9fa;
  --champagne: #d7b56d;
  --line: rgba(47, 41, 48, 0.12);
  --shadow: 0 22px 60px rgba(80, 51, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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;
  gap: 22px;
  padding: 17px clamp(18px, 4vw, 58px);
  background: rgba(255, 248, 245, 0.62);
  border-bottom: 1px solid rgba(47, 41, 48, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
  width: 148px;
}

.brand img {
  display: block;
  width: 148px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(80, 51, 66, 0.12));
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  color: rgba(47, 41, 48, 0.68);
}

nav a:hover,
nav a:focus-visible {
  color: var(--rose);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #fff8f5;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82) saturate(0.96);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 245, 0.96), rgba(255, 248, 245, 0.72) 40%, rgba(255, 248, 245, 0.2) 72%),
    linear-gradient(0deg, rgba(255, 248, 245, 0.96), rgba(255, 248, 245, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 36px));
  margin: 0 0 10vh clamp(18px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(4.4rem, 11vw, 8.4rem);
  line-height: 0.9;
  font-weight: 700;
}

.hero-wordmark {
  display: block;
  position: relative;
  z-index: 3;
  width: min(650px, 92vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 26px rgba(80, 51, 66, 0.12));
}

h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  color: #5c5359;
  font-size: 1.12rem;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(47, 41, 48, 0.12);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(80, 51, 66, 0.1);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-title {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-title.compact {
  margin-bottom: 26px;
}

.intro-grid,
.product-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.product-card,
.resource-grid article,
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.intro-grid article,
.product-card,
.resource-grid article {
  padding: 28px;
}

.tag,
.product-type {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #8b4960;
  background: rgba(217, 109, 139, 0.12);
  font-weight: 800;
  font-size: 0.76rem;
}

.tag {
  margin-bottom: 22px;
}

.product-element {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: center;
}

.product-element img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 240, 239, 0.7), rgba(255, 248, 245, 1));
}

.product-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.product-card > *:not(.product-bg) {
  position: relative;
  z-index: 1;
}

.product-bg {
  position: absolute;
  right: -30px;
  bottom: -34px;
  z-index: 0;
  width: 230px;
  max-width: 58%;
  opacity: 0.2;
  filter: blur(6px) saturate(0.9);
  pointer-events: none;
}

.product-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  margin-bottom: 26px;
}

.product-card h3 {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.08;
  margin: 0;
  align-self: center;
  transform: translateY(-1px);
}

.product-card strong {
  margin-top: auto;
  color: var(--ink);
}

.sage-card {
  background:
    linear-gradient(180deg, rgba(237, 246, 237, 0.78), rgba(255, 255, 255, 0.78));
  backdrop-filter: blur(14px);
}

.rose-card {
  background: linear-gradient(180deg, var(--rose-soft), rgba(255, 255, 255, 0.9));
}

.aqua-card {
  background: linear-gradient(180deg, var(--aqua-soft), rgba(255, 255, 255, 0.9));
}

.quality {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  text-align: center;
  background: #f7eee9;
}

.quality-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.quality-badge-list {
  width: min(760px, 100%);
  display: grid;
  gap: 20px;
}

.quality-badge-row {
  width: 100%;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(47, 41, 48, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 42px rgba(80, 51, 66, 0.08);
  text-align: left;
}

.quality-badge-row img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(80, 51, 66, 0.14));
}

.quality-badge-row h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
}

.quality-badge-row p {
  margin: 0;
  color: #6c6269;
  font-weight: 600;
  line-height: 1.45;
}

.responsibility {
  background: #fff;
}

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

.responsibility-grid article,
.pillar-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quality-pillars {
  background:
    linear-gradient(180deg, rgba(237, 246, 237, 0.75), rgba(255, 248, 245, 1));
}

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

.pillar-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.04rem;
}

.pillar-list p {
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: #6f4b58;
  background: #fff0ef;
  font-size: 0.86rem;
}

td {
  color: #51484f;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.resources {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  background: #fff;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 24px;
}

.step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  font-weight: 800;
}

.plan-card {
  margin-top: 18px;
  padding: 30px;
  border-radius: 22px;
  background: #3c3139;
  box-shadow: var(--shadow);
}

.plan-card h3,
.plan-card strong {
  color: #fff;
}

.plan-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.plan-metrics p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #3c3139;
}

footer p,
footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 248, 245, 0.98), rgba(255, 248, 245, 0.34)),
      linear-gradient(90deg, rgba(255, 248, 245, 0.96), rgba(255, 248, 245, 0.2));
  }

  .intro-grid,
  .product-grid,
  .responsibility-grid,
  .pillar-list,
  .resources,
  .resource-grid,
  .timeline,
  .plan-metrics {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 0 auto 48px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .section {
    padding: 58px 18px;
  }

  .hero {
    min-height: 700px;
  }

  .button {
    width: 100%;
  }

  .quality-badge-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer {
    flex-direction: column;
  }
}
