:root {
  --brand-primary: #174d3b;
  --brand-primary-dark: #0f3a2d;
  --brand-secondary: #245e49;
  --brand-sage: #849586;
  --brand-accent: #c6a36a;
  --brand-blush: #d7aaa3;
  --brand-background: #f8f5ee;
  --brand-surface: #ffffff;
  --brand-surface-warm: #efe7da;
  --brand-text: #33342f;
  --brand-muted: #68685f;
  --brand-border: rgba(23, 77, 59, 0.16);
  --shadow-soft: 0 18px 55px rgba(23, 77, 59, 0.12);
  --shadow-card: 0 12px 32px rgba(23, 77, 59, 0.1);
  --radius: 8px;
  --radius-soft: 18px;
  --container: 1180px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(215, 170, 163, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--brand-background) 100%);
  color: var(--brand-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(198, 163, 106, 0.82);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.topbar {
  border-bottom: 1px solid rgba(198, 163, 106, 0.28);
  background: rgba(248, 245, 238, 0.92);
  color: var(--brand-muted);
  font-size: 0.84rem;
}

.topbar__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar li {
  position: relative;
  white-space: nowrap;
}

.topbar li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(132, 149, 134, 0.36);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 77, 59, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--brand-primary);
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(198, 163, 106, 0.5);
  border-radius: 50%;
  color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.62);
}

.brand__mark svg {
  width: 38px;
  height: 38px;
}

.brand strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.42rem, 2vw, 1.82rem);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--brand-accent);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #1e332b;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--brand-accent);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--brand-primary);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 77, 59, 0.2);
}

.btn--primary:hover {
  background: var(--brand-primary-dark);
}

.btn--ghost,
.btn--outline {
  border-color: rgba(198, 163, 106, 0.7);
  background: rgba(255, 255, 255, 0.58);
  color: var(--brand-primary);
}

.btn--light {
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.hero {
  position: relative;
  min-height: clamp(620px, 74vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 163, 106, 0.18);
  background:
    linear-gradient(90deg, rgba(248, 245, 238, 0.72) 0%, rgba(248, 245, 238, 0.96) 33%, rgba(248, 245, 238, 0.2) 72%),
    url("../img/hero-floral.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(0deg, var(--brand-background), transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__content {
  width: min(570px, 100%);
  margin-left: clamp(0px, 21vw, 286px);
  padding-block: 62px;
}

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

.hero h1,
.section h2,
.testimonials h2,
.final-cta h2,
.product-intro h2,
.site-footer h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero__lead {
  max-width: 510px;
  margin: 22px 0 0;
  color: var(--brand-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.ornament {
  display: flex;
  width: 170px;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--brand-accent);
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.48;
}

.ornament span {
  width: 28px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  border: 1px solid rgba(198, 163, 106, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #315344;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(198, 163, 106, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 77, 59, 0.06);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-strip article {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  border-right: 1px solid rgba(198, 163, 106, 0.24);
}

.trust-strip article:last-child {
  border-right: 0;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid rgba(198, 163, 106, 0.5);
  border-radius: 50%;
  color: var(--brand-primary);
  background: rgba(248, 245, 238, 0.72);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
}

.trust-strip h2,
.trust-strip p {
  margin: 0;
}

.trust-strip h2 {
  color: var(--brand-primary-dark);
  font-size: 0.95rem;
}

.trust-strip p {
  margin-top: 4px;
  color: var(--brand-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(58px, 7vw, 96px);
}

.section--soft {
  background:
    radial-gradient(circle at right top, rgba(215, 170, 163, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(239, 231, 218, 0.5), rgba(248, 245, 238, 0.62));
}

.section-heading {
  max-width: 580px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .ornament {
  margin-inline: auto;
}

.section h2,
.testimonials h2,
.final-cta h2,
.product-intro h2 {
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

.section-heading p,
.product-intro p,
.personalization p,
.business p,
.about p,
.final-cta p,
.delivery p {
  color: var(--brand-muted);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  border: 1px solid rgba(198, 163, 106, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 163, 106, 0.45);
  box-shadow: var(--shadow-soft);
}

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

.category-card span,
.category-card small {
  display: block;
  padding-inline: 16px;
}

.category-card span {
  margin-top: 13px;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.08;
}

.category-card small {
  margin-top: 5px;
  color: var(--brand-muted);
  font-size: 0.8rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

.product-intro {
  position: sticky;
  top: 118px;
  padding-top: 10px;
}

.product-intro h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 163, 106, 0.22);
  border-radius: var(--radius);
  background: var(--brand-surface);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.product-card.is-dimmed {
  opacity: 0.32;
}

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

.demo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(23, 77, 59, 0.9);
  color: #fff;
  padding: 5px 9px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__body {
  padding: 18px;
}

.product-card h3 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1.05;
}

.product-card p {
  min-height: 68px;
  margin: 10px 0;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.product-card strong {
  display: block;
  color: #6d5529;
}

.product-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-primary);
  font-weight: 800;
}

.chooser {
  background:
    linear-gradient(135deg, rgba(23, 77, 59, 0.96), rgba(15, 58, 45, 0.98)),
    url("../img/hero-floral.png") center / cover no-repeat;
  color: #fff;
}

.chooser .section-heading h2,
.chooser .eyebrow,
.chooser .section-heading p {
  color: #fff;
}

.chooser__inner {
  display: grid;
  grid-template-columns: minmax(250px, 420px) 1fr auto;
  gap: 28px;
  align-items: center;
}

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

.chooser__options button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 14px;
  font-weight: 700;
}

.chooser__options button.is-active {
  background: #fff;
  color: var(--brand-primary);
}

.chooser__status {
  grid-column: 2 / 3;
  margin: -14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.personalization__grid,
.delivery__grid,
.business__grid,
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.detail-list,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list span,
.feature-list li {
  border: 1px solid rgba(198, 163, 106, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-primary);
  padding: 14px 16px;
  font-weight: 800;
}

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

.process__steps article {
  position: relative;
  border: 1px solid rgba(198, 163, 106, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 26px 20px;
  text-align: center;
}

.process__steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 800;
}

.process__steps h3 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 1.55rem;
}

.process__steps p {
  margin: 10px 0 0;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.delivery-check {
  border: 1px solid rgba(198, 163, 106, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.delivery-check label {
  display: block;
  color: var(--brand-primary);
  font-weight: 800;
}

.delivery-check div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.delivery-check input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand-text);
  padding: 0 14px;
}

.delivery-check__result {
  min-height: 32px;
  margin: 14px 0 0;
  color: var(--brand-muted);
}

.testimonials {
  padding-block: clamp(48px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(23, 77, 59, 0.97), rgba(15, 58, 45, 0.96)),
    url("../img/hero-floral.png") center / cover no-repeat;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.testimonials h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.testimonial-card {
  min-height: 176px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  padding: 24px;
}

.testimonial-card strong {
  display: block;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 1.4rem;
  line-height: 1.1;
}

.testimonial-card p {
  margin: 10px 0 0;
  color: var(--brand-muted);
}

.business__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.about__grid {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.about img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: left center;
  box-shadow: var(--shadow-soft);
}

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about__values span {
  border: 1px solid rgba(198, 163, 106, 0.34);
  border-radius: 999px;
  background: rgba(239, 231, 218, 0.55);
  color: var(--brand-primary);
  padding: 8px 13px;
  font-weight: 800;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
}

.faq__items {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(198, 163, 106, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 0 18px;
}

.faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  color: var(--brand-primary);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brand-accent);
  font-size: 1.5rem;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 0;
  padding-bottom: 18px;
  color: var(--brand-muted);
}

.final-cta {
  padding-block: clamp(58px, 7vw, 90px);
  background:
    linear-gradient(135deg, rgba(23, 77, 59, 0.96), rgba(15, 58, 45, 0.98)),
    url("../img/hero-floral.png") right center / cover no-repeat;
  color: #fff;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.final-cta h2,
.final-cta .eyebrow,
.final-cta p {
  color: #fff;
}

.final-cta p {
  max-width: 640px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  background: var(--brand-primary-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
}

.brand--footer {
  color: #fff;
}

.footer__brand p {
  max-width: 360px;
}

.site-footer h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.site-footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 20px;
  font-size: 0.76rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  max-width: 670px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 77, 59, 0.32);
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-notice,
.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(198, 163, 106, 0.36);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.contact-notice strong {
  color: var(--brand-primary);
}

.contact-notice p,
.cookie-banner p {
  margin: 6px 0 12px;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.contact-notice button {
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  font-weight: 800;
}

.cookie-banner {
  left: 18px;
  right: auto;
  bottom: 18px;
}

.cookie-banner .btn {
  min-height: 38px;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

@media (max-width: 1120px) {
  .header__cta {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
  }

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

@media (max-width: 920px) {
  .topbar__inner,
  .topbar ul {
    flex-wrap: wrap;
  }

  .topbar__inner {
    padding-block: 9px;
  }

  .header__inner {
    min-height: 76px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 4px;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 10px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(248, 245, 238, 0.92), rgba(248, 245, 238, 0.74)),
      url("../img/hero-floral.png") center / cover no-repeat;
  }

  .hero__content {
    margin-left: 0;
    padding-top: 92px;
  }

  .trust-strip__grid,
  .category-grid,
  .process__steps,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip article:nth-child(2n) {
    border-right: 0;
  }

  .product-layout,
  .chooser__inner,
  .personalization__grid,
  .delivery__grid,
  .business__grid,
  .about__grid,
  .faq__grid,
  .testimonials__grid,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .product-intro {
    position: static;
  }

  .chooser__status {
    grid-column: auto;
    margin: 0;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar ul {
    gap: 10px 18px;
  }

  .topbar li {
    white-space: normal;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.36rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.15rem);
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-strip__grid,
  .category-grid,
  .product-grid,
  .process__steps,
  .detail-list,
  .feature-list,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(198, 163, 106, 0.18);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .delivery-check div {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
