:root {
  --wine-950: #3c1711;
  --wine-900: #572117;
  --wine-800: #7c3426;
  --wine-700: #934735;
  --gold-600: #b68a2b;
  --gold-500: #c9a64b;
  --gold-200: #ead9a7;
  --cream-100: #fffaf5;
  --cream-200: #f9f0e8;
  --pink-100: #f7e8e7;
  --mint-100: #e5f3ef;
  --ink: #2f211e;
  --muted: #76635e;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(86, 35, 25, 0.10);
  --shadow-card: 0 12px 30px rgba(86, 35, 25, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--wine-900);
  color: var(--white);
  padding: 10px 16px;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 84px 0;
}

.section--warm {
  background: linear-gradient(180deg, rgba(247, 232, 231, 0.72), rgba(255, 250, 245, 0.88));
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 22% 25%, rgba(247, 232, 231, 0.95), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(229, 243, 239, 0.9), transparent 30%),
    linear-gradient(135deg, #fffdfb 0%, #fff8f2 48%, #fffdfb 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(182, 138, 43, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  left: -180px;
  top: -180px;
}

.hero::after {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -130px;
}

.hero__watercolor {
  position: absolute;
  z-index: -2;
  width: 360px;
  height: 360px;
  border-radius: 45% 55% 58% 42% / 48% 39% 61% 52%;
  filter: blur(18px);
  opacity: 0.46;
}

.hero__watercolor--pink {
  top: 8%;
  left: 6%;
  background: var(--pink-100);
  transform: rotate(18deg);
}

.hero__watercolor--mint {
  right: 8%;
  bottom: 6%;
  background: var(--mint-100);
  transform: rotate(-12deg);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 72px;
}

.brand-card {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(201, 166, 75, 0.48);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.brand-card::before,
.brand-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.brand-card::before {
  inset: 10px;
  border: 2px solid rgba(201, 166, 75, 0.72);
}

.brand-card::after {
  inset: -13px;
  border: 1px solid rgba(201, 166, 75, 0.34);
}

.brand-card__logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero__copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-200);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--wine-900);
  line-height: 1.02;
}

h1 {
  margin: 12px 0 20px;
  font-size: clamp(4.2rem, 9vw, 7.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  letter-spacing: -0.025em;
}

.hero__copy p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(201, 166, 75, 0.55);
  outline-offset: 3px;
}

.button--primary {
  background: var(--wine-800);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(124, 52, 38, 0.22);
}

.button--primary:hover {
  background: var(--wine-900);
}

.button--ghost {
  border-color: rgba(124, 52, 38, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--wine-800);
}

.button--ghost:hover {
  border-color: rgba(124, 52, 38, 0.42);
  background: var(--white);
}

.intro {
  padding-bottom: 54px;
}

.intro__content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.intro__content p {
  margin-bottom: 8px;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
}

.section-heading__number {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-200);
  border-radius: 50%;
  color: var(--gold-600);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2.45rem, 4.5vw, 3.8rem);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(182, 138, 43, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 243, 239, 0.95), rgba(229, 243, 239, 0));
  pointer-events: none;
}

.product-card--special::after {
  background: radial-gradient(circle, rgba(247, 232, 231, 0.95), rgba(247, 232, 231, 0));
}

.product-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.product-card__mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-200);
  border: 1px solid rgba(182, 138, 43, 0.2);
  color: var(--gold-600);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.price-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(118, 99, 94, 0.13);
  padding-top: 10px;
}

.price-row dt,
.price-row dd {
  margin: 0;
}

.price-row dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-row dd {
  color: var(--wine-800);
  font-weight: 700;
  text-align: right;
}

.order-section {
  padding-top: 44px;
}

.order-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  border-radius: var(--radius-xl);
  padding: 46px;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 166, 75, 0.16), transparent 28%),
    linear-gradient(135deg, var(--wine-950), var(--wine-800));
  color: var(--white);
  box-shadow: 0 22px 50px rgba(60, 23, 17, 0.2);
}

.order-card__decoration {
  position: absolute;
  right: 27%;
  top: -22px;
  color: rgba(234, 217, 167, 0.14);
  font-size: 11rem;
  line-height: 1;
  pointer-events: none;
}

.order-card__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.order-card h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 3.65rem);
}

.order-card p {
  max-width: 610px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.button--whatsapp {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--white);
  color: var(--wine-900);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.button--whatsapp:hover {
  background: var(--cream-100);
}

.whatsapp-icon {
  font-size: 1.25rem;
}

.footer {
  padding: 28px 0 38px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(118, 99, 94, 0.16);
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__content div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer__content strong {
  color: var(--wine-800);
}

.footer__content a {
  font-weight: 600;
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 90;
  width: min(92vw, 520px);
  transform: translate(-50%, 24px);
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--wine-950);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(60, 23, 17, 0.26);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 54px 0 70px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .brand-card {
    width: min(78vw, 360px);
  }

  .hero__copy {
    margin-inline: auto;
  }

  .hero__copy p {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .intro__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .order-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .brand-card {
    width: min(82vw, 310px);
    padding: 18px;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 6rem);
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    gap: 14px;
  }

  .section-heading__number {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 1.2rem;
  }

  .section-heading h2 {
    font-size: 2.55rem;
  }

  .product-card {
    padding: 22px;
  }

  .price-row {
    align-items: flex-start;
  }

  .order-card {
    padding: 30px 24px;
  }

  .button--whatsapp {
    justify-self: stretch;
  }

  .footer__content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__content div {
    flex-direction: column;
    gap: 0;
  }

  .toast {
    border-radius: 18px;
  }
}

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

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