:root {
  color-scheme: light;
  --paper: #fbfaf8;
  --ink: #111111;
  --muted: #62605d;
  --line: #e4ded7;
  --panel: rgba(255, 255, 255, 0.72);
  --red: #c40000;
  --red-dark: #8d0000;
  --gold: #a98648;
  --green: #25d366;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(196, 0, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(169, 134, 72, 0.15), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(251, 250, 248, 0.96)),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.4vw, 28px);
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 2.2vw, 28px);
  border: 1px solid rgba(169, 134, 72, 0.28);
  pointer-events: none;
}

.coming-soon {
  width: min(100%, 1120px);
  min-height: calc(100vh - clamp(32px, 6vw, 72px));
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(16px, 2.5vw, 28px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand-lockup {
  display: flex;
  justify-content: center;
}

.brand-logo {
  width: min(100%, 610px);
  height: clamp(112px, 16vw, 154px);
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 35px rgba(17, 17, 17, 0.08));
}

.announcement {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: clamp(0.76rem, 1.6vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.4vw, 5.5rem);
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}

.lead {
  width: min(100%, 720px);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.category-grid {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  justify-self: center;
}

.category-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(228, 222, 215, 0.9);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: left;
}

.category-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--red);
  background: rgba(196, 0, 0, 0.08);
}

.category-icon svg {
  width: 29px;
  height: 29px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card strong,
.category-card span span {
  display: block;
}

.category-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.category-card span span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.chocolate-card .category-icon {
  color: #6d3525;
  background: rgba(109, 53, 37, 0.1);
}

.spices-card .category-icon {
  color: #bd5600;
  background: rgba(189, 86, 0, 0.1);
}

.flowers-card .category-icon {
  color: #b21256;
  background: rgba(178, 18, 86, 0.1);
}

.gifts-card .category-icon {
  color: var(--gold);
  background: rgba(169, 134, 72, 0.14);
}

.contact-panel {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-self: center;
  align-items: stretch;
}

.phone-links {
  display: contents;
}

.contact-link {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(196, 0, 0, 0.42);
  background: var(--white);
  color: var(--red-dark);
  transform: translateY(-2px);
  outline: none;
}

.whatsapp-link {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  border-color: rgba(37, 211, 102, 0.55);
  color: #075e54;
}

.contact-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.contact-link.primary {
  align-content: center;
}

.contact-label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-value {
  min-width: 0;
  font-size: clamp(0.94rem, 2vw, 1.05rem);
  font-weight: 750;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .page-shell {
    place-items: stretch;
    padding: 18px;
  }

  .page-shell::before {
    inset: 14px;
  }

  .coming-soon {
    min-height: calc(100vh - 36px);
    padding: clamp(20px, 5vw, 36px);
  }

  .brand-logo {
    width: min(100%, 500px);
    height: clamp(106px, 27vw, 140px);
  }

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

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

@media (max-width: 440px) {
  .coming-soon {
    gap: 20px;
  }

  .brand-logo {
    width: min(100%, 360px);
    height: clamp(96px, 28vw, 116px);
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.7rem);
  }

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

  .category-card {
    min-height: 82px;
    padding: 14px;
  }

  .contact-link {
    padding: 16px;
  }
}
