/* ══════════════════════════════════════════════
   Lumière Studio — styles.css
   Archetype 04: Glassmorphism Modern
   ══════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --bg:        #fdf8f5;
  --bg-2:      #f5ede6;
  --ink:       #1f1714;
  --ink-soft:  #4a3f3a;
  --ink-mute:  #9e8c85;
  --accent:    #c97a6a;
  --accent-2:  #e8b4a0;
  --accent-3:  #9b7fa8;
  --glass:     rgba(255, 255, 255, 0.55);
  --glass-2:   rgba(255, 255, 255, 0.3);
  --line:      rgba(31, 23, 20, 0.1);
  --nav-h:     72px;
  --radius:    20px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Gradient mesh stops */
  --g1: #ffd6c4;
  --g2: #e8c4f0;
  --g3: #c4d8f0;
  --g4: #f0e4c4;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
}
h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
}

.kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(201, 122, 106, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 122, 106, 0.45);
  background: #b8695a;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.btn-nav {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Glass Card ─── */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
}

/* ─── Reveal animation ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Mandatory gotcha A.4.5 */
[data-reveal][data-split] { opacity: 1; transform: none; }

/* ─── Mesh gradient (shared) ─── */
.mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px) saturate(160%);
}

/* ─── Section layout ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  text-wrap: balance;
  max-width: 22ch;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SPLASH
   ══════════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), clip-path 0.8s var(--ease-out);
  /* CSS safety net: hide at 5s even if JS fails */
  animation: splashSafety 0.01s 5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: splashFade 0.6s var(--ease-out) both;
}
@keyframes splashFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.splash-scissors {
  width: 48px;
  height: 48px;
  color: var(--accent);
  animation: splashSpin 1.4s ease-in-out infinite alternate;
}
@keyframes splashSpin {
  from { transform: rotate(-8deg); }
  to   { transform: rotate(8deg); }
}

.splash-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink);
}

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-scissors { width: 24px; height: 24px; color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(253, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-mobile.is-open { transform: none; }
.nav-mobile a { font-size: 1.1rem; color: var(--ink-soft); padding: 0.3rem 0; }
.nav-mobile .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, var(--g1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, var(--g2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 60% 10%, var(--g3) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, var(--g4) 0%, transparent 55%);
  filter: blur(80px) saturate(150%);
  animation: meshDrift 20s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33%       { transform: scale(1.08) rotate(3deg); }
  66%       { transform: scale(0.95) rotate(-3deg); }
}

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

.hero-split {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  text-wrap: balance;
  max-width: 16ch;
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  width: fit-content;
}
@supports (backdrop-filter: blur(12px)) {
  .hero-badge { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.badge-stars { color: #f59e0b; font-size: 0.9rem; }
.hero-badge strong { color: var(--ink); }

.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 80px rgba(31, 23, 20, 0.18), 0 8px 24px rgba(31, 23, 20, 0.08);
}
.hero-img {
  transition: transform 8s ease-in-out;
}
.hero-img:hover { transform: scale(1.04); }

.hero-image-pill {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
@supports (backdrop-filter: blur(12px)) {
  .hero-image-pill { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.pill-hours { color: var(--accent); font-size: 0.75rem; }

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--line);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  border: 1px solid var(--line);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(201, 122, 106, 0.12);
  border-color: var(--accent-2);
}
.service-icon {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.service-card h3 {
  font-size: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.service-price {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201, 122, 106, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-top: 0.25rem;
  width: fit-content;
}

/* ══════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════ */
.gallery {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
}
.gallery .section-inner { margin-bottom: 2rem; }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: saturate(1.05);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.18) brightness(1.04);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(31,23,20,0.7));
  color: #fff;
  font-size: 0.8rem;
  padding: 2rem 1rem 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ══════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════ */
.team {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(31, 23, 20, 0.1);
}
.team-photo-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-photo { transition: transform 0.6s var(--ease-out); }
.team-card:hover .team-photo { transform: scale(1.05); }
.team-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.team-info h3 {
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
}
.team-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.team-bio {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 0.4rem;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.team-tags span {
  font-size: 0.72rem;
  background: rgba(201,122,106,0.1);
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════ */
.reviews {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: var(--bg-2);
}
.reviews-mesh {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(232,180,160,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(155,127,168,0.3) 0%, transparent 60%);
  filter: blur(80px);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.reviews-stars { color: #f59e0b; }
.reviews-summary strong { color: var(--ink); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.7);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31,23,20,0.08);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 600; }
.review-date { font-size: 0.75rem; color: var(--ink-mute); }
.review-rating {
  margin-left: auto;
  color: #f59e0b;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.review-card blockquote p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.review-google {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--ink-mute);
  margin-top: auto;
}
.review-google svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-block { display: flex; flex-direction: column; gap: 0.5rem; }
.info-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.info-title svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.info-block p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.info-block p em { font-style: normal; color: var(--accent); font-size: 0.8rem; }
.info-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
  transition: opacity 0.2s;
}
.info-link:hover { opacity: 0.7; }

.hours-list { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-closed { opacity: 0.5; }
.hours-list li span:last-child { font-weight: 500; color: var(--ink); }

.contact-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31,23,20,0.1);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg-2);
}
.cta-mesh {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,122,106,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(232,180,160,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 80% 70%, rgba(155,127,168,0.2) 0%, transparent 60%);
  filter: blur(80px);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-wrap: balance;
}
.cta-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 44ch;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-right: auto;
}
.footer-scissors { width: 20px; height: 20px; color: var(--accent); }
.footer-address { font-size: 0.8rem; color: var(--ink-mute); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--ink-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  width: 100%;
  font-size: 0.75rem;
  color: var(--ink-mute);
}

/* ══════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  color: #fff;
}
.float-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.float-btn--wa { background: #25D366; }
.float-btn--call { background: var(--accent); }

.float-label { font-size: 0.8rem; white-space: nowrap; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-sub { margin: 0 auto; }
  .hero-badge { margin: 0 auto; }
  .hero-image-frame { max-width: 340px; margin: 0 auto; }

  .stats-inner { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 0.75rem 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--tall { grid-row: unset; }
  .gallery-item--wide { grid-column: unset; aspect-ratio: 4/5; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 4/3; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  .float-label { display: none; }
  .float-btn { padding: 0.9rem; }
}

@media (max-width: 479px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { aspect-ratio: 4/3; }
}
