:root {
  --ink: #111111;
  --muted: #5f5f5f;
  --paper: #fffdf9;
  --surface: #ffffff;
  --line: #e9e2da;
  --pink: #e4007f;
  --blue: #00a6c8;
  --yellow: #f9b233;
  --gray: #d4d4d4;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(233, 226, 218, 0.9);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(160px, 20vw, 235px);
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(36px, 7vw, 92px) clamp(18px, 5vw, 72px) 44px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.catalog-section p,
.final-cta p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  margin-top: 10px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 12px 26px rgba(228, 0, 127, 0.2);
}

.button-primary:hover {
  background: #c90070;
}

.button-outline {
  margin-top: 10px;
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--yellow);
}

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

.button-secondary {
  width: 100%;
  color: var(--ink);
  background: #f4ebe5;
  border-color: var(--line);
}

.button-secondary:hover {
  background: #eadfd7;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.category-block + .category-block {
  margin-top: 48px;
}

.category-block > h3 {
  display: inline-flex;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(38, 33, 31, 0.06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #efe5de;
}

.product-card > div {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 18px;
}

.product-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.product-card .button {
  margin-top: auto;
}

.product-category {
  margin-bottom: 8px;
  color: var(--blue) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  text-transform: uppercase;
}

.process-section {
  background: #f6f7f7;
}

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

.steps article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 166, 200, 0.22);
  border-radius: 8px;
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 700;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.catalog-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(36px, 5vw, 60px);
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 166, 200, 0.14), rgba(228, 0, 127, 0.12)),
    #fff;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-highlight-copy {
  max-width: 790px;
}

.catalog-highlight h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.catalog-highlight p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.catalog-highlight .button {
  flex: 0 0 auto;
  min-width: 230px;
}

.catalog-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.catalog-section .eyebrow,
.catalog-section p {
  color: #f7f7f7;
}

.catalog-section .button-primary {
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
  text-align: center;
  background: linear-gradient(90deg, rgba(249, 178, 51, 0.24), rgba(0, 166, 200, 0.16));
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media img {
    max-height: 560px;
  }

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

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

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    padding-top: 32px;
  }

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

  .product-card > div {
    min-height: auto;
  }

  .catalog-section,
  .catalog-highlight,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-section .button,
  .catalog-highlight .button {
    width: 100%;
  }
}
