/* ============================================
   PRAIANO - Landing Page
   Paleta: Neutros + #33CB98 (botões/destaques)
   ============================================ */

:root {
  --green: #33CB98;
  --green-dark: #25b485;
  --green-soft: #e8f9f1;

  --bg: #fafaf7;
  --bg-soft: #dadbd7;
  --bg-warm: #ece7df;
  --white: #ffffff;

  --ink: #14130f;
  --ink-2: #2a2823;
  --ink-3: #5d5b54;
  --ink-4: #8a877d;
  --line: #e6e3db;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(20, 19, 15, 0.04), 0 2px 8px rgba(20, 19, 15, 0.04);
  --shadow: 0 4px 12px rgba(20, 19, 15, 0.06), 0 12px 40px rgba(20, 19, 15, 0.08);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

p strong, .hero-sub strong, .about-text p strong, .section-head p strong, .visit-text > p strong, .cta-card p strong {
  font-weight: 700;
  color: var(--ink);
}
.cta-card p strong { color: #ffffff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== LOADER ============== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
}
.loader-inner span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: load-letter .6s var(--ease) forwards;
}
.loader-inner span:nth-child(1) { animation-delay: .05s; }
.loader-inner span:nth-child(2) { animation-delay: .12s; }
.loader-inner span:nth-child(3) { animation-delay: .19s; }
.loader-inner span:nth-child(4) { animation-delay: .26s; }
.loader-inner span:nth-child(5) { animation-delay: .33s; }
.loader-inner span:nth-child(6) { animation-delay: .40s; }
.loader-inner span:nth-child(7) { animation-delay: .47s; }
@keyframes load-letter {
  to { opacity: 1; transform: translateY(0); }
}

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 250, 247, 0.6);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(250, 250, 247, 0.92);
  border-bottom-color: var(--line);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  transition: transform .4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.05); }
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo-img-light {
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  gap: 28px;
}
.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-3);
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width .35s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(51, 203, 152, 0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(51, 203, 152, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-xl { padding: 20px 36px; font-size: 1.05rem; }
.btn-header { padding: 10px 20px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(51, 203, 152, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.6);
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  position: relative;
  white-space: nowrap;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 8px;
  background: var(--green);
  opacity: .25;
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-3);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
}
.hero-meta span {
  font-size: .82rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 580px;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .6s var(--ease);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 {
  top: 0; right: 0;
  width: 70%; height: 75%;
  animation: float-slow 8s ease-in-out infinite;
}
.hero-img-2 {
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  animation: float-slow 8s ease-in-out infinite reverse;
  animation-delay: -4s;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(51, 203, 152, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(51, 203, 152, .6); }
  70% { box-shadow: 0 0 0 12px rgba(51, 203, 152, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 203, 152, 0); }
}

/* Marquee */
.marquee {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.marquee-track span:nth-child(even) { color: var(--green-dark); font-style: italic; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== SECTION DEFAULTS ============== */
.section { padding: 100px 0; position: relative; }

.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 600px;
}
.section-head.center p { margin: 0 auto; }

/* ============== ABOUT ============== */
.section-about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }

.about-stamp {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--green);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(51, 203, 152, 0.4);
}
.about-stamp span { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.about-stamp strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; line-height: 1; color: #ffffff; }

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--ink-3);
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink-2);
}
.about-list li .icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}
.about-list li .icon svg { width: 14px; height: 14px; display: block; }

/* ============== COLLECTION ============== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-tall { grid-row: span 2; grid-column: span 1; }
.card-img {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 19, 15, 0.45) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.card:hover .card-img::after { opacity: 1; }

.card-body {
  padding: 22px 24px;
  background: var(--white);
  position: relative;
}
.card-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.card-body p {
  font-size: .92rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  line-height: 1.5;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(51, 203, 152, 0.3);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), gap .3s var(--ease);
}
.card-link svg {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease);
}
.card:hover .card-link {
  background: var(--green-dark);
  gap: 12px;
  box-shadow: 0 6px 18px rgba(51, 203, 152, 0.45);
}
.card:hover .card-link svg { transform: translateX(2px); }

/* ============== BRANDS ============== */
.section-brands { background: var(--white); }
.brands-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-4);
  font-weight: 400;
  letter-spacing: -.01em;
  padding: 16px 8px;
  transition: color .3s var(--ease), transform .3s var(--ease);
  cursor: default;
}
.brand:hover {
  color: var(--ink);
  transform: scale(1.05);
}

/* ============== REVIEWS ============== */
.section-reviews { background: var(--bg-soft); }
.section-reviews .section-head { max-width: 100%; }
.section-reviews .section-head h2 { white-space: nowrap; }
@media (max-width: 720px) {
  .section-reviews .section-head h2 { white-space: normal; }
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stars {
  display: inline-flex;
  gap: 4px;
  color: var(--green);
}
.stars svg { width: 18px; height: 18px; }
.review p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
}
.review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review footer strong {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.review footer span {
  font-size: .82rem;
  color: var(--ink-4);
}

/* ============== CTA ============== */
.section-cta { padding: 240px 0 60px 0; }
.cta-card {
  background: var(--ink) radial-gradient(circle at 85% -20%, rgba(51, 203, 152, .18), transparent 55%) no-repeat;
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 60px 60px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  overflow: visible;
  min-height: 280px;
}
.cta-content {
  position: relative;
  padding-bottom: 60px;
}
.cta-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--bg);
  margin: 12px 0 28px;
  position: relative;
}
.cta-card .btn { position: relative; }
.cta-photo {
  position: relative;
  align-self: end;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cta-photo img {
  display: block;
  max-height: 430px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  margin-top: -80px;
}

/* ============== VISIT ============== */
.section-visit { background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.visit-text {
  position: sticky;
  top: 110px;
}
.visit-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}
.visit-text > p {
  font-size: 1.05rem;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.visit-info {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.visit-info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-info li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-icon svg { width: 18px; height: 18px; }

.visit-info strong {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}
.visit-info span, .visit-info a {
  font-size: 1rem;
  color: var(--ink-2);
  font-weight: 500;
}
.visit-info a {
  color: var(--green-dark);
  transition: color .25s var(--ease);
}
.visit-info a:hover { color: var(--ink); }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: rgba(250, 250, 247, 0.7);
  padding: 80px 0 32px;
}
.footer .logo, .footer .logo-mark { color: var(--bg); }
.footer .logo-mark { background: var(--green); color: var(--ink); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 16px;
  max-width: 360px;
  font-size: .95rem;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-cols h4 {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 18px;
}
.footer-cols a, .footer-cols span {
  display: block;
  font-size: .95rem;
  color: rgba(250, 250, 247, 0.65);
  margin-bottom: 10px;
  transition: color .25s var(--ease);
}
.footer-cols a:hover { color: var(--green); }

.contact-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.contact-line svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(250, 250, 247, 0.45);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 250, 247, 0.65);
  transition: color .25s var(--ease), opacity .25s var(--ease);
}
.footer-credit:hover { color: var(--green); opacity: 1; }
.footer-credit img {
  height: 38px;
  width: auto;
  display: block;
}

/* ============== FLOATING WHATSAPP ============== */
.float-wpp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  z-index: 99;
  box-shadow: 0 10px 28px rgba(51, 203, 152, 0.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-wpp::before,
.float-wpp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  z-index: -1;
  opacity: .65;
  animation: wpp-pulse 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.float-wpp::after { animation-delay: 1.2s; }
.float-wpp:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 36px rgba(51, 203, 152, 0.6);
}
@keyframes wpp-pulse {
  0%   { transform: scale(1);    opacity: .65; }
  80%  { transform: scale(1.7);  opacity: 0;   }
  100% { transform: scale(1.7);  opacity: 0;   }
}

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero { padding: 130px 0 60px; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .hero-content { display: contents; }
  .hero-content .eyebrow { order: 1; align-self: flex-start; margin-bottom: 0; }
  .hero-title { order: 2; margin-top: -16px; }
  .hero-visual { order: 3; height: 460px; width: 100%; align-self: stretch; }
  .hero-sub { order: 4; }
  .hero-cta { order: 5; margin-top: -12px; }
  .hero-meta { order: 6; gap: 0; flex-wrap: nowrap; justify-content: space-between; border-top: none; padding-top: 0; margin-top: -10px; width: 100%; align-self: stretch; }
  .hero-meta div { flex: 0 0 auto; align-items: center; text-align: center; }
  .hero-meta strong { font-size: 2.4rem; }
  .hero-meta span { font-size: .9rem; line-height: 1.25; letter-spacing: .06em; white-space: normal; }

  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { aspect-ratio: 16/12; max-width: 600px; }
  .visit-text { position: static; top: auto; }
  .visit-map { height: 420px; }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
  }
  .card-tall { grid-row: span 1; }

  .reviews-grid { grid-template-columns: 1fr; }
  .brands-row { grid-template-columns: repeat(3, 1fr); }

  .section-cta { padding: 60px 0; }
  .section-cta .cta-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
    min-height: auto;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
  .cta-card h2 { font-size: 2rem; line-height: 1.3em; }
  .cta-content { padding-bottom: 0; }
  .cta-photo { display: none; }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    align-self: stretch;
  }
  .hero-cta .btn,
  .cta-card .btn,
  .visit-text .btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .card-link {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .95rem;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .btn-header { display: none; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 28px 24px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 20px;
  }
  .nav.open .nav-link { font-size: 1.1rem; }

  .btn-header { padding: 8px 16px; font-size: .85rem; }
  .btn-header svg { display: none; }

  .section { padding: 70px 0; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { flex-wrap: nowrap; gap: 0; justify-content: space-between; }
  .hero-meta strong { font-size: 2rem; }
  .hero-meta span { font-size: .8rem; letter-spacing: .04em; white-space: normal; }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .brands-row { grid-template-columns: repeat(2, 1fr); }

  .footer-cols { grid-template-columns: 1fr; gap: 28px; }

  .float-wpp { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .float-wpp svg { width: 24px; height: 24px; }

  .marquee-track { font-size: 1.2rem; gap: 24px; animation-duration: 18s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
