:root {
  --rose-50: #fff7f6;
  --rose-100: #fde8e7;
  --rose-200: #f7cbcc;
  --rose-500: #d86f7b;
  --wine: #84283a;
  --wine-dark: #5f1729;
  --gold: #b9842d;
  --cream: #fffaf3;
  --text: #351923;
  --muted: #75515c;
  --shadow: 0 18px 55px rgba(132, 40, 58, 0.15);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(248, 202, 204, 0.72), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(185, 132, 45, 0.16), transparent 30%),
    linear-gradient(135deg, #fffaf7 0%, #fdebec 45%, #fff8ef 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(185, 132, 45, 0.22);
  background: rgba(255, 248, 247, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 35px rgba(132, 40, 58, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(132, 40, 58, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--wine-dark);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(132, 40, 58, 0.18);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--wine);
  border-radius: 999px;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: 130px clamp(20px, 6vw, 90px) 70px;
}

.hero-content,
.section,
.order-section,
.contact-section {
  max-width: 1160px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--wine);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wine) 0%, #b53d52 100%);
  box-shadow: 0 15px 32px rgba(132, 40, 58, 0.28);
}

.btn-secondary {
  color: var(--wine);
  border-color: rgba(185, 132, 45, 0.45);
  background: rgba(255, 250, 243, 0.78);
}

.hero-card {
  position: relative;
  align-self: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(185, 132, 45, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: min(100%, 430px);
  margin: 0 auto;
  border-radius: 50%;
}

.hero-card p {
  margin: 18px 0 0;
  color: var(--wine);
  font-family: "Parisienne", cursive;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  text-align: center;
}

.section {
  padding: 86px clamp(20px, 5vw, 40px);
}

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

.section-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card,
.feature-grid article {
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(216, 111, 123, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(253, 232, 231, 0.64)),
    radial-gradient(circle at top right, rgba(185, 132, 45, 0.16), transparent 42%);
  box-shadow: 0 14px 36px rgba(132, 40, 58, 0.1);
}

.product-card {
  position: relative;
}

.product-card::before {
  content: "";
  width: 42px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--gold);
}

.product-card span,
.feature-grid strong {
  display: block;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.product-card p,
.feature-grid p,
.order-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.7;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.card-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 12px;
  text-align: center;
}

.order-section,
.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(185, 132, 45, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.9), rgba(247, 203, 204, 0.52));
  box-shadow: var(--shadow);
}

.order-section h2,
.contact-section h2 {
  max-width: 700px;
}

.order-section p {
  max-width: 680px;
  margin-bottom: 0;
}

.features {
  padding-top: 86px;
}

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

.feature-grid article {
  min-height: 190px;
}

.hero-visual {
  position: relative;
  align-self: center;
  max-width: 460px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(185, 132, 45, 0.32);
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(132, 40, 58, 0.18), rgba(185, 132, 45, 0.18));
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.hero-badge {
  position: absolute;
  left: -18px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 132, 45, 0.28);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 16px 34px rgba(53, 25, 35, 0.16);
}

.hero-badge strong {
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-frame {
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(185, 132, 45, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.74);
  box-shadow: var(--shadow);
}

.menu-frame img {
  width: 100%;
  border-radius: 18px;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.contact-section {
  margin-bottom: 88px;
}

.contact-card {
  display: grid;
  gap: 18px;
  min-width: min(100%, 390px);
  padding: 22px;
  border: 1px solid rgba(185, 132, 45, 0.28);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 16px 38px rgba(132, 40, 58, 0.12);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list span {
  padding: 16px 18px;
  border: 1px solid rgba(132, 40, 58, 0.16);
  border-radius: 16px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.contact-list span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 18px 36px rgba(31, 168, 85, 0.34);
  font-weight: 900;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 38px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine-dark), #b43b51);
  text-align: center;
}

.site-footer img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.78);
}

.category-main {
  padding-top: 112px;
}

.category-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 74px clamp(20px, 5vw, 40px) 44px;
}

.category-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
}

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

.gallery-card,
.empty-gallery {
  overflow: hidden;
  border: 1px solid rgba(216, 111, 123, 0.22);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(253, 232, 231, 0.62));
  box-shadow: 0 14px 36px rgba(132, 40, 58, 0.1);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--rose-100);
}

.gallery-card div {
  padding: 22px;
}

.gallery-card h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.gallery-card p,
.empty-gallery p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.empty-gallery {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 36px;
  text-align: center;
}

.category-cta {
  display: flex;
  justify-content: center;
  padding: 0 20px 88px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .order-section,
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(185, 132, 45, 0.24);
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--rose-100);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding: 110px 18px 54px;
  }

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

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .hero-actions,
  .menu-actions,
  .btn,
  .card-actions {
    width: 100%;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

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

  .category-main {
    padding-top: 88px;
  }

  .category-hero {
    padding-top: 54px;
  }

  .product-card,
  .feature-grid article {
    min-height: auto;
  }

  .section {
    padding: 64px 18px;
  }

  .order-section,
  .contact-section {
    margin-inline: 18px;
    padding: 28px 20px;
  }

  .menu-frame {
    overflow-x: auto;
    padding: 10px;
    border-radius: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .menu-frame img {
    width: auto;
    max-width: none;
    min-width: 860px;
  }

  .hero-visual {
    max-width: 420px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    height: 56px;
    min-width: 56px;
    padding: 0 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 145px;
    line-height: 1;
  }

  .hero-card p {
    font-size: 2rem;
  }

  .contact-list {
    width: 100%;
  }
}
