/* ============================================================
   UNIQUE CREATIONS PLUS — Luxury Events & Decor
   Design & development by Novelio Technologies · 2026
   Vanilla CSS · Glassmorphism · 3D · Parallax · Micro-motion
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand palette sampled directly from the logo: purple #2b054e + powder blue
     #aadef3, with gold as the luxury accent. Legacy plum/blush token names kept. */
  --plum-950: #1c0437;  /* deep violet base (from logo purple) */
  --plum-900: #250a45;
  --plum-800: #2b054e;  /* exact logo purple — raised surface */
  --plum-700: #3d1a66;
  --gold-600: #b8862f;
  --gold-500: #c9a24b;
  --gold-400: #d9bd74;
  --gold-300: #ecd9a4;
  --blush-500: #5cb8e8;  /* logo blue — medium/interactive */
  --blush-400: #aadef3;  /* exact logo powder blue — light accent */
  --cream: #f4f1fb;
  --ink: #ece7f7;
  --muted: #b3a6cc;
  --error: #ef8fa3;
  --line: rgba(170, 222, 243, 0.20);  /* powder-blue hairline */

  /* Semantic */
  --bg: var(--plum-950);
  --surface: rgba(46, 15, 82, 0.55);
  --surface-solid: #2a0b48;
  --text: var(--ink);
  --text-muted: var(--muted);
  --accent: var(--gold-500);

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Raleway", "Segoe UI", system-ui, sans-serif;

  /* Metrics */
  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-2: 0 18px 40px -12px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 40px -8px rgba(201, 162, 75, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-scale */
  --z-nav: 100;
  --z-topbar: 90;
  --z-sticky: 120;
  --z-overlay: 200;
}

/* ---------- 2. Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #1c0437; /* literal violet — guarantees dark canvas */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background-color: #1c0437; /* literal fallback */
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient luxury background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(201, 162, 75, 0.14), transparent 60%),
    radial-gradient(55% 45% at 90% 5%, rgba(170, 222, 243, 0.18), transparent 55%),
    radial-gradient(70% 60% at 50% 100%, rgba(61, 26, 102, 0.9), transparent 60%),
    var(--plum-950);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; } /* preserve natural aspect ratio */
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1rem; }

::selection { background: var(--gold-500); color: var(--plum-950); }

/* ---------- 3. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.lead { font-size: 1.12rem; color: var(--text-muted); }

.gold-text {
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 45%, var(--blush-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Top Bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--plum-900), var(--plum-800));
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  position: relative;
  z-index: var(--z-topbar);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; color: var(--text-muted); }
.topbar__contact a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.topbar__contact a:hover { color: var(--gold-400); }
.topbar__contact svg { width: 15px; height: 15px; color: var(--gold-500); flex: none; }
.topbar__social { display: flex; gap: 12px; align-items: center; }
.topbar__social a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.topbar__social a:hover { background: var(--gold-500); color: var(--plum-950); transform: translateY(-2px); }
.topbar__social svg { width: 15px; height: 15px; }

/* ---------- 5. Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding-block: 16px;
}
.nav.scrolled {
  background: rgba(28, 4, 55, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; }
.brand__mark {
  width: 66px; height: 66px;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 1.5px var(--gold-500);
  flex: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.brand:hover .brand__mark { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55), 0 0 0 1.5px var(--gold-400); }
.brand__mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast; /* crisper downscale in Chromium */
}
.nav.scrolled .brand__mark { width: 56px; height: 56px; } /* trims slightly when compact */
.brand__name { line-height: 1.05; }
.brand__name b { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: 0.4px; }
.brand__name small { display: block; font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-400); }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-500), var(--blush-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold-300); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--gold-400); transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(100deg, var(--gold-500), var(--gold-400));
  color: var(--plum-950);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px -8px rgba(201, 162, 75, 0.5); }
.btn--ghost { border-color: var(--line); color: var(--text); background: var(--surface); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--gold-500); color: var(--gold-300); transform: translateY(-3px); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- 7. Glass Card ---------- */
.glass {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ---------- 8. Hero ---------- */
.hero { position: relative; padding-block: clamp(70px, 12vw, 150px); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero__title { margin-bottom: 20px; }
.hero__title .line { display: block; }
.hero p.lead { max-width: 46ch; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats .stat b { font-family: var(--font-display); font-size: 2rem; color: var(--gold-400); display: block; line-height: 1; }
.hero__stats .stat span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* Floating layered visual */
.hero__visual { position: relative; perspective: 1200px; }
.hero__visual .frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  transform: rotateY(-9deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
  aspect-ratio: 4 / 5;
}
.hero__visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual:hover .frame { transform: rotateY(-4deg) rotateX(2deg); }
.hero__badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  animation: floaty 6s ease-in-out infinite;
}
.hero__badge b { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-300); }
.hero__badge.b1 { top: 8%; left: -6%; }
.hero__badge.b2 { bottom: 10%; right: -7%; animation-delay: -3s; }
.hero__badge .dot { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--gold-500), var(--blush-500)); display: grid; place-items: center; color: var(--plum-950); flex: none; }
.hero__badge .dot svg { width: 20px; height: 20px; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Marquee trust strip */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-size: 1.35rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--gold-500); font-size: 0.9rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- 9. Grids & Feature Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 0% 0%, rgba(201, 162, 75, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow-gold); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(201,162,75,0.22), rgba(170,222,243,0.22));
  border: 1px solid var(--line);
  color: var(--gold-400);
  margin-bottom: 20px;
}
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.98rem; margin: 0; }
.card__tag { display: inline-block; margin-top: 16px; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); }

/* ---------- 10. Service list (services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.service-row:nth-child(even) .service-row__media { order: 2; }
.service-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.service-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-row:hover .service-row__media img { transform: scale(1.06); }
.service-row ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.service-row li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); }
.service-row li svg { width: 20px; height: 20px; color: var(--gold-500); flex: none; margin-top: 3px; }

/* ---------- 11. Gallery ---------- */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold-500); color: var(--plum-950); border-color: var(--gold-500); }
.masonry { columns: 3; column-gap: 20px; }
.masonry .tile { break-inside: avoid; margin-bottom: 20px; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.06); }
.masonry .tile img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.masonry .tile::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 18px 16px;
  background: linear-gradient(transparent, rgba(18,3,38,0.92));
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-200, var(--gold-300));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}
.masonry .tile:hover img { transform: scale(1.08); }

/* Home portfolio preview — uniform equal tiles */
.masonry-fixed { align-self: start; }
.masonry-fixed img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; }
.masonry .tile:hover::after { opacity: 1; transform: translateY(0); }

/* ---------- 12. Reviews ---------- */
.review-cats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.review-card { padding: 30px; display: flex; flex-direction: column; gap: 16px; height: 100%; }
.review-card .stars { display: flex; gap: 3px; color: var(--gold-500); }
.review-card .stars svg { width: 18px; height: 18px; }
.review-card p { color: var(--ink); font-size: 1rem; font-style: italic; margin: 0; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--plum-950); background: linear-gradient(135deg, var(--gold-400), var(--blush-400)); flex: none; }
.review-card .who b { display: block; font-size: 0.95rem; }
.review-card .who span { font-size: 0.8rem; color: var(--text-muted); }
.review-card .cat-badge { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px; }
.google-summary { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 44px; text-align: center; }
.google-summary .score { font-family: var(--font-display); font-size: 3rem; color: var(--gold-400); line-height: 1; }

.is-hidden { display: none !important; }

/* ---------- 13. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(50px, 8vw, 90px); border-radius: 30px; border: 1px solid var(--line); background: linear-gradient(135deg, var(--plum-800), var(--plum-950)); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% 0%, rgba(201,162,75,0.2), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .btn { margin-top: 20px; }

/* ---------- 14. Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(18,3,38,0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }
.field .err { color: var(--error); font-size: 0.78rem; min-height: 1em; }
.form-note { font-size: 0.82rem; color: var(--text-muted); }
.form-success { display: none; padding: 20px; border-radius: 14px; border: 1px solid var(--gold-500); background: rgba(201,162,75,0.12); color: var(--gold-300); align-items: center; gap: 12px; }
.form-success.show { display: flex; }

/* ---------- 15. Contact info blocks ---------- */
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: none; }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,162,75,0.12); border: 1px solid var(--line); color: var(--gold-400); flex: none; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item b { display: block; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 4px; }
.info-item a, .info-item p { color: var(--text); margin: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* ---------- 16. Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(70px, 10vw, 130px) clamp(40px, 6vw, 70px); text-align: center; position: relative; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--gold-500); }

/* ---------- 17. Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 64px 0; margin-top: 40px; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: var(--text-muted); transition: color 0.2s; }
.footer a:hover { color: var(--gold-300); }
.footer__about p { color: var(--text-muted); font-size: 0.95rem; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: all 0.25s; }
.footer__social a:hover { background: var(--gold-500); color: var(--plum-950); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bar { margin-top: 54px; border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
.footer__bar a { color: var(--gold-400); }

/* ---------- 18. Sticky mobile call/WhatsApp ---------- */
.sticky-actions { position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-sticky); display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.sticky-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-weight: 700; font-size: 0.95rem; }
.sticky-actions svg { width: 20px; height: 20px; }
.sticky-actions .call { background: var(--plum-800); color: var(--gold-300); }
.sticky-actions .wa { background: #1faf54; color: #fff; }

/* ---------- 19. Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: 0.1s; }
[data-reveal].d2 { transition-delay: 0.2s; }
[data-reveal].d3 { transition-delay: 0.3s; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-500), var(--blush-400)); z-index: var(--z-overlay); }

/* ---------- 20. Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row__media { order: 0; }
  .masonry { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 90px 24px 40px;
    background: var(--surface-solid);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav__links.open { transform: none; }
  .nav__links a { width: 100%; font-size: 1.05rem; padding: 14px 12px; }
  .nav__links .btn { margin-top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .sticky-actions { display: grid; }
  body { padding-bottom: 54px; }
  .footer { margin-bottom: 54px; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge.b1 { left: 2%; }
  .hero__badge.b2 { right: 2%; }
  .topbar__contact { gap: 14px; font-size: 0.75rem; }
}

/* ---------- 21. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__visual .frame { transform: none; }
}
