:root {
  --bg: #F6F1EA;
  --surface: #FFFAF6;
  --surface-soft: #EFE6DD;
  --surface-strong: #F1E6DB;
  --accent: #C9A27E;
  --accent-deep: #B48C68;
  --accent-soft: #EAD7C5;
  --chocolate: #4A3427;
  --text: #3C2A21;
  --text-muted: #6B574B;
  --white: #FFFDF9;
  --border: rgba(74, 52, 39, 0.12);
  --shadow-soft: 0 18px 50px rgba(74, 52, 39, 0.08);
  --shadow-card: 0 20px 40px rgba(74, 52, 39, 0.08);
  --shadow-hover: 0 24px 48px rgba(74, 52, 39, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --header-height: 88px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 126, 0.16), transparent 28%),
    radial-gradient(circle at right 10% top 18%, rgba(239, 230, 221, 0.85), transparent 22%),
    linear-gradient(180deg, #F6F1EA 0%, #FFFAF6 50%, #F6F1EA 100%);
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid rgba(201, 162, 126, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--chocolate);
  color: var(--white);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.9), rgba(255, 250, 246, 0.65));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.section-actions--double {
  flex-wrap: wrap;
  gap: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--chocolate);
  font-size: 0.95rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(74, 52, 39, 0.32);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--chocolate);
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p {
  margin: 0;
  color: var(--text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(180, 140, 104, 0.24);
}

.button-primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 20px 36px rgba(180, 140, 104, 0.3);
}

.button-secondary {
  background: var(--surface-strong);
  color: var(--chocolate);
  border-color: rgba(74, 52, 39, 0.08);
}

.button-secondary:hover,
.button-tertiary:hover {
  background: #eadacc;
}

.button-tertiary {
  min-height: 48px;
  padding-inline: 18px;
  background: var(--surface-strong);
  color: var(--chocolate);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  background: rgba(246, 241, 234, 0.82);
  border-bottom: 1px solid rgba(74, 52, 39, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: calc(var(--header-height) - 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  padding: 3px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-title {
  color: var(--chocolate);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a:not(.button) {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button).is-active {
  background: rgba(255, 255, 255, 0.7);
  color: var(--chocolate);
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(74, 52, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 250, 246, 0.82);
  color: var(--chocolate);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  padding-top: clamp(32px, 6vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 18px 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 246, 0.82);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 500;
}

.hero-visual {
  min-width: 0;
}

.hero-frame {
  position: relative;
  padding: 20px;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.94), rgba(239, 230, 221, 0.68));
  box-shadow: var(--shadow-card);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: auto auto 24px -22px;
  width: 110px;
  height: 110px;
  border-radius: 34px;
  z-index: 0;
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  aspect-ratio: 5 / 6;
  background: var(--surface-soft);
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  max-width: 240px;
  padding: 16px 18px;
  border: 1px solid rgba(74, 52, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--chocolate);
}

.hero-badge span {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-badge-top {
  top: 42px;
  left: -22px;
}

.hero-badge-bottom {
  right: -18px;
  bottom: 26px;
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.03);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.product-card__body p {
  flex-grow: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 126, 0.14);
  color: var(--chocolate);
  font-size: 0.88rem;
  font-weight: 600;
}

.price {
  color: var(--chocolate);
  font-size: 1.08rem;
}

/* Menu */
.menu-stack {
  display: grid;
  gap: 28px;
}

.menu-section {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 36px;
  background: rgba(255, 250, 246, 0.86);
  box-shadow: var(--shadow-card);
}

.menu-section--accent {
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.95), rgba(239, 230, 221, 0.72));
}

.menu-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.menu-section__copy {
  max-width: 668px;
}

.menu-section__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 126, 0.14);
  color: var(--chocolate);
  font-size: 0.88rem;
  font-weight: 700;
}

.menu-section__title {
  margin-bottom: 10px;
}

.menu-section__note {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(74, 52, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--chocolate);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(201, 162, 126, 0.14);
  color: var(--chocolate);
}

/* About */
.about-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 36px;
  background: rgba(255, 250, 246, 0.92);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.about-card__media {
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 4 / 5;
  background: var(--surface-soft);
}

.about-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card__content {
  display: grid;
  gap: 16px;
}

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

.step-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 126, 0.14);
  color: var(--chocolate);
  font-size: 0.95rem;
  font-weight: 700;
}

/* Trust */
.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 38px);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.95), rgba(239, 230, 221, 0.76));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.trust-panel__body {
  display: grid;
  gap: 20px;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 500;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 42%, transparent 44%);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 126, 0.3);
}

.trust-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(201, 162, 126, 0.16);
  color: var(--chocolate);
}

.trust-button {
  white-space: nowrap;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 162, 126, 0.28);
}

.contact-card__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(201, 162, 126, 0.14);
  color: var(--chocolate);
}

.contact-card__label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-card__value {
  color: var(--chocolate);
  font-size: 1.16rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 24px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 52, 39, 0.08);
}

.footer-inner p {
  color: var(--text-muted);
}

/* Floating CTA */
.floating-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--chocolate);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(74, 52, 39, 0.26);
}

.floating-order svg {
  width: 22px;
  height: 22px;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-points,
  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-button {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 80px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(74, 52, 39, 0.08);
    border-radius: 24px;
    background: rgba(255, 250, 246, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.button),
  .nav-cta {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .hero-grid,
  .about-card,
  .steps-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    margin-top: 10px;
  }

  .hero-badge-top {
    top: 18px;
    left: 18px;
  }

  .hero-badge-bottom {
    right: 18px;
    bottom: 18px;
  }

  .products-grid--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

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

  .section {
    padding: 68px 0;
  }

  .hero-points,
  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-section {
    padding: 22px 18px;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-inner {
    flex-direction: column;
  }

  .floating-order {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .brand-subtitle {
    font-size: 0.82rem;
  }

  .hero-frame {
    padding: 14px;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .about-card,
  .trust-panel {
    padding: 22px 18px;
  }

  .product-card__body,
  .feature-card,
  .step-card,
  .contact-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
