:root {
  --cream: #fff8ee;
  --cream-2: #f7ead8;
  --soft-white: #fffdf8;
  --beige: #e8d3b8;
  --gold: #b88a42;
  --gold-dark: #8f642d;
  --brown: #4f2f22;
  --brown-soft: #7b5845;
  --rose: #c98f85;
  --rose-light: #f7dfda;
  --line: rgba(79, 47, 34, 0.12);
  --shadow: 0 18px 45px rgba(79, 47, 34, 0.12);
  --shadow-soft: 0 12px 30px rgba(79, 47, 34, 0.09);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 26px 0 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(79, 47, 34, 0.08);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img,
.about-card img,
.logo-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--brown-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-menu > a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.nav-menu > a:not(.btn):hover::after,
.nav-menu > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-white);
  color: var(--brown);
  cursor: pointer;
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 14px 28px rgba(143, 100, 45, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(143, 100, 45, 0.3);
}

.btn-secondary {
  color: var(--brown);
  background: var(--soft-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 143, 133, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.85), rgba(255, 248, 238, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown);
  line-height: 1.03;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin-top: 14px;
  max-width: 720px;
  font-size: clamp(2.85rem, 6.4vw, 4.9rem);
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--brown-soft);
  font-size: 1.08rem;
}

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

.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-seals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(184, 138, 66, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--brown-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.image-shell {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(247, 223, 218, 0.9)),
    repeating-linear-gradient(45deg, rgba(184, 138, 66, 0.08), rgba(184, 138, 66, 0.08) 10px, transparent 10px, transparent 20px);
}

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

.hero-image {
  aspect-ratio: 0.9;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-image::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(79, 47, 34, 0.22));
  opacity: 0.35;
  pointer-events: none;
}

.logo-stamp {
  position: absolute;
  top: -26px;
  left: -22px;
  z-index: 2;
  width: 92px;
  height: 92px;
  padding: 8px;
  border-radius: 50%;
  background: var(--soft-white);
  box-shadow: var(--shadow-soft);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: min(245px, 70%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 3px;
  color: var(--brown-soft);
  font-size: 0.88rem;
}

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

.trust-card,
.moment-card,
.testimonial-card,
.product-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  min-height: 130px;
  border-radius: var(--radius);
  padding: 22px;
}

.trust-card i,
.moment-card i {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: var(--gold-dark);
  background: rgba(184, 138, 66, 0.12);
  font-size: 1.1rem;
}

.trust-card h2 {
  margin-top: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.order-box h2,
.about-copy h2,
.final-cta-box h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--brown-soft);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--brown);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 8px 18px rgba(79, 47, 34, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-image {
  aspect-ratio: 1.18;
}

.product-content {
  padding: 22px;
}

.product-content h3 {
  font-size: 1.12rem;
}

.product-content p {
  min-height: 78px;
  margin: 9px 0 18px;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.btn-product {
  width: 100%;
  color: var(--brown);
  background: var(--rose-light);
}

.btn-product:hover,
.btn-product:focus-visible {
  color: var(--soft-white);
  background: var(--gold-dark);
}

.moments {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(247, 234, 216, 0.72));
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.moment-card {
  display: grid;
  justify-items: start;
  align-content: space-between;
  min-height: 145px;
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 800;
}

.moment-card span {
  margin-top: 22px;
}

.order-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 44px;
  border: 1px solid rgba(184, 138, 66, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(247, 223, 218, 0.68)),
    var(--soft-white);
  box-shadow: var(--shadow);
}

.order-box p,
.about-copy p,
.final-cta-box p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--brown-soft);
  font-size: 1.02rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 48px;
}

.about-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.93), rgba(232, 211, 184, 0.56)),
    var(--soft-white);
  box-shadow: var(--shadow);
}

.about-card img {
  width: min(56%, 230px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(79, 47, 34, 0.11);
}

.about-card span {
  align-self: start;
  margin-top: -52px;
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
}

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

.testimonial-card {
  min-height: 210px;
  margin: 0;
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.18;
}

.testimonial-card figcaption {
  margin-top: 20px;
  color: var(--gold-dark);
  font-weight: 800;
}

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.final-cta {
  padding-top: 58px;
}

.final-cta-box {
  text-align: center;
  padding: 56px 28px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(232, 211, 184, 0.58)),
    var(--soft-white);
  box-shadow: var(--shadow);
}

.final-cta-box .eyebrow {
  justify-content: center;
}

.final-cta-box p {
  margin-inline: auto;
}

.final-cta-box .btn {
  margin-top: 28px;
}

.footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--soft-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
}

.footer p {
  margin: 14px 0 0;
  color: var(--brown-soft);
}

.footer h2 {
  margin-bottom: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a,
.footer span {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  color: var(--brown-soft);
  font-weight: 600;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold-dark);
}

.footer-bottom {
  width: min(100% - 40px, var(--container));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--brown-soft);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@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;
  }
}

@media (max-width: 1040px) {
  .nav-menu {
    gap: 16px;
  }

  .hero-grid,
  .about-grid {
    gap: 34px;
  }

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

  .moment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    width: 52px;
    height: 52px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 84px);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .nav-menu > a {
    padding: 12px 10px;
  }

  .nav-menu .btn {
    margin-top: 8px;
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .section-tight {
    padding: 12px 0 54px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .about-grid,
  .order-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .order-box p,
  .about-copy p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-seals {
    justify-content: center;
  }

  .hero-image {
    aspect-ratio: 1.08;
    border-radius: 28px;
  }

  .floating-note {
    right: 12px;
    bottom: 16px;
  }

  .trust-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-box {
    padding: 34px 24px;
    text-align: center;
  }

  .order-box .btn {
    width: 100%;
  }

  .about-card {
    min-height: 300px;
  }

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

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

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-actions .btn,
  .final-cta-box .btn {
    width: 100%;
  }

  .hero-seals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-seals span {
    justify-content: center;
  }

  .logo-stamp {
    width: 72px;
    height: 72px;
    top: -18px;
    left: -8px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -42px auto 0;
  }

  .trust-grid,
  .product-grid,
  .moment-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 112px;
  }

  .product-content p {
    min-height: auto;
  }

  .moment-card {
    min-height: 112px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .final-cta-box {
    padding: 42px 18px;
    border-radius: 28px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .btn {
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

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