@import url('https://fonts.cdnfonts.com/css/american-captain-2');

:root {
  --ink: #14161c;
  --ink-soft: rgba(20, 22, 28, .62);
  --ink-wash: rgba(20, 22, 28, .07);
  --ink-wash-strong: rgba(20, 22, 28, .14);
  --muted: #676c78;
  --bg: #ffffff;
  --glass: rgba(255, 255, 255, .55);
  --glass-strong: rgba(255, 255, 255, .8);
  --glass-border: rgba(255, 255, 255, .75);
  --shadow: 0 24px 60px -28px rgba(15, 17, 23, .35);
  --radius: 24px;
  --brand-red: #c23424;
  --brand-mustard: #eccb41;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--ink);
}

h1, h2, h3 {
  font-family: 'American Captain', sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

/* American Captain's accented glyphs are broken in Safari (garbled shape
   uppercase, a smiley-face dingbat lowercase) — known issue, left as-is
   for now per user call. Literal capital + no transform is the least-bad
   form tried so far. */
.accent-fix {
  text-transform: none;
}

p { line-height: 1.6; color: var(--muted); margin: 0 0 1em; }

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section { position: relative; padding: 7rem 6vw; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.hero .eyebrow { color: rgba(255, 255, 255, .88); }
.hero .eyebrow::before { display: none; }

@media (prefers-reduced-motion: reduce) {
  .ribbon__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Glass card ---------- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 1rem;
  left: 6vw;
  right: 6vw;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px) saturate(160%) brightness(1.12);
  -webkit-backdrop-filter: blur(10px) saturate(160%) brightness(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    inset 0 -1px 0 rgba(0, 0, 0, .05),
    0 20px 40px -16px rgba(15, 17, 23, .4);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, .3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .5),
    inset 0 -1px 0 rgba(0, 0, 0, .05),
    0 20px 40px -14px rgba(15, 17, 23, .45);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'American Captain', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .04em;
}

.wordmark__mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2b2e38, var(--ink));
  display: inline-block;
}

.wordmark__logo {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .95rem;
  font-weight: 600;
}

.nav-links a { opacity: .65; transition: opacity .2s ease, color .2s ease; }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  opacity: 1 !important;
}
.nav-cta:hover { background: #2b2e38; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 14px 30px -12px rgba(20, 22, 28, .35); }
.btn--primary:hover { background: #2b2e38; }

.btn--ghost {
  background: var(--glass);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--glass-strong); }

.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 9, 12, .74) 0%, rgba(8, 9, 12, .46) 36%, rgba(8, 9, 12, .1) 62%, rgba(8, 9, 12, 0) 82%);
}

.hero__content {
  position: relative;
  max-width: 42rem;
}

.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-bottom: 1.2rem;
  color: #fff;
}
.hero__title-accent { color: #fff; }

.hero__sub {
  font-size: 1.1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, .82);
}

.hero__actions { display: flex; gap: 1rem; margin: 1.6rem 0 2rem; flex-wrap: wrap; }

.hero__actions .btn {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  overflow: hidden;
}
.hero__actions .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(165deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .08) 45%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.hero__actions .btn--primary {
  background: rgba(255, 255, 255, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .7),
    inset 0 -1px 0 rgba(0, 0, 0, .1),
    0 14px 30px -14px rgba(0, 0, 0, .55);
}
.hero__actions .btn--primary:hover { background: rgba(255, 255, 255, .32); }

.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    inset 0 -1px 0 rgba(0, 0, 0, .08),
    0 10px 24px -16px rgba(0, 0, 0, .45);
}
.hero__actions .btn--ghost:hover { background: rgba(255, 255, 255, .2); }

.hero__pills {
  display: flex;
  gap: .6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero__pills li {
  font-size: .8rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  color: #fff;
}

/* ---------- Section head ---------- */
.section-head { max-width: 40rem; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .8rem; }

.section-head--services {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: right;
}
.section-head--services h2,
.section-head--services p {
  max-width: 34rem;
  margin-left: auto;
}
.section-head--services h2 {
  font-size: clamp(3.6rem, 7.5vw, 6.2rem);
  color: var(--brand-red);
  margin-bottom: -.3rem;
}

.eyebrow--side {
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0;
}
.eyebrow--side::before { display: none; }

/* ---------- Services ---------- */
.services {
  background-image: url('assets/palm-bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 901px) {
  .hero {
    min-height: 0;
    aspect-ratio: 2000 / 1124;
  }
}

.service-card {
  aspect-ratio: 3 / 4;
  perspective: 1400px;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card:hover .service-card__inner,
.service-card.is-flipped .service-card__inner,
.service-card:focus-visible .service-card__inner {
  transform: rotateY(180deg);
}

.service-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4, .1, .2, 1);
  transform-style: preserve-3d;
}

.service-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
}

.service-card__face--front {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .7),
    var(--shadow);
}
.service-card__face--front.placeholder {
  background-image: none !important;
  background: linear-gradient(160deg, #4b5163, #9aa2b4);
}
.service-card__face--front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 12, .68) 0%, rgba(8, 9, 12, .18) 45%, rgba(8, 9, 12, 0) 65%);
}
.service-card__face--front > * { position: relative; z-index: 1; }

.service-card__face--front h3 { color: #fff; margin: 0; }

.service-card__face--back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow-y: auto;
}

.service-card h3 { font-size: 1.85rem; margin-bottom: .5rem; }
.service-card__face--back h3 { font-size: 1.45rem; margin-bottom: .3rem; }
.service-card p { font-size: .92rem; margin: 0; }

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .78rem;
  font-family: 'Roboto', sans-serif;
}
.service-list li {
  padding: .2rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.25;
}

.service-list__eyebrow {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: .78rem;
  color: var(--ink-soft);
  margin: 0 0 .4rem;
}

.service-list--packs {
  margin-bottom: .6rem;
  padding-bottom: .5rem;
}
.service-list--packs li { color: var(--brand-red); }

.service-list--group { margin-top: .5rem; }

.service-card__link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--ink-wash);
  color: var(--ink);
  font-family: 'Roboto', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease;
}
.service-card__link:hover { background: var(--ink-wash-strong); transform: translateY(-2px); }

/* ---------- Ribbon (cinta divisoria) ---------- */
.ribbon {
  position: relative;
  overflow: hidden;
  background: var(--brand-mustard);
  padding: .5rem 0;
  margin: -.75rem 0;
  transform: rotate(-.8deg) scale(1.02);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .35);
  z-index: 2;
}
.ribbon--right { transform: rotate(.8deg) scale(1.02); }

.ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbon-scroll 24s linear infinite;
}

.ribbon__group { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.ribbon__track span {
  font-family: 'American Captain', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: #c23424;
  text-transform: uppercase;
  letter-spacing: .01em;
  white-space: nowrap;
  padding: 0 .8rem;
  line-height: 1;
  transform: translateY(.03em);
}

@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}

.about__photo {
  display: block;
  width: 100%;
  height: auto;
}
.about__panel--text h2 {
  font-size: clamp(3.6rem, 7.5vw, 6.2rem);
  color: var(--brand-red);
  margin-bottom: 1.2rem;
}
.about__definition { font-size: 1.02rem; font-style: italic; color: var(--ink); margin-bottom: 1.4rem; }

.about__panel--text p { font-size: 1.02rem; }

/* ---------- Instagram ---------- */
.instagram { text-align: center; padding-top: 2rem; }
.instagram .ribbon { margin-bottom: 3rem; margin-left: -6vw; margin-right: -6vw; }

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.4rem;
}

.instagram__grid--live {
  display: block;
}

.instagram__tile {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .25s ease;
}
.instagram__tile svg { width: 26px; height: 26px; }
.instagram__tile:hover { transform: scale(1.05); }

.instagram__tile.placeholder {
  background: linear-gradient(160deg,
    hsl(224, 18%, calc(26% + var(--tile) * 4%)),
    hsl(224, 12%, calc(52% + var(--tile) * 3%)));
  opacity: .95;
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 65%, var(--bg) 100%), url('assets/palm-bg-2.png');
  background-repeat: no-repeat, no-repeat;
  background-position: center, center top;
  background-size: auto, cover;
  z-index: -1;
}

.contact__wax {
  position: absolute;
  left: 6vw;
  bottom: 7rem;
  width: 240px;
  height: auto;
  transform: rotate(-12deg);
}
.contact__wax:hover { animation: wax-spin .7s linear; }

@keyframes wax-spin {
  from { transform: rotate(-12deg); }
  to { transform: rotate(348deg); }
}

.contact__left h2 {
  font-size: clamp(3.6rem, 7.5vw, 6.2rem);
  color: var(--brand-red);
  margin-bottom: .6rem;
}

.contact__flow-btn {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--ink-wash);
  border: none;
  border-radius: 999px;
  padding: .6rem 1.2rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.contact__flow-btn-brand {
  font-family: 'American Captain', sans-serif;
  text-transform: uppercase;
  color: var(--brand-red);
  font-size: 1.5em;
  letter-spacing: .02em;
}
.contact__flow-btn::after {
  content: '→';
  font-weight: 700;
  transition: transform .2s ease;
}
.contact__flow-btn:hover {
  background: var(--ink-wash-strong);
  transform: translateY(-2px);
}
.contact__flow-btn:hover::after { transform: translateX(3px); }

/* ---------- Onboarding modal ---------- */
body.modal-open { overflow: hidden; }

.onboarding-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 6vw;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.onboarding-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease;
}
.onboarding-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 28, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.onboarding-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.8rem;
  background: var(--glass-strong);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}
.onboarding-modal.is-open .onboarding-modal__panel { transform: translateY(0) scale(1); }
.onboarding-modal__panel h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--brand-red);
  margin: .3rem 0 2.2rem;
}
.onboarding-modal__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--ink-wash);
  color: var(--ink);
  cursor: pointer;
}
.onboarding-modal__close:hover { background: var(--ink-wash-strong); }

.onboarding-flow {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.onboarding-flow__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
.onboarding-flow__icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
  border: 4px solid;
  box-shadow: var(--shadow);
  margin-bottom: .2rem;
}
.onboarding-flow__icon--sun {
  background: var(--brand-mustard);
  border-color: var(--brand-red);
}
.onboarding-flow__icon--fire {
  background: var(--brand-red);
  border-color: var(--brand-mustard);
}
.onboarding-flow__step:nth-child(1) .onboarding-flow__icon { transform: rotate(-8deg); }
.onboarding-flow__step:nth-child(3) .onboarding-flow__icon { transform: rotate(6deg); }
.onboarding-flow__step:nth-child(5) .onboarding-flow__icon { transform: rotate(-5deg); }
.onboarding-flow__step h4 { font-size: 1.1rem; margin: 0; text-transform: uppercase; letter-spacing: .02em; }
.onboarding-flow__step p { font-size: .88rem; margin: 0; }
.onboarding-flow__arrow {
  flex-shrink: 0;
  display: block;
  width: 54px;
  text-align: center;
  color: var(--brand-red);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 15px;
}
.onboarding-flow__mini {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 0;
  margin: .4rem 0 0;
}
.onboarding-flow__mini li {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--ink-wash);
  color: var(--ink);
}

@media (max-width: 700px) {
  .onboarding-flow { flex-direction: column; }
  .onboarding-flow__arrow { transform: rotate(90deg); margin: -.3rem 0; }
  .onboarding-modal__panel { padding: 2.2rem 1.6rem; }
}

.contact__form {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field { display: flex; flex-direction: column; gap: .4rem; font-weight: 700; font-size: .85rem; }
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 24, 28, .15);
  background: rgba(255, 255, 255, .7);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.hp-field { position: absolute; left: -9999px; }

.contact__status { font-size: .85rem; font-weight: 700; color: var(--ink); min-height: 1.2em; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  min-height: 300px;
  padding: 3rem 6vw;
  padding-right: calc(6vw + 160px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.site-footer__brand { align-self: flex-start; display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; z-index: 1; }
.site-footer__logo { height: 32px; width: auto; }
.site-footer__email { margin-top: 1.3rem; font-size: .9rem; font-weight: 600; color: var(--ink); }

.site-footer__rio {
  position: absolute;
  right: 6vw;
  bottom: 0;
  height: 88%;
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.site-footer__links {
  align-self: flex-start;
  margin-top: 3.8rem;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-weight: 600;
  font-size: .9rem;
  z-index: 1;
}
.site-footer__links a { color: var(--ink); }

.site-footer__social { display: flex; gap: .7rem; margin-top: 1rem; z-index: 1; }
.site-footer__social a {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-red);
}
.site-footer__social a svg { width: 100%; height: 100%; }
.site-footer__social a:hover { opacity: .7; }

.site-footer__copy {
  position: absolute;
  left: 6vw;
  bottom: 1.4rem;
  font-size: .8rem;
  color: var(--ink);
  opacity: .7;
  z-index: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 5rem 6vw; }

  .hero { min-height: 100vh; padding: 6rem 6vw 1.6rem; }

  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact__wax {
    position: static;
    display: block;
    margin: 2.4rem auto 0;
  }

  .hero__actions { flex-wrap: nowrap; gap: .5rem; margin: 1.4rem 0 1.6rem; }
  .hero__actions .btn { padding: .65rem .9rem; font-size: .76rem; white-space: nowrap; }

  .hero__pills { flex-wrap: nowrap; gap: .35rem; }
  .hero__pills li { padding: .3rem .6rem; font-size: .66rem; white-space: nowrap; }

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

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--glass-strong);
    backdrop-filter: blur(16px);
    padding: 1rem 6vw 1.6rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: .8rem 0; border-bottom: 1px solid rgba(23, 24, 28, .08); }
  .nav-cta { text-align: center; margin-top: .8rem; }

  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-right: 6vw;
  }
  .site-footer__brand { align-self: center; align-items: center; }
  .site-footer__links { align-self: center; margin-top: .5rem; flex-wrap: wrap; justify-content: center; }
  .site-footer__rio {
    position: static;
    height: 140px;
    order: 9;
    margin-top: .5rem;
  }
  .site-footer__social { justify-content: center; }
  .site-footer__copy {
    position: static;
    text-align: center;
    margin-top: 1rem;
    order: 10;
  }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}
.cookie-banner p { margin: 0; flex: 1 1 260px; line-height: 1.5; }
.cookie-banner a { color: #fff; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__btn {
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
}
.cookie-banner__btn--accept { background: var(--brand-red); border-color: var(--brand-red); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}
