:root {
  --wine: #641c26;
  --wine-dark: #561a20;
  --rose: #d39484;
  --ivory: #fbf7f4;
  --cream: #f5ece7;
  --ink: #2b2022;
  --muted: #6f6264;
  --border: rgba(100, 28, 38, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--sans); }
a { color: inherit; }
.skip-link { position: fixed; z-index: 10; top: 12px; left: 12px; padding: 10px 14px; color: #fff; background: var(--wine); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; z-index: 3; top: 0; border-bottom: 1px solid var(--border); background: rgba(251, 247, 244, .94); backdrop-filter: blur(14px); }
.header-inner, .container { width: min(calc(100% - 40px), 1120px); margin-inline: auto; }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--wine-dark); text-decoration: none; }
.brand img { width: 64px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; }
.brand-detail { margin-top: 6px; font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-size: .78rem; font-weight: 700; text-decoration: none; }
.back-link::before { content: "←"; font-size: 1rem; }
.back-link:hover { color: var(--wine-dark); }
.hero { padding: clamp(50px, 8vw, 92px) 0 clamp(42px, 7vw, 76px); background: linear-gradient(135deg, #f5ece7 0%, #fbf7f4 65%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr); gap: clamp(32px, 6vw, 86px); align-items: center; }
.eyebrow { margin: 0 0 13px; color: var(--wine); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { font-family: var(--serif); color: var(--wine-dark); text-wrap: balance; }
h1 { max-width: 620px; margin: 0; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .94; letter-spacing: -.025em; }
.hero-copy p:not(.eyebrow) { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.hero-image { width: 100%; min-height: 0; aspect-ratio: 16 / 10; display: block; object-fit: cover; object-position: center; border-radius: 14px; box-shadow: 0 16px 38px rgba(86, 26, 32, .13); }
.content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr); gap: clamp(40px, 7vw, 96px); padding-block: clamp(56px, 9vw, 110px); }
.article { max-width: 720px; }
.article p { margin: 0 0 22px; color: #55484a; font-size: 1rem; line-height: 1.8; }
.article h2 { margin: 52px 0 18px; font-size: clamp(2rem, 3.2vw, 2.85rem); line-height: 1; }
.benefits { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.benefits li { position: relative; padding-left: 28px; color: #55484a; font-size: .95rem; line-height: 1.55; }
.benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--rose); font-weight: 800; }
.booking { position: sticky; top: 106px; align-self: start; padding: 30px; border-radius: 14px; color: #fff; background: var(--wine); }
.booking h2 { margin: 0; color: #fff; font-size: 2rem; line-height: 1; }
.booking p { margin: 15px 0 24px; color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.65; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 19px; border-radius: 10px; font-size: .8rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, background-color .2s ease; }
.button--whatsapp { width: 100%; color: var(--wine-dark); background: #e8bb80; }
.button--whatsapp:hover { background: #f0cb99; transform: translateY(-2px); }
.button--back { margin-top: 16px; color: var(--wine); background: var(--cream); }
.button--back:hover { color: var(--wine-dark); transform: translateY(-2px); }
.site-footer { padding: 28px 0; border-top: 1px solid var(--border); color: var(--muted); font-size: .74rem; }
.site-footer .container { display: flex; justify-content: space-between; gap: 18px; }

@media (max-width: 760px) {
  .header-inner, .container { width: min(calc(100% - 32px), 1120px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 52px; height: 40px; }
  .brand-name { font-size: 1.2rem; }
  .brand-detail { font-size: .5rem; }
  .hero-grid, .content { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .hero-image { order: -1; min-height: 220px; }
  .booking { position: static; }
  .site-footer .container { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
