:root {
  --ink-950: #0D0A09;
  --ink-900: #17100E;
  --wine-800: #3A1712;
  --wine-700: #6F2118;
  --wine-600: #9B2D20;
  --paper: #F5F5F3;
  --white: #FFFFFF;
  --wa: #20C968;
  --wa-hover: #1ab85a;

  --ink: var(--paper);
  --muted: rgba(245, 245, 243, 0.72);
  --muted-light: rgba(245, 245, 243, 0.48);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --surface: rgba(58, 23, 18, 0.42);
  --surface-2: rgba(23, 16, 14, 0.72);

  --header-h: 4.5rem;
  --gutter: clamp(1rem, 4vw, 1.5rem);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, sans-serif;
  --display: "Playfair Display", Georgia, serif;

  --grad-page:
    radial-gradient(ellipse 100% 60% at 20% -10%, rgba(155, 45, 32, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(111, 33, 24, 0.18), transparent 50%),
    linear-gradient(175deg, var(--wine-800) 0%, var(--ink-900) 42%, var(--ink-950) 100%);
  --grad-hero:
    linear-gradient(135deg, rgba(155, 45, 32, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 0% 50%, rgba(111, 33, 24, 0.35), transparent 60%);
  --grad-card:
    linear-gradient(155deg, rgba(58, 23, 18, 0.55) 0%, rgba(13, 10, 9, 0.88) 100%);
  --grad-cta:
    linear-gradient(120deg, var(--wine-800) 0%, var(--wine-700) 45%, var(--ink-950) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink-950);
  background-image: var(--grad-page);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--wine-600);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.wrap {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 9, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(13, 10, 9, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 2;
  min-width: 0;
}

.brand-text {
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.brand span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.menu-btn__bars,
.menu-btn__bars::before,
.menu-btn__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  margin: 0 auto;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    background 0.3s var(--ease);
}

.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
}

.menu-btn__bars::before {
  transform: translateY(-6px);
}

.menu-btn__bars::after {
  transform: translateY(4px);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars {
  background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::before {
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::after {
  transform: rotate(-45deg) translateY(-2px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a:not(.btn-wa) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav a:not(.btn-wa)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--wine-600), var(--wine-700));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.nav a:not(.btn-wa):hover,
.nav a:not(.btn-wa).is-active {
  color: var(--paper);
}

.nav a:not(.btn-wa):hover::after,
.nav a:not(.btn-wa).is-active::after {
  transform: scaleX(1);
}

/* Buttons */
.ico-wa {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.25s var(--ease);
  box-shadow:
    0 4px 16px rgba(32, 201, 104, 0.28),
    0 0 0 0 rgba(32, 201, 104, 0);
}

.btn-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(32, 201, 104, 0.38),
    0 0 24px rgba(32, 201, 104, 0.12);
  text-decoration: none;
}

.btn-wa--sm {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
}

.btn-wa--hero {
  min-height: 54px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(155, 45, 32, 0.55);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.btn-outline:hover {
  background: var(--wine-600);
  border-color: var(--wine-600);
  color: var(--white);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline--light {
  border-color: rgba(245, 245, 243, 0.35);
  color: var(--paper);
}

.btn-outline--light:hover {
  background: rgba(245, 245, 243, 0.12);
  border-color: rgba(245, 245, 243, 0.5);
  color: var(--white);
}

/* Hero */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(155, 45, 32, 0.38) 0%, rgba(111, 33, 24, 0.12) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: 42% 58%;
    gap: 3rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-600);
}

.eyebrow--light {
  color: rgba(245, 245, 243, 0.8);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-wrap: balance;
}

.lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.hero-content .btn-wa--hero {
  width: auto;
  flex: 1 1 14rem;
  max-width: 100%;
}

.btn-outline--hero {
  min-height: 54px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  flex: 0 1 auto;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-stars {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(155, 45, 32, 0.75);
}

.hero-trust-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-light);
  letter-spacing: 0.02em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.hero-meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(155, 45, 32, 0.5);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 10, 9, 0.5) 100%);
  pointer-events: none;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head--catalog {
  max-width: 42rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Experience */
.section--experience {
  background: linear-gradient(180deg, rgba(58, 23, 18, 0.2) 0%, transparent 100%);
}

.experience-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 901px) {
  .experience-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.experience-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

.experience-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.experience-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.experience-list li > span {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine-600);
  line-height: 1;
  opacity: 0.85;
}

.experience-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.experience-list li p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.experience-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

/* Featured */
.section--featured {
  background: linear-gradient(180deg, transparent 0%, rgba(58, 23, 18, 0.25) 50%, transparent 100%);
}

.featured {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 901px) {
  .featured {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.featured-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
  position: relative;
}

.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(13, 10, 9, 0.35) 100%);
  pointer-events: none;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.featured-copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--paper);
}

.featured-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42ch;
}

.featured-price {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--wine-600);
  letter-spacing: -0.02em;
}

.featured-copy .btn-wa--hero {
  width: min(100%, 20rem);
}

/* Catalog */
.section--catalog {
  background: linear-gradient(180deg, rgba(23, 16, 14, 0.35) 0%, transparent 100%);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(23, 16, 14, 0.5);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.filter-btn:hover {
  color: var(--paper);
  border-color: rgba(155, 45, 32, 0.45);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: var(--wine-700);
  border-color: var(--wine-600);
  color: var(--white);
}

.catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  border: 1px dashed rgba(155, 45, 32, 0.35);
  border-radius: var(--radius);
  background: rgba(58, 23, 18, 0.2);
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--grad-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 45, 32, 0.35);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine-600), var(--wine-700));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(155, 45, 32, 0.35);
  z-index: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
  gap: 0.35rem;
}

.card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paper);
}

.card .desc {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.card-price-wrap .from {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.card-price-wrap .price {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wine-600);
  letter-spacing: -0.02em;
}

.btn-card {
  min-height: 42px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Cinematic */
.section--cinematic {
  padding: 0;
}

.cinematic {
  position: relative;
  min-height: clamp(360px, 55vw, 520px);
  overflow: hidden;
}

.cinematic img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 55vw, 520px);
  object-fit: cover;
  object-position: center 40%;
}

.cinematic__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    105deg,
    rgba(13, 10, 9, 0.88) 0%,
    rgba(23, 16, 14, 0.65) 45%,
    rgba(58, 23, 18, 0.25) 100%
  );
}

.cinematic__copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}

.cinematic__copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

.cinematic__copy > p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 38ch;
}

/* Delivery */
.section--delivery {
  background: linear-gradient(180deg, rgba(58, 23, 18, 0.15) 0%, transparent 100%);
}

.delivery-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.delivery-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--grad-card);
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.delivery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 45, 32, 0.35);
}

.delivery-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(155, 45, 32, 0.15);
  border: 1px solid rgba(155, 45, 32, 0.25);
}

.delivery-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--wine-600);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--paper);
}

.delivery-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.delivery-cta {
  width: fit-content;
}

/* FAQ */
.section--faq {
  background: linear-gradient(180deg, transparent 0%, rgba(23, 16, 14, 0.4) 100%);
}

.faq {
  max-width: 640px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--paper);
  transition: color 0.25s var(--ease);
}

.faq summary:hover {
  color: var(--wine-600);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, rgba(58, 23, 18, 0.12) 0%, transparent 100%);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 901px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
}

.info-card {
  padding: 1.35rem;
  background: var(--grad-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.info-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
}

.info-card p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.info-card a {
  color: var(--wine-600);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.info-card a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.link-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine-600) !important;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* CTA Final */
.cta-final {
  background: var(--grad-cta);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(155, 45, 32, 0.2), transparent 55%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.cta-final h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 22ch;
  color: var(--paper);
}

.cta-final__sub {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 3rem 0 0;
  background: var(--ink-950);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 701px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

.footer .brand strong {
  color: var(--paper);
}

.footer .brand span {
  color: var(--muted-light);
}

.footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-nav h3,
.footer-contact h3 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover {
  color: var(--paper);
}

.footer-contact p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-contact a {
  color: var(--wine-600);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-contact a:hover {
  color: var(--paper);
}

.footer-bottom {
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-light);
}

/* Float WA */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.wa-float .ico-wa {
  width: 1.5rem;
  height: 1.5rem;
}

/* Reveal */
.js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.4s var(--ease),
      transform 0.4s var(--ease);
  }

  .js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .js [data-reveal-delay="1"] {
    transition-delay: 0.1s;
  }

  .js [data-reveal-delay="2"] {
    transition-delay: 0.2s;
  }
}

/* Mobile */
@media (max-width: 900px) {
  :root {
    --header-h: 4rem;
  }

  body {
    background-attachment: scroll;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(13, 10, 9, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    padding: calc(var(--header-h) + 1rem) var(--gutter) calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn-wa) {
    font-size: 1.1rem;
  }

  .nav .btn-wa {
    margin-top: 0.5rem;
    width: min(100%, 18rem);
  }

  .hero {
    padding: 1.5rem 0 2.5rem;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content .btn-wa--hero,
  .btn-outline--hero {
    width: 100%;
    flex: none;
  }

  .lead {
    max-width: none;
  }

  .hero-frame {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .hero__glow {
    top: 5%;
    right: 0;
    width: 80vw;
    height: 50vw;
  }

  .hero-meta {
    gap: 0.4rem 1rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .experience-grid {
    gap: 2rem;
  }

  .featured {
    gap: 1.75rem;
  }

  .featured-copy .btn-wa--hero {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-footer {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .card-price-wrap {
    flex: 1;
    min-width: 0;
  }

  .btn-card {
    width: auto;
    flex: 0 0 auto;
    min-width: 7.5rem;
    margin-top: 0;
  }

  .delivery-card {
    padding: 1.5rem;
  }

  .delivery-cta {
    width: 100%;
    justify-content: center;
  }

  .map-wrap {
    min-height: 240px;
  }

  .map-wrap iframe {
    min-height: 240px;
    height: 240px;
  }

  .cta-final__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-final h2 {
    max-width: none;
  }

  .cta-final .btn-wa--hero {
    width: 100%;
  }

  .footer {
    padding-top: 2.5rem;
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .wa-float {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand span {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-meta li {
    font-size: 0.72rem;
  }

  .catalog-filters {
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }

  .card-body {
    padding: 1rem;
  }

  .card h3 {
    font-size: 1.12rem;
  }

  .card .desc {
    -webkit-line-clamp: 4;
    font-size: 0.84rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-card {
    width: 100%;
    min-height: 44px;
  }

  .faq summary {
    font-size: 0.9rem;
    align-items: flex-start;
  }

  .info-card {
    padding: 1.1rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 210px;
    height: 210px;
  }
}

@media (max-width: 380px) {
  .brand-text span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
