:root {
  --ink: #272421;
  --muted: #665f58;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --cream: #f3ebe0;
  --line: #d8cbbd;
  --wine: #6f2133;
  --green: #235b45;
  --gold: #a98042;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(39, 36, 33, .16);
}

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

.topbar {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  background: var(--wine);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(91, 68, 50, .13);
  background: rgba(251, 248, 242, .96);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.brand span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .38em;
}

.site-header nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: 0 18px 30px rgba(39, 36, 33, .1);
}

.site-header nav.open {
  display: flex;
}

.site-header nav a {
  padding: 10px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.icon-whatsapp {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #16804f;
  transition: transform .2s ease, box-shadow .2s ease;
}

.icon-whatsapp svg {
  width: 18px;
  height: 18px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-small {
  display: none;
  min-height: 42px;
  padding-inline: 20px;
}

.button:hover,
.icon-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(70, 38, 34, .16);
}

.button:hover {
  background: #581829;
}

.button-light {
  background: #fff;
  color: var(--wine);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}

.hero {
  display: grid;
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 20px 42px;
  background: linear-gradient(90deg, rgba(243, 235, 224, .96) 0%, rgba(243, 235, 224, .9) 62%, rgba(243, 235, 224, .34) 100%);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(35, 91, 69, .12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.05rem, 14vw, 6rem);
}

h2 {
  font-size: clamp(2.5rem, 12vw, 5rem);
}

h3 {
  font-size: 1.8rem;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.trust-grid {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
}

.trust-grid span {
  position: relative;
  padding-left: 18px;
}

.trust-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: absolute;
  inset: 0;
  min-height: 460px;
  margin: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 235, 224, .8), rgba(243, 235, 224, .25), rgba(39, 36, 33, .16));
  pointer-events: none;
}

.hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255, 253, 249, .94);
  color: var(--wine);
  text-align: center;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.05;
  box-shadow: 0 18px 42px rgba(39, 36, 33, .16);
}

.section {
  padding: 70px 20px;
}

.section-head,
.center-head {
  margin-bottom: 34px;
}

.section-head p,
.center-head p:last-child,
.product p,
.steps p,
.about-copy p,
.delivery p,
.order-intro p,
details p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product {
  overflow: hidden;
  border: 1px solid rgba(216, 203, 189, .9);
  border-radius: 8px;
  background: var(--paper);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(70, 38, 34, .1);
}

.product img {
  aspect-ratio: 4 / 5;
  height: auto;
}

.product-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product p {
  margin: 0;
  font-size: 13px;
}

.product a {
  width: fit-content;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.gesture {
  display: grid;
  background: #342927;
  color: #fff;
}

.gesture-image {
  min-height: 440px;
}

.gesture-copy {
  padding: 70px 20px;
}

.gesture .kicker,
.light .kicker,
.why-grid b {
  color: #e6c7a0;
}

.gesture-copy p {
  max-width: 560px;
  color: #f2e7df;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.occasion-list span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: var(--serif);
  font-size: 18px;
}

.how {
  background: #eee5da;
}

.steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steps article {
  padding: 30px 24px;
  background: var(--paper);
}

.steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
}

.steps h3 {
  margin: 10px 0;
}

.about {
  display: grid;
  gap: 34px;
}

.about-copy {
  max-width: 650px;
}

.about-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
}

.why {
  background: #282421;
  color: #fff;
}

.why h2,
.why h3 {
  color: #fff;
}

.why-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.why-grid article {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.why-grid b {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.why-grid p {
  color: #d8d0ca;
  font-size: 13px;
}

.delivery {
  display: grid;
  gap: 34px;
}

.delivery .button {
  margin-top: 12px;
}

.areas {
  color: #755a4a;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 8vw, 2.65rem);
  line-height: 1.48;
}

.testimonials {
  background: #f0e7dc;
}

.review-grid {
  display: grid;
  gap: 14px;
}

.review-grid blockquote {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
}

.review-grid p {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.42;
}

.review-grid footer {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.payments {
  padding: 38px 20px;
  border-block: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.payments p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.payments div {
  max-width: 980px;
  margin: auto;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
}

.order {
  display: grid;
  gap: 34px;
  background: #f5ece3;
}

.contact-card {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.contact-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card a {
  width: fit-content;
  color: var(--wine);
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 24px;
}

.order form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(70, 38, 34, .08);
}

.field {
  display: grid;
  gap: 7px;
}

.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfc1b5;
  border-radius: 0;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 13px 14px;
}

.field textarea {
  resize: vertical;
}

.submit {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.faq-list {
  max-width: 920px;
  margin: auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}

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

summary span {
  flex: 0 0 auto;
  font-family: var(--sans);
  transition: transform .2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 28px 22px 0;
  font-size: 14px;
}

.footer {
  padding: 58px 20px 86px;
  background: #282421;
  color: #fff;
  text-align: center;
}

.footer-brand {
  font-size: 34px;
}

.footer p {
  margin: 12px 0 0;
  color: #ddd3cc;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  color: #fff;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #cfc5bf;
  font-size: 11px;
}

.mobile-whatsapp {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 -12px 30px rgba(39, 36, 33, .18);
}

@media (min-width: 560px) {
  .trust-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 34px;
  }
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 86px;
    padding: 0 5vw;
  }

  .menu-toggle {
    display: none;
  }

  .site-header nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header nav a {
    font-size: 13px;
  }

  .button-small {
    display: inline-flex;
  }

  .hero {
    min-height: calc(100vh - 120px);
    grid-template-columns: 48% 52%;
    overflow: visible;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 8vh 5vw 8vh 7vw;
    background: transparent;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    min-height: 640px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(243, 235, 224, .1), rgba(39, 36, 33, .2));
  }

  .section {
    padding: 100px 7vw;
  }

  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
  }

  .section-head p {
    max-width: 500px;
  }

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

  .gesture {
    grid-template-columns: 48% 52%;
  }

  .gesture-image {
    min-height: 680px;
  }

  .gesture-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw;
  }

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

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

  .steps article {
    padding: 44px;
  }

  .about,
  .delivery,
  .order {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 7vw;
  }

  .about-image {
    min-height: 640px;
  }

  .why-grid article {
    padding: 38px 28px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 0;
  }

  .why-grid article:last-child {
    border-right: 0;
  }

  .footer {
    padding-bottom: 28px;
  }

  .footer-links,
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
  }

  .footer-bottom {
    justify-content: space-between;
  }

  .mobile-whatsapp {
    display: none;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .product h3 {
    font-size: 1.55rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
