:root {
  --paper: #f8f4ef;
  --paper-strong: #fffaf7;
  --surface: #fffaf7;
  --ink: #2f2938;
  --text: #352f3d;
  --muted: #5f5663;
  --line: #eadde0;
  --rose: #e8c7cf;
  --blush: #f3d8df;
  --blue: #cfe3f1;
  --serenity: #bcd3e6;
  --champagne: #d8c29a;
  --accent: #a65f72;
  --accent-dark: #934f63;
  --detail: #a88b5f;
  --accent-soft: #f7e5ea;
  --shadow: 0 18px 48px rgba(63, 58, 55, 0.1);
  --inner: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.96), rgba(248, 244, 239, 0.98)),
    var(--paper);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 247, 0.9);
  border-bottom: 1px solid rgba(232, 199, 207, 0.76);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  border-color: currentColor;
}

.header-cta,
.button,
.product-link,
.filter-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fffaf7;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 216, 223, 0.62), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(207, 227, 241, 0.7), transparent 34%),
    linear-gradient(135deg, #fffaf7 0%, #f8f4ef 45%, #f3d8df 72%, #cfe3f1 100%);
  padding: clamp(56px, 7vw, 96px) 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
}

.hero-content {
  max-width: 600px;
}

.hero-video-frame {
  justify-self: end;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 9 / 16;
  max-height: min(640px, calc(100svh - 154px));
  overflow: hidden;
  background: rgba(255, 250, 247, 0.86);
  border: 1px solid rgba(216, 194, 154, 0.72);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(47, 41, 56, 0.13);
}

.hero-video {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  object-fit: cover;
}

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

.hero .eyebrow {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 3.6vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  font-size: 1.35rem;
}

.hero-lead {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 190px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.button-primary {
  background: #a65f72;
  color: #fffaf7;
  border-color: rgba(143, 89, 102, 0.18);
}

.button-secondary {
  background: rgba(255, 250, 247, 0.78);
  color: var(--text);
  border-color: rgba(168, 139, 95, 0.55);
}

.button-primary:hover,
.header-cta:hover,
.product-link:hover {
  background: #934f63;
}

.button-secondary:hover,
.filter-button:hover {
  border-color: var(--champagne);
  background: #fff;
}

.button:hover,
.header-cta:hover,
.product-link:hover,
.filter-button:hover {
  transform: translateY(-1px);
}

.section-inner {
  width: var(--inner);
  margin: 0 auto;
}

section {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-band {
  background: var(--surface);
}

.process,
.contact {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.catalog-top p,
.contact address,
.site-footer p {
  color: var(--muted);
}

.categories,
.catalog,
.brand-showcase,
.reviews,
.faq {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.categories {
  background:
    radial-gradient(circle at 10% 15%, rgba(243, 216, 223, 0.58), transparent 32%),
    radial-gradient(circle at 92% 28%, rgba(207, 227, 241, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(243, 216, 223, 0.86), rgba(207, 227, 241, 0.72) 72%, rgba(255, 250, 247, 0.92));
}

.section-heading,
.catalog-top {
  max-width: 900px;
  margin-bottom: clamp(24px, 3.5vw, 42px);
}

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

.category-card,
.product-card,
.process-list li,
details {
  border: 1px solid rgba(232, 199, 207, 0.8);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, var(--surface));
  box-shadow: 0 12px 34px rgba(63, 46, 38, 0.08);
  overflow: hidden;
}

.category-card {
  padding: 10px;
}

.category-card picture {
  display: block;
  overflow: hidden;
  border-radius: 22px;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 300px;
  object-fit: cover;
  border-radius: 22px;
}

.category-card div {
  position: relative;
  padding: 22px;
}

.category-card div::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--blue), var(--champagne));
}

.category-card p,
.product-category {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-card h3 {
  min-height: 96px;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.category-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.catalog {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 1), rgba(248, 244, 239, 0.96)),
    var(--paper);
}

.catalog-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: none;
}

.catalog-count {
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid rgba(216, 194, 154, 0.5);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.78);
  text-align: left;
  align-self: end;
}

.catalog-count strong {
  display: inline;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1;
  color: var(--detail);
}

.catalog-count span {
  color: var(--muted);
  font-size: 0.86rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.filter-button {
  padding: 10px 17px;
  border-radius: 999px;
  border-color: rgba(188, 211, 230, 0.86);
  background: var(--surface);
  color: var(--muted);
}

.filter-button.is-active {
  background: #a65f72;
  color: #fffaf7;
  border-color: var(--accent-dark);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}

.product-card-media {
  aspect-ratio: 4 / 5;
  max-height: 340px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(243, 216, 223, 0.42), rgba(207, 227, 241, 0.3));
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card h3 {
  font-size: 1.32rem;
}

.product-card-content > p:not(.product-category) {
  color: var(--muted);
  font-size: 0.94rem;
}

.product-link {
  margin-top: auto;
  padding: 11px 16px;
  border-radius: 999px;
  background: #a65f72;
  color: #fffaf7;
  font-weight: 600;
}

.catalog-status {
  min-height: 28px;
  color: var(--muted);
}

.brand-showcase {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 216, 223, 0.42), transparent 34%),
    linear-gradient(180deg, #fffaf7, #f8f4ef);
}

.brand-showcase-inner {
  display: block;
}

.brand-showcase-media {
  display: block;
  width: 100%;
  overflow: visible;
  border: 1px solid rgba(216, 194, 154, 0.58);
  border-radius: 30px;
  background: #fffaf7;
  box-shadow: 0 22px 64px rgba(63, 46, 38, 0.1);
}

.brand-showcase-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process {
  background:
    linear-gradient(180deg, rgba(216, 194, 154, 0.26), rgba(255, 250, 247, 0.94)),
    var(--paper);
}

.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 216, 223, 0.52), transparent 34%),
    radial-gradient(circle at 88% 70%, rgba(216, 194, 154, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 247, 1), rgba(248, 244, 239, 0.96));
}

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(216, 194, 154, 0.58);
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.88);
  box-shadow: 0 12px 34px rgba(63, 46, 38, 0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(243, 216, 223, 0.95), rgba(207, 227, 241, 0.78));
  border: 1px solid rgba(216, 194, 154, 0.5);
}

.review-avatar-blue {
  background: linear-gradient(135deg, rgba(207, 227, 241, 0.94), rgba(255, 250, 247, 0.84));
}

.review-avatar-champagne {
  background: linear-gradient(135deg, rgba(216, 194, 154, 0.58), rgba(243, 216, 223, 0.72));
}

.review-avatar svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.review-stars {
  color: var(--detail);
  letter-spacing: 0;
  font-size: 0.95rem;
  margin: 4px 0 0;
}

.review-card h3 {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.reviews-link {
  margin-top: 28px;
}

.faq {
  background:
    radial-gradient(circle at 90% 20%, rgba(207, 227, 241, 0.55), transparent 32%),
    linear-gradient(180deg, rgba(207, 227, 241, 0.36), rgba(255, 250, 247, 0.98));
}

.process-list li {
  padding: 22px;
}

.process-list span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--serenity));
  color: #fff;
  font-weight: 600;
}

.process-list p,
.faq-list p {
  color: var(--muted);
}

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

details {
  padding: 0;
}

summary {
  min-height: 56px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

address {
  font-style: normal;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 24%, rgba(243, 216, 223, 0.5), transparent 32%),
    linear-gradient(135deg, #fffaf7, #f8f4ef 58%, rgba(207, 227, 241, 0.48));
  color: var(--text);
  padding: clamp(42px, 5vw, 64px) 0;
  border-top: 1px solid rgba(232, 199, 207, 0.76);
}

.footer-inner {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.75fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.footer-brand img {
  width: 142px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-cta {
  margin-top: 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 194, 154, 0.56);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.72);
  color: var(--accent-dark);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.privacy-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 600;
}

.legal-page {
  padding: 150px 0 90px;
  background: var(--surface);
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-content h2 {
  margin-top: 46px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.legal-content p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .contact-grid,
  .faq-grid,
  .catalog-top,
  .hero-layout,
  .brand-showcase-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-video-frame {
    justify-self: center;
    max-width: min(360px, 100%);
    max-height: 520px;
  }

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

  .product-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-card-media {
    width: 100%;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 980px) and (max-height: 520px) and (orientation: landscape) {
  .product-grid {
    align-items: center;
  }

  .product-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-card-media {
    max-height: none;
  }
}

@media (max-width: 720px) {
  :root {
    --inner: min(100% - 28px, 1180px);
  }

  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand img {
    width: 108px;
  }

  .header-cta {
    padding: 9px 13px;
  }

  .hero {
    padding: 96px 0 58px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 7.2vw, 3rem);
    line-height: 1.06;
  }

  .hero-lead {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-video-frame {
    max-width: 330px;
    max-height: 500px;
    justify-self: center;
    border-radius: 24px;
    padding: 8px;
  }

  .category-grid,
  .product-grid,
  .process-list,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .category-card h3 {
    min-height: 0;
  }

  .category-card img {
    aspect-ratio: 4 / 5;
    max-height: 360px;
  }

  .product-card-media {
    max-height: none;
  }

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

  .filter-button {
    width: 100%;
    padding-inline: 10px;
  }
}
