/* ===========================
   Andréa Her Studio — Styles
=========================== */

:root {
  --black: #0a0908;
  --black-soft: #121110;
  --black-card: #16151388;
  --white: #f8f6f2;
  --white-dim: #cfc9be;
  --gold: #d4af6a;
  --gold-light: #f2dba3;
  --gold-deep: #a9803f;
  --border-glass: rgba(212, 175, 106, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
}

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

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

::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-deep), var(--gold)); border-radius: 10px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 560px;
  font-weight: 300;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}
.section-head .section-sub { margin-top: -8px; }

/* ===== Glass ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn-gold, .btn-outline { overflow: hidden; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
  box-shadow: 0 6px 24px rgba(212,175,106,0.28), 0 0 0 0 rgba(212,175,106,0.5);
  animation: goldGlowPulse 2.8s ease-in-out infinite;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform .7s var(--ease);
}
.btn-gold:hover::before { transform: translateX(120%) skewX(-20deg); }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(212,175,106,0.55);
  animation-play-state: paused;
}
@keyframes goldGlowPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(212,175,106,0.28), 0 0 0 0 rgba(212,175,106,0.35); }
  50% { box-shadow: 0 6px 24px rgba(212,175,106,0.4), 0 0 22px 4px rgba(212,175,106,0.35); }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== Cursor glow ===== */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,106,0.10) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity .3s ease;
  will-change: transform;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.loader-logo em { font-style: italic; color: var(--gold); }
.loader-line {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px auto 0;
  overflow: hidden;
  position: relative;
}
.loader-line span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSweep 1.2s ease-in-out infinite;
}
@keyframes loaderSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(10,9,8,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}
.logo em { font-style: italic; color: var(--gold); }
.main-nav { display: flex; gap: 36px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 600;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,175,106,0.10), transparent 55%),
    linear-gradient(160deg, #1c1a16 0%, var(--black) 60%);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.55) saturate(1.05);
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.1) translateY(0); }
  100% { transform: scale(1.18) translateY(-1.5%); }
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.35) 35%, rgba(10,9,8,0.85) 85%, var(--black) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.15) 55%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0.6;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(10vh) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; padding-top: 80px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6.5vw, 5.4rem);
  line-height: 1.35;
  max-width: 880px;
  margin-bottom: 26px;
  letter-spacing: 0.005em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-bottom: 0.1em;
}
.hero-title .gold-text { padding-bottom: 0.08em; display: inline-block; line-height: 1.35; }
.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-top: 6px;
  max-width: 120px;
}
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.12); }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { opacity: 0.4; }
  100% { top: 22px; opacity: 0; }
}

/* ===== Reveal animations ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.12s);
}
.reveal-up { transform: translateY(48px); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== Hero badges ===== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-badge {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

/* ===== Marquee ===== */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--black-soft);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 22px 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white-dim);
  letter-spacing: 0.01em;
}
.marquee-track .dot {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ===== Authority ===== */
.authority { padding: 120px 0; position: relative; overflow: hidden; }
.authority::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,106,0.08), transparent 70%);
  pointer-events: none;
}
.authority-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
}
.authority-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 70px;
}
.authority-big {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  padding-bottom: 0.05em;
}
.authority-big-label {
  font-size: 1.1rem;
  color: var(--white-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 14px;
}
.authority-text .section-sub { max-width: 620px; margin-top: 6px; }

/* ===== About ===== */
.about { padding: 160px 0; position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-media { position: relative; }
.about-frame { position: relative; padding: 20px; }
.about-img-main {
  border-radius: 18px;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.about-img-float {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid var(--black);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: floatSlow 6s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.about-badge {
  position: absolute;
  top: 10px;
  right: -20px;
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.1;
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
}
.about-badge span { font-size: 0.72rem; color: var(--white-dim); margin-top: 4px; }

.about-text {
  color: var(--white-dim);
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.about-text strong { color: var(--white); font-weight: 500; }
.about-list { list-style: none; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--white-dim); }
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(212,175,106,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.ig-link:hover { border-color: var(--gold); }

/* ===== Services ===== */
.services { padding: 140px 0 160px; position: relative; }
.services-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,106,0.09), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,106,0.4);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,106,0.15);
}
.service-card:active { transform: translateY(-6px) scale(0.985); }
.card-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,219,163,0.55) 0%, rgba(212,175,106,0.25) 45%, transparent 72%);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 3;
  animation: rippleExpand 0.9s var(--ease) forwards;
}
@keyframes rippleExpand {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
.service-card.featured { grid-column: span 1; }
.service-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.08); }
.service-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.7));
}
.service-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.service-body { padding: 26px 26px 24px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-body p {
  color: var(--white-dim);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); font-weight: 600; }
.price small { display: block; font-family: var(--font-body); font-size: 0.68rem; color: var(--white-dim); font-weight: 300; text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== Differentials ===== */
.differentials { padding: 140px 0; position: relative; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 34px 24px;
  border-radius: 18px;
  text-align: center;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.diff-card:hover { transform: translateY(-8px); border-color: rgba(212,175,106,0.4); }
.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212,175,106,0.08);
  color: var(--gold);
}
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== Gallery ===== */
.gallery { padding: 100px 0 150px; overflow: hidden; }
.gallery .container { margin-bottom: 10px; }
.gallery-track-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 20px;
}
.gallery-track {
  display: flex;
  gap: 22px;
  padding: 0 32px;
  width: max-content;
}
.gallery-item {
  width: 300px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: saturate(0.95);
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.1) brightness(1.05); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(212,175,106,0);
  border-radius: 16px;
  transition: border-color .4s ease;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(212,175,106,0.5); }
.gallery-item::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(10,9,8,0.88) 85%);
  pointer-events: none;
  z-index: 1;
}
.gallery-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

/* ===== CTA strip ===== */
.cta-strip {
  padding: 90px 0;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,106,0.10), transparent 60%),
    var(--black-soft);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 600;
  max-width: 560px;
}

/* ===== How it works ===== */
.how-it-works { padding: 140px 0; position: relative; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  padding: 32px 22px;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
  background: rgba(212,175,106,0.06);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p { font-size: 0.85rem; color: var(--white-dim); font-weight: 300; line-height: 1.6; }
.step-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 1px;
  margin-top: 27px;
  background: linear-gradient(90deg, var(--border-glass), rgba(212,175,106,0.5), var(--border-glass));
}

/* ===== Location ===== */
.location { padding: 150px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.location-info { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  transition: transform .4s var(--ease), border-color .4s ease;
}
.info-item:hover { transform: translateX(6px); border-color: rgba(212,175,106,0.4); }
.info-icon { font-size: 1.4rem; }
.info-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.info-item p { color: var(--white-dim); font-size: 0.88rem; font-weight: 300; }
.payment-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.payment-chips span {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(212,175,106,0.08);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
}
.location-cta { margin-top: 30px; }
.location-map {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--border-glass);
  filter: grayscale(0.3) contrast(1.1);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Instagram CTA ===== */
.instagram-cta {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black-soft);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.instagram-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212,175,106,0.12), transparent 70%);
  pointer-events: none;
}
.instagram-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instagram-icon-big {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212,175,106,0.08);
  border: 1px solid var(--border-glass);
  margin-bottom: 26px;
}
.instagram-sub { margin: 0 auto 34px; }

/* ===== CTA Final ===== */
.cta-final {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final-glow {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,175,106,0.14), transparent 65%);
  pointer-events: none;
}
.cta-final-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.cta-final-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.3;
  margin: 8px 0 20px;
}
.cta-final-sub { margin: 0 auto 40px; }
.cta-final-btn { margin-bottom: 22px; }
.cta-final-phone {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white-dim);
  letter-spacing: 0.02em;
  transition: color .3s ease;
}
.cta-final-phone:hover { color: var(--gold-light); }

/* ===== Footer ===== */
.site-footer {
  position: relative;
  padding: 100px 0 0;
  background: var(--black-soft);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,175,106,0.10), transparent 70%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: var(--white-dim); font-size: 0.9rem; font-weight: 300; margin: 18px 0 22px; max-width: 320px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .3s var(--ease), border-color .3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--black); transform: translateY(-4px); border-color: var(--gold); }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-links strong, .footer-contact strong { color: var(--white); font-size: 0.9rem; margin-bottom: 6px; letter-spacing: 0.03em; }
.footer-links a, .footer-contact p { color: var(--white-dim); font-size: 0.9rem; font-weight: 300; }
.footer-links a { transition: color .3s ease; width: fit-content; }
.footer-links a:hover { color: var(--gold); }
.footer-cta { margin-top: 8px; width: fit-content; }

.footer-bottom {
  padding: 26px 32px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: max(28px, env(safe-area-inset-bottom));
  right: max(28px, env(safe-area-inset-right));
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2be07a, #1da851);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 400;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(43,224,122,0.55);
  animation: waRing 2.4s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(43,224,122,0.3);
  animation: waRing 2.4s ease-out infinite .5s;
  pointer-events: none;
}
.whatsapp-float svg { position: relative; z-index: 1; filter: drop-shadow(0 0 6px rgba(255,255,255,0.35)); }
.whatsapp-float:hover {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 14px 40px rgba(37,211,102,0.65);
}
@keyframes waRing {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .authority-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .authority-number { border-right: none; padding-right: 0; align-items: center; }
  .steps-grid { flex-wrap: wrap; }
  .step-card { flex: 0 0 45%; }
  .step-connector { display: none; }
}

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

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: 78%;
    max-width: 320px;
    background: rgba(10,9,8,0.97);
    backdrop-filter: blur(20px);
    padding: 120px 40px;
    gap: 30px;
    z-index: 550;
    border-left: 1px solid var(--border-glass);
    animation: slideIn .5s var(--ease);
  }
  @keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  .main-nav.mobile-open a { font-size: 1.1rem; }

  .about, .services, .location, .differentials, .how-it-works, .authority { padding: 72px 0; }
  .cta-strip { padding: 60px 0; }
  .gallery { padding: 64px 0 90px; }
  .site-footer { padding: 64px 0 0; }
  .section-head { margin-bottom: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-frame { padding: 20px 30px 20px 20px; }
  .about-img-float { width: 46%; left: 0; bottom: -30px; }
  .about-badge { right: 0; }
  .hero-title { font-size: clamp(2.1rem, 8vw, 3.2rem); line-height: 1.4; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .authority-big { font-size: clamp(4.5rem, 20vw, 7rem); }
  .marquee-track span { font-size: 1.1rem; }
  .marquee { padding: 16px 0; }
  .instagram-cta, .cta-final { padding: 72px 0; }
  .cta-final-title { line-height: 1.35; }
  .location-cta { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .about, .services, .location, .differentials, .how-it-works, .authority { padding: 56px 0; }
  .cta-strip { padding: 48px 0; }
  .gallery { padding: 48px 0 70px; }
  .marquee { padding: 14px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; }
  .stat-label { max-width: 100px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: span 1; }
  .about-frame { padding: 16px 26px 16px 16px; }
  .about-badge { right: 0; top: -10px; padding: 14px 16px; }
  .about-badge strong { font-size: 1.6rem; }
  .about-img-float { width: 50%; left: 0; bottom: -24px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: max(18px, env(safe-area-inset-bottom)); right: max(18px, env(safe-area-inset-right)); }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); line-height: 1.42; }
  .hero-sub { font-size: 1rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .step-card { flex: 0 0 100%; }
  .authority-big { font-size: 4.2rem; }
  .authority-big-label { font-size: 0.9rem; }
  .instagram-cta, .cta-final { padding: 64px 0; }
  .payment-chips { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
