/* =============================================
   AIRES PATISSERIE — Folha de Estilos
   ============================================= */

/* === TOKENS === */
:root {
  --burgundy:       #4a1528;
  --burgundy-dark:  #361020;
  --burgundy-hover: #5c1c33;
  --rose:           #c9a4a0;
  --rose-light:     #e8d4cf;
  --rose-btn:       #b8928e;
  --cream:          #faf6f2;
  --cream-mid:      #f0e6de;
  --cream-dark:     #e5d7cf;
  --text:           #2c1810;
  --text-mid:       #7a5248;
  --text-light:     #a8776e;
  --white:          #ffffff;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Inter', sans-serif;

  --nav-h: 76px;
  --max-w: 1200px;
  --gap:   clamp(1rem, 3vw, 2rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.07);
  --shadow:    0 6px 32px rgba(44, 24, 16, 0.11);
  --shadow-lg: 0 12px 56px rgba(44, 24, 16, 0.16);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; font-family: var(--ff-body); letter-spacing: 0.02em; }

em { font-style: italic; }

p { line-height: 1.75; }

/* === UTILITIES === */
.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.section-head h2 { margin-bottom: 1rem; }

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--rose {
  background: var(--rose-btn);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(185, 146, 142, 0.35);
}
.btn--rose:hover { background: #a07e7a; box-shadow: 0 6px 20px rgba(185, 146, 142, 0.45); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.btn--burgundy {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 21, 40, 0.3);
}
.btn--burgundy:hover { background: var(--burgundy-hover); box-shadow: 0 6px 24px rgba(74, 21, 40, 0.4); }

.btn--outline-dark {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn--outline-dark:hover { background: var(--burgundy); color: var(--white); }

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }


/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand { display: flex; align-items: center; }

.nav__logo {
  height: 52px;
  width: auto;
  transition: opacity 0.2s;
}

.nav__logo--dark { display: none; }
.nav__logo--light { display: block; }
.nav.scrolled .nav__logo--dark { display: block; }
.nav.scrolled .nav__logo--light { display: none; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease-out);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav.scrolled .nav__link { color: var(--text-mid); }
.nav.scrolled .nav__link:hover { color: var(--burgundy); }

.nav__order {
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav__order:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.nav.scrolled .nav__order {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.nav.scrolled .nav__order:hover { background: var(--burgundy); color: var(--white); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
  border-radius: 2px;
}

.nav.scrolled .nav__burger span { background: var(--burgundy); }

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(201,164,160,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(201,164,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 5vw, 3rem) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: heroFadeIn 1.2s var(--ease-out) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__logo {
  width: clamp(280px, 52vw, 600px);
  height: auto;
  filter: brightness(0) invert(1);
}

.hero__tagline-img {
  width: clamp(160px, 28vw, 320px);
  height: auto;
  margin-top: -3.5rem;
}

@media (max-width: 768px) {
  .hero__tagline-img {
    width: clamp(180px, 55vw, 280px);
    margin-top: -1rem;
  }
}

.hero__desc {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  max-width: 440px;
  letter-spacing: 0.01em;
}

.hero__sub {
  color: rgba(255,255,255,0.45);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 300;
  max-width: 460px;
  letter-spacing: 0.02em;
  margin-top: -0.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  transition: color 0.2s, transform 0.2s;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero__scroll:hover { color: rgba(255,255,255,0.8); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--cream);
}

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about__visual:hover .about__img-wrap img { transform: scale(1.03); }

.about__floater {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.about__floater img { width: 100%; filter: opacity(0.7); }

.about__text { display: flex; flex-direction: column; gap: 1rem; }

.about__text h2 {
  margin-bottom: 0.25rem;
  color: var(--burgundy);
}

.about__text p { color: var(--text-mid); font-size: 0.97rem; }

.about__closing {
  font-family: var(--ff-display);
  font-size: 1.1rem !important;
  font-style: italic;
  color: var(--text) !important;
  padding-top: 0.5rem;
  border-top: 1px solid var(--cream-dark);
}

.about__signature {
  margin-top: 1.25rem;
  height: 180px;
  width: auto;
  align-self: flex-start;
  filter: opacity(0.75);
}


/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-mid);
}

.gallery .section-head {
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 6px;
  padding: 0 6px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--burgundy-dark);
}

.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out), filter 0.4s;
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(53, 16, 32, 0.82));
  color: rgba(255,255,255,0.92);
  padding: 2.5rem 1.25rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}

.gallery__item:hover .gallery__caption { transform: translateY(0); }


/* =============================================
   MENU SECTION
   ============================================= */
.menu-sec {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--cream);
}

.menu-sec__inner { max-width: 840px; margin: 0 auto; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 1px; }

.accordion__item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.accordion__item.is-open {
  box-shadow: var(--shadow-sm);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.85rem 3rem;
  text-align: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.accordion__trigger:hover { background: var(--cream); }
.accordion__item.is-open .accordion__trigger { background: var(--cream); }

.accordion__trigger-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
}

.accordion__name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.2;
}

.accordion__sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.accordion__trigger-right {
  position: absolute;
  right: 1.25rem;
  display: flex;
  align-items: center;
}

.accordion__from { display: none; }

.accordion__chevron {
  color: var(--rose);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }

/* Panel */
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.accordion__panel-inner {
  padding: 0 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--cream-mid);
}

.accordion__desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  padding-top: 1.25rem;
}

/* Price cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.price-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-card__size {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  color: var(--burgundy);
  font-weight: 300;
  line-height: 1;
}

.price-card__qty {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.price-card__price {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.25rem;
}

/* Flavor list */
.flavor-list h4 {
  margin-bottom: 0.75rem;
  color: var(--text-mid);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.flavor-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.flavor-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 0.75rem;
  border-left: 2px solid var(--rose-light);
  line-height: 1.5;
}

.flavor-list li strong { color: var(--text); font-weight: 500; }

/* Size tabs (2-col layout inside accordion) */
.size-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.size-tab {
  background: var(--cream);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.size-tab h4 {
  color: var(--burgundy);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 0.35rem;
  margin-bottom: 0.1rem;
}

.size-tab p { font-size: 0.85rem; color: var(--text-mid); }

.simple-list { display: flex; flex-direction: column; gap: 0.4rem; }
.simple-list li { font-size: 0.85rem; color: var(--text-mid); }
.simple-list li strong { color: var(--text); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--cream-mid);
}

.price-row:last-of-type { border-bottom: none; }
.price-row strong { color: var(--text); font-weight: 500; white-space: nowrap; }

.price-row--indent { padding-left: 0.75rem; }
.price-row--indent span { font-size: 0.78rem; color: var(--text-light); }

.note-text {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}


.menu-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--rose);
  background: var(--cream-mid);
  font-size: 0.88rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  border-radius: 0 4px 4px 0;
}

/* =============================================
   ORDERS
   ============================================= */
.orders {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--burgundy);
}

.orders .eyebrow { color: var(--rose-light); }
.orders h2 { color: var(--white); }
.orders .section-sub { color: rgba(255,255,255,0.6); }

.orders__inner { max-width: var(--max-w); margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 3.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,164,160,0.25);
}

.step__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
}

.step p { font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.7; }

.orders__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}


/* =============================================
   LOCATION
   ============================================= */
.location {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--cream-mid);
}

.location__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.location__info { display: flex; flex-direction: column; gap: 2rem; }

.location__info h2 { color: var(--burgundy); }

address p {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

.hours { display: flex; flex-direction: column; gap: 0.1rem; }

.hours h3 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.hours__row:last-child { border-bottom: none; }
.hours__row span:last-child { font-weight: 500; color: var(--text); }
.hours__row--closed span { color: var(--text-light); }
.hours__row--closed span:last-child { color: var(--text-light); font-weight: 400; }
.hours__row--note span { font-size: 0.78rem; color: var(--text-light); font-style: italic; }

.contact-list { display: flex; flex-direction: column; gap: 0.6rem; }

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.contact-item:hover { color: var(--burgundy); }
.contact-item svg { flex-shrink: 0; color: var(--rose); }

.location__map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.location__map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}


/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--burgundy-dark); color: var(--white); }

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  height: 32px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__symbol {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.15;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}


/* =============================================
   FAB — Floating WhatsApp Button
   ============================================= */
.fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}


/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 8, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-out);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem;
  transition: color 0.2s, transform 0.2s;
  z-index: 310;
}

.lightbox__close:hover { color: var(--white); transform: rotate(90deg); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  padding: 0.75rem;
  transition: color 0.2s, transform 0.2s;
  z-index: 310;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover { color: var(--white); transform: translateY(-50%) translateX(-3px); }
.lightbox__next:hover { color: var(--white); transform: translateY(-50%) translateX(3px); }

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}


/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step.reveal { transition-delay: calc(var(--i, 0) * 80ms); }


/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 3rem;
  }

  .about__visual { max-width: 480px; margin: 0 auto; width: 100%; }

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

  .location__inner { grid-template-columns: 1fr; max-width: 680px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile — ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav mobile */
  .nav__burger { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--burgundy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 190;
  }

  .nav__menu.is-open { transform: translateX(0); }

  .nav__menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .nav__link {
    display: block;
    padding: 1.1rem 0;
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .nav__link::after { display: none; }

  .nav__order {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    border-color: var(--rose) !important;
    color: var(--rose) !important;
    justify-content: center;
  }

  /* Gallery mobile */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }

  /* Accordion */
  .accordion__trigger { padding: 1.1rem 1.25rem; }
  .accordion__panel-inner { padding: 0 1.25rem 1.25rem; }
  .accordion__name { font-size: 1.1rem; }
  .accordion__from { display: none; }

  .price-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .size-tabs { grid-template-columns: 1fr; }

  /* Steps */
  .steps { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }

  /* Orders CTA */
  .orders__ctas { flex-direction: column; align-items: stretch; }
  .orders__ctas .btn { justify-content: center; }

  /* Hero */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery__item--tall,
  .gallery__item--wide { grid-row: span 1; grid-column: span 1; }

  .price-grid { grid-template-columns: 1fr; }

  .accordion__trigger-right { display: flex; }
}
