/* ==========================================================================
   NYNA EVENTS — Luxury Design System
   Palette: #1A2F34 · #F1AE74 · #132429 · #223B41
   ========================================================================== */

:root {
  --primary: #1A2F34;
  --primary-soft: #D9E1E3;
  --bg: #FFFFFF;
  --bg-deep: #F4F1EC;
  --card: #FFFFFF;
  --card-light: #F8F4EE;
  --accent: #F1AE74;
  --accent-soft: #F8C08E;
  --text: #1A2F34;
  --text-soft: #5A6A70;
  --border: rgba(241, 174, 116, 0.3);
  --border-strong: rgba(241, 174, 116, 0.5);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --footer-bg: #0E1C20;

  --display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --sans: "Poppins", "Segoe UI", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 6px 20px rgba(26, 47, 52, 0.08);
  --shadow-md: 0 18px 44px rgba(26, 47, 52, 0.12);
  --shadow-lg: 0 34px 70px rgba(26, 47, 52, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: var(--text); }

::selection { background: var(--accent); color: var(--primary); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--primary-soft); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 9vw, 130px); position: relative; }
.section--alt { background: var(--bg-deep); }
.section--card { background: var(--primary); color: var(--text); --text: #F8F5F2; --text-soft: #B9C3C6; --card: #223B41; --border: rgba(241, 174, 116, 0.15); --border-strong: rgba(241, 174, 116, 0.4); }

/* Dark teal section — reintroduces #132429, scopes light text + dark cards */
.section--dark {
  background: #132429;
  color: var(--text);
  --text: #F8F5F2;
  --text-soft: #B9C3C6;
  --card: #223B41;
  --card-light: #28484F;
  --bg: #132429;
  --border: rgba(241, 174, 116, 0.15);
  --border-strong: rgba(241, 174, 116, 0.4);
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px circle at 88% -20%, rgba(241, 174, 116, 0.07), transparent 60%),
    radial-gradient(700px circle at 8% 110%, rgba(241, 174, 116, 0.05), transparent 55%);
}

.section--dark > * { position: relative; z-index: 1; }

/* Warm light section with a subtle gold tint */
.section--alt {
  background:
    radial-gradient(900px circle at 15% 0%, rgba(241, 174, 116, 0.07), transparent 55%),
    var(--bg-deep);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.hidden { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }

.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-soft); font-size: 1.02rem; }

.section-head h2 em,
.hero-title em,
.accent-em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.lead { font-size: 1.06rem; color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--accent { background: var(--accent); color: var(--primary); box-shadow: 0 10px 28px rgba(241, 174, 116, 0.28); }
.btn--accent:hover { background: var(--accent-soft); color: var(--primary); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(241, 174, 116, 0.35); }

.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); background: rgba(241, 174, 116, 0.06); }

.btn--lg { padding: 18px 42px; font-size: 0.86rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: all 0.5s var(--ease);
  padding-block: 22px;
  --text: #F8F5F2;
  --text-soft: #C9D3D5;
}

.site-header.scrolled {
  padding-block: 12px;
  background: var(--glass-strong);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 40px rgba(26, 47, 52, 0.12);
  border-bottom: 1px solid var(--border);
  --text: #1A2F34;
  --text-soft: #5A6A70;
}

.site-header.menu-open {
  --text: #1A2F34;
  --text-soft: #5A6A70;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.brand:hover .brand-mark { border-color: var(--accent); transform: rotate(-8deg); }

.brand-mark svg { width: 20px; height: 20px; }

.brand-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-name span { color: var(--accent); }

.brand-tagline {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 5px;
}

.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }

.main-nav ul { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }

.main-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding-block: 6px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.main-nav a[aria-current="page"] { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.header-cta .btn { padding: 12px 24px; font-size: 0.72rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--text);
  transition: all 0.4s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
  --text: #F8F5F2;
  --text-soft: #CFD9DA;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.06) contrast(1.02); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 36, 41, 0.5) 0%, rgba(19, 36, 41, 0.28) 40%, rgba(19, 36, 41, 0.18) 60%, rgba(19, 36, 41, 0.06) 100%),
    linear-gradient(90deg, rgba(19, 36, 41, 0.42), rgba(19, 36, 41, 0.14));
}

.hero-content {
  max-width: 860px;
  padding: 140px var(--gutter) 120px;
}

.hero-ornament {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.hero-ornament span { display: block; width: 46px; height: 1px; background: var(--border-strong); }
.hero-ornament svg { width: 16px; height: 16px; color: var(--accent); }

.hero-title { margin-bottom: 26px; text-shadow: 0 2px 14px rgba(19, 36, 41, 0.5), 0 8px 44px rgba(19, 36, 41, 0.35); }

.hero-sub {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 42px;
  color: var(--text-soft);
  font-size: 1.04rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(0.94); }
.reveal--left.in-view, .reveal--right.in-view, .reveal--scale.in-view { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal--left, .reveal--right, .reveal--scale { opacity: 1; transform: none; transition: none; }
  .hero-scroll-line, .hero-bg { animation: none !important; }
  * { animation-duration: 0.01ms !important; }
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 50% 0%, rgba(241, 174, 116, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  background: rgba(241, 174, 116, 0.1);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--accent);
  transition: all 0.5s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--primary);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 10px 26px rgba(241, 174, 116, 0.35);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { margin-bottom: 12px; position: relative; z-index: 1; }

.service-card p { color: var(--text-soft); font-size: 0.92rem; position: relative; z-index: 1; }

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.service-card .service-link svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(6px); }

/* ---------- About preview / editorial ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.editorial-media { position: relative; }

.editorial-media::before {
  content: "";
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.editorial-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.editorial-badge {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  right: -18px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.editorial-badge strong {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.editorial-badge span {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.editorial-body .eyebrow { margin-bottom: 20px; }
.editorial-body h2 { margin-bottom: 20px; }
.editorial-body p { color: var(--text-soft); margin-bottom: 18px; }

.feature-list { margin-top: 28px; display: grid; gap: 14px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.94rem;
}

.feature-list .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(241, 174, 116, 0.12);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-list .check svg { width: 13px; height: 13px; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.stat:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.stat strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stat span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.why-item:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.why-item:hover::after { transform: scaleX(1); }

.why-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.why-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-item p { color: var(--text-soft); font-size: 0.88rem; }

/* ---------- Process timeline ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.process-step { text-align: center; position: relative; }

.process-step .p-orb {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease);
}

.process-step:hover .p-orb {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 0 0 10px rgba(241, 174, 116, 0.12);
}

.process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { color: var(--text-soft); font-size: 0.86rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
}

.testimonial:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }

.testimonial .quote-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 22px; opacity: 0.85; }
.testimonial .quote-icon svg { width: 40px; height: 40px; }

.testimonial blockquote {
  font-family: var(--display);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
  margin-bottom: 28px;
}

.testimonial .author { display: flex; align-items: center; gap: 16px; }

.testimonial .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.testimonial .author strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial .author span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.stars { display: inline-flex; gap: 3px; color: var(--accent); margin-bottom: 20px; }
.stars svg { width: 14px; height: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-grid[data-filter="all"] .gallery-item,
.gallery-grid:not([data-filter="all"]) .gallery-item { break-inside: avoid; }

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  transition: all 0.4s var(--ease);
  color: var(--text);
  --text: #F8F5F2;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.9s var(--ease);
}

.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 36, 41, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .g-overlay { opacity: 1; }

.g-overlay strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
}

.g-overlay span {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 4px;
}

.g-overlay .g-plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.g-overlay .g-plus svg { width: 16px; height: 16px; }

/* filter pills */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: all 0.4s var(--ease);
}

.filter-btn:hover { color: var(--accent); border-color: var(--border-strong); }

.filter-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 500;
}

.gallery-fade { animation: gFade 0.6s var(--ease); }

@keyframes gFade {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(14, 28, 32, 0.94);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--text);
  --text: #F8F5F2;
  --text-soft: #B9C3C6;
}

.lightbox.open { display: flex; animation: lbIn 0.35s var(--ease); }

@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-figure { max-width: min(960px, 92vw); width: 100%; text-align: center; }

.lightbox-figure img {
  max-height: 76vh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-figure figcaption {
  margin-top: 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all 0.4s var(--ease);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }

.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg { width: 20px; height: 20px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 80px);
  text-align: center;
  background: linear-gradient(160deg, #1A2F34 0%, #132429 75%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--text);
  --text: #F8F5F2;
  --text-soft: #B9C3C6;
  --border-strong: rgba(241, 174, 116, 0.5);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px circle at 50% -20%, rgba(241, 174, 116, 0.2), transparent 70%),
    radial-gradient(500px circle at 12% 115%, rgba(241, 174, 116, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(241, 174, 116, 0.14);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.cta-band .eyebrow { position: relative; z-index: 1; margin-bottom: 20px; }
.cta-band h2 { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; margin-bottom: 20px; }
.cta-band p { position: relative; z-index: 1; color: var(--text-soft); max-width: 560px; margin-inline: auto; margin-bottom: 38px; }
.cta-actions { position: relative; z-index: 1; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all 0.5s var(--ease);
}

.contact-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }

.contact-card .c-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(241, 174, 116, 0.1);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.contact-card .c-icon svg { width: 22px; height: 22px; }

.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--text-soft); word-break: break-word; }
.contact-card a:hover { color: var(--accent); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: saturate(0.7) brightness(0.85) contrast(1.05);
  transition: filter 0.6s var(--ease);
  line-height: 0;
}

.map-wrap:hover { filter: saturate(1) brightness(1); }

.map-wrap iframe { width: 100%; height: 280px; border: 0; }

.hours-card { margin-top: 26px; }

.hours-list { display: grid; gap: 12px; }
.hours-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 0.88rem; }
.hours-row dt { color: var(--text-soft); }
.hours-row dd { color: var(--text); font-weight: 400; text-align: right; }
.hours-row dd strong { color: var(--accent); font-weight: 500; }

/* form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-md);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 9px; }

.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 400;
}

.field label span { color: var(--accent); }

.field input,
.field textarea,
.field select {
  background: #FBF9F5;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  color: var(--text);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  width: 100%;
}

.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder, .field textarea::placeholder { color: rgba(90, 106, 112, 0.55); }

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(241, 174, 116, 0.12);
}

.form-note { grid-column: 1 / -1; font-size: 0.78rem; color: var(--text-soft); }

.form-status { grid-column: 1 / -1; display: none; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.88rem; }
.form-status.show { display: flex; }
.form-status.success { background: rgba(88, 196, 150, 0.12); border: 1px solid rgba(88, 196, 150, 0.35); color: #A8E6C3; }
.form-status.error { background: rgba(240, 120, 120, 0.12); border: 1px solid rgba(240, 120, 120, 0.35); color: #F5B5B5; }

/* ---------- Floating buttons ---------- */
.float-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  position: relative;
}

.float-btn svg { width: 24px; height: 24px; }

.float-btn:hover { transform: translateY(-4px) scale(1.05); }

.float-btn .fb-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-strong);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.float-btn:hover .fb-label { opacity: 1; }

.float-wa { background: #1EBE5D; color: #fff; }
.float-call { background: var(--accent); color: var(--primary); }

.float-wa::after,
.float-call::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.5;
  animation: ringPulse 2.6s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 0.55; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}

.float-call::after { animation-delay: 1.3s; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(241, 174, 116, 0.15);
  padding-top: clamp(60px, 7vw, 90px);
  color: var(--text);
  --text: #F8F5F2;
  --text-soft: #B9C3C6;
  --border: rgba(241, 174, 116, 0.15);
  --border-strong: rgba(241, 174, 116, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 54px;
}

.footer-brand p { color: var(--text-soft); font-size: 0.9rem; margin-top: 18px; max-width: 300px; }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all 0.4s var(--ease);
}

.footer-social a:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); transform: translateY(-3px); }

.footer-social svg { width: 17px; height: 17px; }

.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.footer-links { display: grid; gap: 12px; }

.footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s var(--ease);
}

.footer-links a svg { width: 12px; height: 12px; color: var(--accent); opacity: 0; transition: all 0.35s var(--ease); }

.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a:hover svg { opacity: 1; }

.footer-contact { display: grid; gap: 16px; }

.footer-contact li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-soft); font-size: 0.9rem; }

.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 5px; }

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--text-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(150px, 20vh, 220px) 0 clamp(60px, 9vh, 100px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--primary);
  background-image: var(--page-hero-img, linear-gradient(180deg, #203941 0%, #15272C 100%));
  background-size: cover;
  background-position: center;
  color: var(--text);
  --text: #F8F5F2;
  --text-soft: #C9D3D5;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 36, 41, 0.82) 0%, rgba(19, 36, 41, 0.7) 50%, rgba(19, 36, 41, 0.86) 100%),
    radial-gradient(700px circle at 20% 0%, rgba(241, 174, 116, 0.1), transparent 60%),
    radial-gradient(600px circle at 90% 30%, rgba(241, 174, 116, 0.07), transparent 60%);
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 { margin-top: 18px; margin-bottom: 16px; }

.page-hero .lead { max-width: 600px; margin-inline: auto; }

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 28px;
}

.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--accent); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gutter);
}

.error-code {
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 13rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(160deg, var(--accent) 20%, var(--accent-soft) 80%);
  opacity: 0.9;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial-media { max-width: 560px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-cta .btn--ghost { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--glass-strong);
    backdrop-filter: blur(22px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
  }

  .main-nav.open { opacity: 1; pointer-events: auto; }

  .main-nav ul { flex-direction: column; gap: 26px; }
  .main-nav a { font-size: 1rem; }
  .header-cta { display: none; }
  .main-nav .header-cta { display: flex; flex-direction: column; gap: 12px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .editorial-badge { right: 10px; padding: 18px 22px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.done { opacity: 0; visibility: hidden; }

.preloader-mark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  animation: pulseMark 1.6s ease-in-out infinite;
}

.preloader-mark svg { width: 28px; height: 28px; }

@keyframes pulseMark {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}
