/* ============================================
   STUDENT CONCIERGERIE TEMPLATE — Design System
   Primary: white  ·  Accent: {{accent_color}} (default #0f1e3d)
   ============================================ */

:root {
  /* Accent — overridden per student via inline <style>:root{--accent:...}</style> */
  --accent: #0f1e3d;

  /* Greys / neutrals (fixed) */
  --bg: #ffffff;
  --bg-soft: #f8f7f4;
  --bg-softer: #f3f1ed;
  --ink-900: #111111;
  --ink-800: #1f1f1f;
  --ink-700: #3a3a3a;
  --ink-500: #777777;
  --ink-400: #9a9a9a;
  --ink-300: #c8c4bd;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Outfit", "Manrope", -apple-system, sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --section-pad: clamp(64px, 10vw, 140px);

  /* Button radius — overridden per student via body class */
  --btn-radius: 999px;
}

body.shape-rounded { --btn-radius: 999px; }
body.shape-square { --btn-radius: 0px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   Typography
   ============================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-wrap: balance;
}

.h-display {
  font-size: clamp(48px, 8.5vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h-display em { font-style: italic; color: var(--accent); font-weight: 300; }

.h-section {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
}
.h-section em { font-style: italic; font-weight: 300; color: var(--accent); }

.h-card { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-700);
  font-weight: 300;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ============================================
   Layout primitives
   ============================================ */

.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 1100px; }
.section { padding: var(--section-pad) 0; }
.section-tight { padding: clamp(48px, 7vw, 96px) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-accent { background: var(--accent); color: #fff; }
.bg-accent h1, .bg-accent h2, .bg-accent h3, .bg-accent h4 { color: #fff; }
.bg-accent .eyebrow { color: color-mix(in srgb, var(--accent) 0%, white 70%); }
.bg-accent .lede { color: color-mix(in srgb, var(--accent) 0%, white 80%); }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 32px;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 26px; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 85%, black); }

.btn-ghost { color: var(--ink-900); border-color: var(--ink-900); }
.btn-ghost:hover { background: var(--ink-900); color: #fff; }

.btn-ghost-light { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost-light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }

.btn-outline-accent {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}
.btn-outline-accent:hover { background: var(--accent); color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-900);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  color: #fff;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
  color: var(--ink-900);
}
.nav.solid {
  background: #fff;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.logo-fallback {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: currentColor;
  font-weight: 500;
}
.logo-fallback em { font-style: italic; opacity: 0.55; font-weight: 300; margin-left: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: var(--btn-radius);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav.scrolled .nav-cta, .nav.solid .nav-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav-cta:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.nav.scrolled .nav-cta:hover, .nav.solid .nav-cta:hover { background: var(--ink-900); border-color: var(--ink-900); }

.menu-btn {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-btn span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: all 0.3s ease;
}
.menu-btn span:nth-child(1) { width: 24px; }
.menu-btn span:nth-child(2) { width: 16px; margin-left: auto; }
.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 22px; }
.menu-btn.open span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); width: 22px; margin-left: 0; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  color: var(--ink-900);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 60px);
  line-height: 1;
  font-style: italic;
  color: var(--ink-900);
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-foot {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-500);
}
.mobile-menu-foot a { font: inherit; color: var(--accent); }

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding: var(--gutter);
  padding-top: 140px;
  padding-bottom: clamp(40px, 8vw, 90px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.75) 100%);
}
.hero-grid {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.hero-headline {
  font-size: clamp(56px, 10vw, 144px);
  font-family: var(--serif);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #fff;
}
.hero-headline em { font-style: italic; color: #fff; opacity: 0.85; font-weight: 300; }

.hero-meta-line {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.hero-meta-line .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   Page hero (interior pages)
   ============================================ */

.page-hero {
  position: relative;
  padding: 180px var(--gutter) 90px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 {
  color: var(--ink-900);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 500;
}
.page-hero .crumbs span { opacity: 0.5; color: var(--ink-500); }
.page-hero .crumbs a { color: var(--ink-500); }
.page-hero-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  max-width: 40ch;
}

/* ============================================
   Editorial intro
   ============================================ */

.editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.editorial-side .eyebrow { margin-bottom: 24px; }
.editorial-body p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-700);
  font-weight: 300;
  text-wrap: pretty;
}
.editorial-body p + p { margin-top: 24px; }
.editorial-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 8px 14px -4px 0;
  color: var(--accent);
  font-weight: 400;
}

/* ============================================
   Services list (dark accent block)
   ============================================ */

.services-home {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services-home::before {
  content: "Services";
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(180px, 28vw, 420px);
  color: rgba(255, 255, 255, 0.05);
  top: -40px;
  left: -20px;
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}
.services-home h2 { color: #fff; }
.services-home h2 em { color: #fff; opacity: 0.7; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
  position: relative;
}
.services-home .lede { color: rgba(255, 255, 255, 0.78); }
.services-list { list-style: none; position: relative; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 0.4s ease;
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.service-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.service-row .title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.05;
  color: #fff;
  transition: color 0.4s ease;
}
.service-row .desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
  max-width: 48ch;
  font-weight: 300;
}
.service-row .arrow-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  transition: all 0.4s ease;
  color: #fff;
  flex-shrink: 0;
}
.service-row:hover { padding-left: 12px; }
.service-row:hover .title { font-style: italic; }
.service-row:hover .arrow-icon { background: #fff; border-color: #fff; color: var(--accent); transform: rotate(-45deg); }

/* ============================================
   Split feature
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
  border: 1px solid var(--line);
}
.split-image {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.split-content {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-soft);
}
.split-content.dark { background: var(--accent); color: #fff; }
.split-content.dark h2 { color: #fff; }
.split-content.dark h2 em { color: #fff; opacity: 0.7; }
.split-content.dark .lede { color: rgba(255, 255, 255, 0.78); }
.split-content.dark .eyebrow { color: rgba(255,255,255,0.85); }

.checks { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-700);
}
.split-content.dark .checks li { color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.18); }
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.6;
  background:
    linear-gradient(45deg, transparent 45%, currentColor 45%, currentColor 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, currentColor 45%, currentColor 55%, transparent 55%);
  background-size: 7px 7px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ============================================
   CTA Band
   ============================================ */

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-band::before { top: -200px; left: -200px; }
.cta-band::after { bottom: -200px; right: -200px; }
.cta-band h2 { color: #fff; margin-bottom: 24px; position: relative; }
.cta-band h2 em { color: #fff; opacity: 0.7; }
.cta-band .lede { color: rgba(255, 255, 255, 0.8); margin: 0 auto 40px; position: relative; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-band .eyebrow { color: rgba(255, 255, 255, 0.85); }

/* ============================================
   Photo gallery (extra_photos)
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery .g1 { grid-column: span 7; aspect-ratio: 16/10; }
.gallery .g2 { grid-column: span 5; aspect-ratio: 4/5; }
.gallery .g3 { grid-column: span 4; aspect-ratio: 1/1; }
.gallery .g4 { grid-column: span 4; aspect-ratio: 1/1; }
.gallery .g5 { grid-column: span 4; aspect-ratio: 1/1; }
/* When fewer than 5 photos: single row, uniform tiles. */
.gallery--1 .g1,
.gallery--2 .g1, .gallery--2 .g2,
.gallery--3 .g1, .gallery--3 .g2, .gallery--3 .g3,
.gallery--4 .g1, .gallery--4 .g2, .gallery--4 .g3, .gallery--4 .g4 {
  aspect-ratio: 4/3;
}
.gallery--1 .g1 { grid-column: span 12; aspect-ratio: 16/9; }
.gallery--2 .g1, .gallery--2 .g2 { grid-column: span 6; }
.gallery--3 .g1, .gallery--3 .g2, .gallery--3 .g3 { grid-column: span 4; }
.gallery--4 .g1, .gallery--4 .g2, .gallery--4 .g3, .gallery--4 .g4 { grid-column: span 3; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery a { display: block; overflow: hidden; }
.gallery a:hover img { transform: scale(1.04); }

/* ============================================
   Footer
   ============================================ */

footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px var(--gutter) 36px;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-brand .logo-mark { color: #fff; font-size: 26px; }
.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 26px; }
.footer-bottom a { color: rgba(255, 255, 255, 0.55); transition: color 0.3s ease; }
.footer-bottom a:hover { color: #fff; }

/* ============================================
   WhatsApp floating button
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
  max-width: 56px;
}
.wa-float:hover { max-width: 320px; padding-right: 22px; }
.wa-float .wa-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.wa-float .wa-icon svg { width: 100%; height: 100%; fill: #fff; }
.wa-float .wa-text {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  margin-left: 12px;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.wa-float:hover .wa-text { opacity: 1; }
.wa-pulse {
  position: absolute;
  inset: 6px;
  border-radius: 100px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   Reveal animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.49s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .services-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .service-row { grid-template-columns: 50px 1fr auto; gap: 20px; padding: 26px 0; }
  .service-row .desc { grid-column: 2 / 4; font-size: 14px; }
  .split { grid-template-columns: 1fr; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .page-hero { padding-top: 150px; padding-bottom: 60px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g1, .gallery .g2, .gallery .g3, .gallery .g4, .gallery .g5 {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .editorial-body p:first-of-type::first-letter { font-size: 4em; }
  .service-row { grid-template-columns: 36px 1fr auto; gap: 14px; }
  .service-row .num { font-size: 16px; }
  .service-row .desc { display: none; }
  .wa-float:hover { max-width: 56px; padding-right: 14px; }
  .wa-float .wa-text { display: none; }
  .gallery { grid-template-columns: 1fr; }
}
