:root {
  --wine: #7a1f2b;
  --wine-dark: #4e121b;
  --gold: #c9a24a;
  --cream: #faf6ed;
  --beige: #efe3d0;
  --white: #ffffff;
  --text: #2b2523;
  --muted: #6f625c;
  --border: #e5d8c8;
  --whatsapp: #25d366;
  --shadow: 0 18px 48px rgba(43, 37, 35, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 237, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo-link,
.logo-copy,
.hero-copy,
.hero-panel,
.hero-product-list,
.feature-card,
.gift-copy,
.gift-list,
.testimonial-card,
.contact-actions,
.footer-content {
  display: flex;
}

.logo-link {
  align-items: center;
  gap: 14px;
}

.logo-image {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  object-fit: cover;
}

.logo-copy {
  flex-direction: column;
  gap: 0;
}

.logo-title {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-location {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--wine);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 14px 24px;
  font-weight: 800;
  line-height: 1.1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  background: var(--wine);
  color: var(--white);
}

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

.button-secondary {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}

.button-secondary:hover {
  background: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
  background: var(--whatsapp);
  color: var(--white);
}

.hero-section {
  padding: 96px 0 78px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 72px;
}

.hero-copy {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--wine);
  padding: 7px 13px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.2vw, 4.25rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel-header strong {
  color: var(--wine);
}

.hero-product-list {
  flex-direction: column;
  gap: 14px;
}

.hero-product {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.hero-product.highlight {
  background: var(--cream);
}

.product-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold);
  font-weight: 900;
}

.hero-product h2 {
  font-size: 1.35rem;
}

.hero-product p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

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

.trust-grid p {
  margin: 0;
  color: var(--wine);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--beige);
}

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

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
}

.align-left {
  margin: 0;
  text-align: left;
}

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

.feature-card,
.testimonial-card {
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.feature-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
}

.feature-card p,
.testimonial-card p,
.gift-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.product-section-grid,
.gift-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 60px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card-copy {
  padding: 18px;
}

.product-card h3 {
  font-size: 1.28rem;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--wine);
  font-weight: 800;
}

.product-card a:hover {
  color: var(--wine-dark);
}

.gift-copy,
.gift-list {
  flex-direction: column;
}

.gift-list {
  gap: 14px;
}

.gift-list p {
  margin: 0;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
  color: var(--wine-dark);
  font-weight: 800;
}

.section-testimonials {
  padding-top: 34px;
}

.testimonial-card::before {
  content: "“";
  height: 28px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
}

.testimonial-card strong {
  margin-top: 18px;
  color: var(--wine);
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 32px;
  border-radius: 8px;
  background: var(--wine);
  color: var(--white);
  padding: 42px;
}

.map-card {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-card .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.contact-card p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.contact-card .button-primary {
  background: var(--white);
  color: var(--wine);
}

.contact-card .button-primary:hover {
  background: var(--beige);
}

.button-map {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--white);
}

.button-map:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-actions {
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.contact-actions p {
  max-width: 300px;
  margin: 0;
  font-size: 0.94rem;
}

.contact-details {
  display: grid;
  gap: 8px;
}

.site-footer {
  padding: 28px 0;
  background: var(--wine-dark);
  color: var(--white);
}

.footer-content {
  justify-content: space-between;
  gap: 20px;
}

.footer-content p {
  margin: 0;
}

.footer-content p:last-child {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-grid,
  .product-section-grid,
  .gift-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

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

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

  .header-content {
    min-height: 70px;
  }

  .logo-image {
    width: 46px;
    height: 46px;
  }

  .logo-location {
    display: none;
  }

  .button-small {
    padding-inline: 14px;
  }

  .hero-section,
  .section {
    padding: 54px 0;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .hero-panel,
  .contact-card {
    padding: 22px;
  }

  .map-card iframe {
    height: 260px;
  }

  .hero-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .product-section-grid,
  .gift-grid {
    gap: 30px;
  }

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

  .trust-grid p {
    text-align: left;
  }

  .footer-content {
    display: grid;
  }
}

@media (max-width: 420px) {
  .logo-title {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.95rem;
  }
}
