@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap');

:root {
  --wine: #6f1d12;
  --wine-deep: #40100b;
  --cream: #f7f0e4;
  --paper: #fffaf2;
  --ink: #271b16;
  --muted: #705f55;
  --line: rgba(72, 27, 17, .18);
  --gold: #c79a5b;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem; background: white; color: var(--wine); }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: .65rem clamp(1.25rem, 4vw, 4.5rem); background: rgba(255,250,242,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: .8rem; width: fit-content; text-decoration: none; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
nav { display: flex; gap: 2rem; }
nav a { text-decoration: none; font-size: .9rem; font-weight: 600; }
nav a:hover, .text-link:hover, .footer-links a:hover { color: var(--wine); }
.site-header > .button { justify-self: end; }
.menu-button, .mobile-menu { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .85rem 1.35rem; border: 1px solid var(--wine); border-radius: 3px; background: var(--wine); color: white; text-decoration: none; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--wine-deep); }
.button-small { min-height: 42px; padding: .6rem 1rem; font-size: .86rem; }
.button-outline { background: transparent; color: var(--wine); }
.button-outline:hover { color: white; }
.button-light { border-color: var(--cream); background: var(--cream); color: var(--wine-deep); }
.button-light:hover { background: white; }

.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 7vw, 8rem); overflow: hidden; background: radial-gradient(circle at 83% 20%, rgba(199,154,91,.16), transparent 24%), var(--paper); }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 1.15rem; color: var(--wine); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--font-display); line-height: .98; font-weight: 600; }
h1 { max-width: 750px; margin-bottom: 1.4rem; font-size: clamp(4.2rem, 8.2vw, 8.5rem); letter-spacing: -.05em; }
.hero-text { max-width: 650px; margin: 0 0 2rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.text-link { font-weight: 700; text-underline-offset: 5px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 3.5rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .88rem; }
.trust-list li::before { content: "•"; margin-right: .55rem; color: var(--gold); }
.hero-mark { position: relative; display: grid; justify-items: center; }
.hero-mark::before { content: ""; position: absolute; inset: -12% 8% 25%; border: 1px solid var(--gold); border-radius: 50% 50% 46% 54%; transform: rotate(-8deg); }
.hero-image-wrap { position: relative; width: min(100%, 520px); aspect-ratio: 1 / .83; overflow: hidden; box-shadow: 0 32px 70px rgba(64,16,11,.22); transform: rotate(2deg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-mark p { position: relative; width: 70%; margin: -1.3rem 0 0; padding: 1.35rem; background: var(--cream); color: var(--wine-deep); text-align: center; font-family: var(--font-display); font-size: 1.55rem; line-height: 1.15; box-shadow: 0 16px 28px rgba(64,16,11,.12); }

.ticker { overflow: hidden; padding: .85rem 0; background: var(--wine); color: var(--cream); white-space: nowrap; }
.ticker div { width: max-content; margin: auto; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ticker span { padding: 0 1.1rem; color: var(--gold); }
.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem); }
.section-heading { display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 4rem; margin-bottom: 3rem; }
.section-heading h2, .steps h2, .social h2 { max-width: 800px; margin-bottom: 0; font-size: clamp(3rem, 5.5vw, 5.8rem); letter-spacing: -.035em; }
.section-heading > p { max-width: 460px; margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-card { min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.5rem, 3vw, 2.8rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); transition: transform .25s ease, background .25s ease; }
.product-card:hover { position: relative; z-index: 2; transform: translateY(-6px); background: white; }
.product-featured { background: var(--wine); color: var(--cream); }
.product-featured:hover { background: var(--wine-deep); }
.product-number { font-family: var(--font-display); font-size: 1.2rem; opacity: .7; }
.product-kicker { margin: 0 0 .7rem; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.product-card h3 { margin-bottom: 1rem; font-size: clamp(2.7rem, 4vw, 4.6rem); }
.product-card p { max-width: 480px; }
.product-card a { font-weight: 700; text-underline-offset: 6px; }

.steps { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 9rem); background: var(--cream); }
.steps-intro > p:last-child { max-width: 430px; color: var(--muted); }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps-list li { display: grid; grid-template-columns: 70px 1fr; gap: 1.25rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.steps-list span { color: var(--wine); font-family: var(--font-display); font-size: 1.3rem; }
.steps-list h3 { margin: 0 0 .5rem; font-size: 1.8rem; line-height: 1.2; }
.steps-list p { margin: 0; color: var(--muted); }

.quote-band { display: grid; grid-template-columns: .25fr 1.35fr .65fr; gap: clamp(2rem, 5vw, 6rem); align-items: end; padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem); background: var(--wine-deep); color: var(--cream); }
.quote-band .eyebrow { color: var(--gold); }
.quote-band h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.5rem); letter-spacing: -.035em; }
.quote-symbol { align-self: start; color: var(--gold); font-family: var(--font-display); font-size: 8rem; line-height: .65; }
.story-text { margin: 0; color: rgba(247,240,228,.72); }

.social { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.social-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.social-copy .button { margin-top: 1rem; }
.social { grid-template-columns: 1fr 1fr; }
.social-note { border-left: 2px solid var(--gold); padding-left: 1rem; margin-top: 2rem; font-size: .95rem; }
.instagram-profile { min-width: 0; border: 1px solid var(--line); background: var(--cream); box-shadow: 12px 12px 0 var(--paper), 13px 13px 0 var(--line); }
.profile-heading { display: flex; align-items: center; gap: 1rem; padding: clamp(1.25rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line); }
.profile-heading img { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; outline: 1px solid var(--gold); outline-offset: 5px; }
.profile-heading div { min-width: 0; display: grid; gap: .2rem; }
.profile-heading strong { font-size: clamp(1rem, 1.7vw, 1.4rem); overflow-wrap: anywhere; }
.profile-heading span { font-size: .875rem; color: var(--muted); }
.profile-heading .profile-platform { color: var(--wine); font-weight: 700; }
.profile-bio { margin: 0; padding: 2rem clamp(1.25rem, 3vw, 2.5rem) 1.5rem; font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.3rem); line-height: 1.2; }
.profile-bio em { color: var(--wine); }
.profile-topics { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0 clamp(1.25rem, 3vw, 2.5rem) 2rem; }
.profile-topics span { border-bottom: 1px solid var(--gold); padding: .35rem .5rem; font-size: .875rem; }
.profile-bottom { padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem) 2rem; border-top: 1px solid var(--line); }
.profile-bottom p { margin: 0 0 1.5rem; color: var(--muted); font-size: .875rem; }
.profile-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-decoration: none; font-weight: 700; color: var(--wine); min-height: 56px; }
.profile-link small { display: block; margin-top: .3rem; color: var(--muted); font-size: .875rem; font-weight: 400; }
.external-arrow { display: grid; place-items: center; flex-shrink: 0; width: 48px; height: 48px; border: 1px solid var(--wine); border-radius: 50%; font-size: 1.5rem; transition: background .2s, color .2s; }
.profile-link:hover .external-arrow { background: var(--wine); color: var(--cream); }
section[id] { scroll-margin-top: 100px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
h1, h2, h3 { text-wrap: balance; }
.hero-copy, .steps-intro, .social-copy, .product-card { min-width: 0; }
.product-card h3 { overflow-wrap: break-word; }
.footer-links a:hover { color: var(--gold); }

.final-cta { display: flex; flex-direction: column; align-items: center; padding: clamp(5rem, 9vw, 9rem) 1.5rem; background: var(--wine); color: var(--cream); text-align: center; }
.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 { max-width: 960px; margin-bottom: 2rem; font-size: clamp(3.2rem, 6vw, 6.5rem); letter-spacing: -.04em; }
footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; padding: 2.2rem clamp(1.5rem, 7vw, 8rem); background: #211411; color: var(--cream); }
.footer-brand { display: flex; align-items: center; gap: .8rem; font-family: var(--font-display); font-size: 1.25rem; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
footer p { margin: 0; color: rgba(247,240,228,.7); font-size: .85rem; }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { font-weight: 700; text-underline-offset: 5px; }
.copyright { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid rgba(247,240,228,.14); }
.floating-whatsapp { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 40; display: none; padding: .8rem 1rem; border-radius: 999px; background: var(--cream); color: var(--wine-deep); box-shadow: 0 12px 30px rgba(0,0,0,.24); text-decoration: none; font-size: .85rem; font-weight: 700; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav, .site-header > .button { display: none; }
  .menu-button { display: grid; gap: 6px; width: 45px; height: 45px; place-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
  .menu-button span { display: block; width: 20px; height: 2px; background: var(--wine); transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 76px; left: 0; right: 0; padding: 1.2rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .mobile-menu:not([hidden]) { display: grid; gap: .4rem; }
  .mobile-menu a { padding: .8rem; text-decoration: none; font-weight: 700; }
  .hero { grid-template-columns: 1fr .75fr; gap: 3rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-featured { grid-column: 1 / -1; min-height: 350px; }
  .quote-band { grid-template-columns: 70px 1fr; }
  .story-text { grid-column: 2; }
  .social { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 66px; padding: .55rem 1rem; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 1.12rem; }
  .mobile-menu { top: 66px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4.5rem; }
  h1 { font-size: clamp(3.7rem, 18vw, 6.2rem); }
  .hero-mark { width: min(92%, 450px); margin: 1.5rem auto 0; }
  .hero-mark p { font-size: 1.25rem; }
  .trust-list { display: grid; gap: .5rem; }
  .ticker { white-space: normal; padding-inline: 1.5rem; text-align: center; }
  .ticker div { width: auto; line-height: 2; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-featured { grid-column: auto; }
  .product-card { min-height: 330px; }
  .steps { grid-template-columns: 1fr; }
  .quote-band { grid-template-columns: 1fr; }
  .quote-symbol { font-size: 6rem; }
  .story-text { grid-column: auto; }
  .social { gap: 2.5rem; }
  .profile-heading img { width: 60px; height: 60px; }
  footer { grid-template-columns: 1fr; padding-bottom: 5rem; }
  .floating-whatsapp { display: block; }
}

@keyframes ticker { to { transform: translateX(-45%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker div { animation: none; } * { transition: none !important; } }
