/* ─────────────────────────────────
   DESIGN TOKENS
───────────────────────────────── */
:root {
  --navy:       #0C1F3F;
  --navy-deep:  #071429;
  --blue:       #1A4B8C;
  --blue-light: #2E6BC4;
  --sky:        #C8DDF5;
  --sky-pale:   #EEF5FD;
  --white:      #FFFFFF;
  --cream:      #F5F3EF;
  --warm:       #F0EBE3;
  --ink:        #0A1220;
  --mid:        #3A4E65;
  --muted:      #7E95AE;
  --rule:       #D8E4F0;

  --serif:  'Fraunces', Georgia, serif;
  --sans:   'Instrument Sans', sans-serif;
  --ease:   cubic-bezier(.22,.68,0,1.2);
}

/* ─────────────────────────────────
   BASE
───────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: default;
}
img {
  display:block; max-width:100%;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ─────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(26,75,140,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s var(--ease), width .3s, height .3s;
}
body:hover .cursor { opacity:1; }

/* ─────────────────────────────────
   NAVIGATION
───────────────────────────────── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:500;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 56px;
  height: 76px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(216,228,240,.5);
  transition: box-shadow .4s;
}
.nav.elevated { box-shadow: 0 4px 32px rgba(12,31,63,.06); }

.nav__brand { display:flex; align-items:center; gap:14px; }
.nav__logo {
  width:52px; height:52px;
  border-radius:50%;
  object-fit:contain;
  object-position: center;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26,75,140,.12);
  padding: 3px;
  transition: transform .3s;
}
.nav__brand:hover .nav__logo { transform: scale(1.06); }
.nav__wordmark { display:flex; flex-direction:column; gap:1px; }
.nav__wordmark-main {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--navy);
  line-height:1;
}
.nav__wordmark-sep {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin: 4px 0;
}
.nav__wordmark-sub {
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav__menu {
  display:flex; align-items:center; gap:40px;
}
.nav__menu a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--mid);
  transition: color .2s;
  position: relative;
}
.nav__menu a::after {
  content:'';
  position:absolute; bottom:-3px; left:0; right:0;
  height:1px; background:var(--blue);
  transform:scaleX(0); transform-origin:left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover { color:var(--navy); }
.nav__menu a:hover::after { transform:scaleX(1); }

.nav__cta {
  display:inline-flex; align-items:center; gap:9px;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s, transform .2s;
}
.nav__cta:hover { background:var(--blue); transform:translateY(-1px); }
.nav__cta svg { width:14px; height:14px; fill:#fff; flex-shrink:0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--navy);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  z-index: 999;
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ─────────────────────────────────
   HERO
───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 76px;
  position: relative;
}

.hero__left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 72px 88px 88px;
  position: relative;
  overflow: hidden;
}

/* Decorative circle behind text */
.hero__left::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(26,75,140,.08);
  pointer-events:none;
}
.hero__left::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(26,75,140,.06);
  pointer-events:none;
}

.hero__kicker {
  display:flex; align-items:center; gap:14px;
  margin-bottom: 36px;
  opacity:0; animation: slideIn .8s .1s var(--ease) forwards;
}
.hero__kicker-line { width:36px; height:1px; background:var(--blue); }
.hero__kicker-text {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 32px;
  opacity:0; animation: slideIn .8s .22s var(--ease) forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.hero__title strong {
  font-weight: 500;
  display:block;
}

.hero__sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  max-width: 390px;
  margin-bottom: 52px;
  opacity:0; animation: slideIn .8s .34s var(--ease) forwards;
}

.hero__btns {
  display:flex; align-items:center; gap:20px;
  opacity:0; animation: slideIn .8s .46s var(--ease) forwards;
}
.btn-main {
  display:inline-flex; align-items:center; gap:11px;
  padding: 17px 32px;
  background: var(--navy);
  color: #fff;
  font-size: 11px; font-weight:500;
  letter-spacing: .14em; text-transform:uppercase;
  border-radius:2px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 32px rgba(12,31,63,.18);
}
.btn-main:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26,75,140,.28);
}
.btn-main svg { width:16px; height:16px; fill:#fff; }
.btn-link {
  font-size: 11px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--navy); font-weight:500;
  position:relative;
  padding-bottom:2px;
}
.btn-link::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0;
  height:1px; background:currentColor;
  transform:scaleX(1); transform-origin:left;
  transition:transform .3s;
}
.btn-link:hover::after { transform:scaleX(0); }

/* Address tag */
.hero__addr {
  position:absolute; bottom:44px; left:88px;
  display:flex; align-items:center; gap:10px;
  opacity:0; animation: slideIn .8s .6s var(--ease) forwards;
}
.hero__addr-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--blue);
}
.hero__addr-text {
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted); font-weight:400;
}

/* Hero image side */
.hero__right {
  position:relative; overflow:hidden;
}
.hero__right img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  transition: transform 10s ease;
}
.hero__right:hover img { transform:scale(1.05); }

/* Year badge */
.hero__badge {
  position:absolute; bottom:44px; right:36px;
  writing-mode:vertical-lr;
  transform:rotate(180deg);
  font-size:9px; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.55); font-weight:400;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  opacity:0; animation: fadeIn 1s 1s both;
}

/* ─────────────────────────────────
   MARQUEE STRIP
───────────────────────────────── */
.marquee-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display:flex; gap:0;
  animation: marquee 28s linear infinite;
  width:max-content;
}
.marquee-item {
  display:inline-flex; align-items:center; gap:28px;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  white-space:nowrap;
}
.marquee-track .marquee-item {
  flex-shrink:0;
}
.marquee-sep {
  width:4px; height:4px; border-radius:50%;
  background:rgba(255,255,255,.2);
  flex-shrink:0;
}
@keyframes marquee { from {transform:translateX(0)} to {transform:translateX(-50%)} }

/* ─────────────────────────────────
   STATS ROW
───────────────────────────────── */
.stats {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 48px 52px;
  border-right: 1px solid var(--rule);
  transition: background .25s;
  position:relative; overflow:hidden;
}
.stat:last-child { border-right:none; }
.stat:hover { background:var(--sky-pale); }
.stat::before {
  content:'';
  position:absolute; top:0; left:0;
  width:2px; height:0;
  background:var(--blue);
  transition:height .35s var(--ease);
}
.stat:hover::before { height:100%; }
.stat__num {
  font-family: var(--serif);
  font-size: 52px; font-weight:300;
  color: var(--navy);
  line-height:1;
  margin-bottom:8px;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 10.5px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--muted);
  font-weight:400;
}

/* ─────────────────────────────────
   SECTION WRAPPER
───────────────────────────────── */
.section { padding: 110px 88px; }
.section--cream { background:var(--cream); }
.section--navy { background:var(--navy); }
.section--sky { background:var(--sky-pale); }

.eyebrow {
  display:flex; align-items:center; gap:14px;
  margin-bottom:22px;
}
.eyebrow__line { width:28px; height:1px; background:var(--blue); flex-shrink:0; }
.eyebrow__text {
  font-size: 10px; letter-spacing:.22em;
  text-transform:uppercase; color:var(--blue);
  font-weight:500;
}
.eyebrow--light .eyebrow__line { background:rgba(255,255,255,.35); }
.eyebrow--light .eyebrow__text { color:rgba(255,255,255,.45); }

.heading {
  font-family: var(--serif);
  font-size: clamp(38px,3.6vw,54px);
  font-weight:300; line-height:1.1;
  color:var(--navy);
}
.heading em { font-style:italic; color:var(--blue); }
.heading--white { color:#fff; }
.heading--white em { color:rgba(255,255,255,.4); }

.body-text {
  font-size:15px; font-weight:300;
  line-height:1.85; color:var(--mid);
  max-width:520px;
}

/* ─────────────────────────────────
   ABOUT / NOSOTROS
───────────────────────────────── */
.about {
  display:grid; grid-template-columns:1fr 1fr;
  gap:96px; align-items:center;
}
.about__photo-wrap {
  position:relative; height:580px;
}
.about__photo-main {
  position:absolute; top:0; left:0;
  width:82%; height:82%;
  object-fit:cover;
  box-shadow: 0 24px 80px rgba(12,31,63,.14);
}
.about__photo-accent {
  position:absolute; bottom:0; right:0;
  width:52%; height:48%;
  object-fit:cover;
  border:5px solid #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,.10);
}
.about__vert-rule {
  position:absolute;
  top:50%; left:82%;
  transform:translate(-50%,-50%);
  width:1px; height:100px;
  background:linear-gradient(to bottom, var(--blue), transparent);
}

.about__content { display:flex; flex-direction:column; }

.pillars {
  margin-top:40px;
  display:flex; flex-direction:column;
  border:1px solid var(--rule);
}
.pillar {
  display:flex; align-items:flex-start; gap:20px;
  padding:22px 24px;
  background:var(--white);
  border-bottom:1px solid var(--rule);
  transition:background .2s, padding-left .3s var(--ease);
  cursor:default;
}
.pillar:last-child { border-bottom:none; }
.pillar:hover { background:var(--sky-pale); padding-left:32px; }
.pillar__n {
  font-family:var(--serif);
  font-size:12px; color:var(--muted);
  margin-top:1px; flex-shrink:0; min-width:22px;
}
.pillar__title {
  font-size:13px; font-weight:500;
  color:var(--navy); letter-spacing:.03em;
  margin-bottom:4px;
}
.pillar__desc {
  font-size:13px; color:var(--muted);
  line-height:1.7; font-weight:300;
}

/* ─────────────────────────────────
   MISSION / VISION / VALUES
───────────────────────────────── */
.mv-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:2px;
  margin-bottom:2px;
}
.mv-card {
  padding:56px 52px;
  background:rgba(255,255,255,.04);
  border-left:1px solid rgba(255,255,255,.1);
  position:relative; overflow:hidden;
  transition:background .3s;
}
.mv-card:hover { background:rgba(255,255,255,.08); }
.mv-card__kicker {
  font-size:9.5px; letter-spacing:.22em;
  text-transform:uppercase; color:rgba(255,255,255,.35);
  margin-bottom:14px; font-weight:500;
}
.mv-card__title {
  font-family:var(--serif);
  font-size:34px; font-weight:300;
  color:#fff; line-height:1.15;
  margin-bottom:20px;
}
.mv-card__body {
  font-size:15px; color:rgba(255,255,255,.6);
  line-height:1.85; font-weight:300;
}

/* Large decorative letter */
.mv-card__bg-letter {
  position:absolute; bottom:-20px; right:20px;
  font-family:var(--serif);
  font-size:220px; font-weight:300;
  color:rgba(255,255,255,.03);
  line-height:1; pointer-events:none;
  user-select:none;
}

.values-bar {
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:0; border-top:1px solid rgba(255,255,255,.07);
}
.value-node {
  padding:32px 20px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.06);
  transition:background .25s;
  cursor:default;
}
.value-node:last-child { border-right:none; }
.value-node:hover { background:rgba(255,255,255,.06); }
.value-node__name {
  font-size:10px; letter-spacing:.18em;
  text-transform:uppercase; color:rgba(255,255,255,.55);
  font-weight:500;
  display:block;
}
.value-node__dash {
  width:16px; height:1px;
  background:rgba(255,255,255,.2);
  margin:12px auto 0;
}

/* ─────────────────────────────────
   SERVICES
───────────────────────────────── */
.svc-header {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; margin-bottom:64px; align-items:end;
}
.svc-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--rule); border:1px solid var(--rule);
}
.svc-card {
  background:var(--white);
  padding:44px 40px;
  transition:background .3s;
  cursor:default; position:relative; overflow:hidden;
}
.svc-card::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0;
  height:2px; background:var(--blue);
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease);
}
.svc-card:hover { background:var(--navy); }
.svc-card:hover::after { transform:scaleX(1); }
.svc-card:hover .svc__n,
.svc-card:hover .svc__name,
.svc-card:hover .svc__body { color:#fff; }
.svc-card:hover .svc__rule { background:rgba(255,255,255,.2); }
.svc__n {
  font-family:var(--serif); font-size:11px;
  color:var(--muted); letter-spacing:.1em;
  margin-bottom:32px; transition:color .3s;
}
.svc__name {
  font-family:var(--serif); font-size:24px;
  font-weight:400; color:var(--ink);
  margin-bottom:14px; transition:color .3s;
}
.svc__rule {
  width:20px; height:1px; background:var(--rule);
  margin-bottom:14px; transition:background .3s;
}
.svc__body {
  font-size:13px; color:var(--muted);
  line-height:1.75; font-weight:300; transition:color .3s;
}

/* ─────────────────────────────────
   GALLERY
───────────────────────────────── */
.gallery {
  display:grid;
  grid-template-columns:2.2fr 1fr 1fr;
  grid-template-rows:320px 320px;
  gap:6px;
}
.gallery__cell {
  overflow: hidden;
  position: relative;
}
.gallery__cell img {
  transform-origin: center center;
}
.gallery__cell--tall { grid-row: 1 / 3; }
.gallery__cell img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s cubic-bezier(.22,.68,0,1.2), filter .5s ease, box-shadow .5s ease;
  filter: brightness(.93) saturate(.88) contrast(1.02);
  image-rendering: high-quality;
  will-change: transform;
}
.gallery__cell:hover img {
  filter: brightness(1.02) saturate(1.08) contrast(1.03);
}
/* Shimmer overlay on hover */
.gallery__cell::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  opacity:0; transition:opacity .4s;
  pointer-events:none; z-index:1;
}
.gallery__cell:hover::after { opacity:1; }

/* ─────────────────────────────────
   SCHEDULE / CONTACT
───────────────────────────────── */
.sc-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:96px; align-items:start;
}

.schedule-blocks {
  display:flex; flex-direction:column; gap:0;
  margin-top:40px;
  border:1px solid var(--rule);
}
.schedule-block {
  display:grid; grid-template-columns:auto 1fr;
  align-items:center; gap:20px;
  padding:24px 28px;
  border-bottom:1px solid var(--rule);
  transition:background .2s;
}
.schedule-block:last-child { border-bottom:none; }
.schedule-block:hover { background:var(--sky-pale); }
.schedule-block__pip {
  width:7px; height:7px; border-radius:50%;
  background:var(--blue); flex-shrink:0;
}
.schedule-block__days {
  font-size:14px; font-weight:500; color:var(--navy); margin-bottom:3px;
}
.schedule-block__time {
  font-size:12.5px; color:var(--muted); font-weight:300;
  letter-spacing:.04em;
}
.schedule-note {
  margin-top:20px; padding:16px 20px;
  border-left:2px solid var(--blue);
  background:var(--sky-pale);
  font-size:12.5px; color:var(--mid);
  line-height:1.75; font-weight:300;
}

/* Contact items */
.ci-list { display:flex; flex-direction:column; margin-top:40px; }
.ci {
  display:flex; align-items:flex-start; gap:18px;
  padding:22px 0;
  border-bottom:1px solid var(--rule);
}
.ci:last-child { border-bottom:none; }
.ci__box {
  width:42px; height:42px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--sky-pale);
  border:1px solid var(--rule);
}
.ci__box svg { width:16px; height:16px; fill:var(--blue); }
.ci__label {
  font-size:9.5px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--muted);
  margin-bottom:4px;
}
.ci__value {
  font-size:15px; color:var(--ink); font-weight:400;
  line-height:1.5;
}
.ci__value a { color:var(--blue); }
.ci__value a:hover { text-decoration:underline; }

.ig-pill {
  display:inline-flex; align-items:center; gap:10px;
  margin-top:28px;
  padding:13px 22px;
  border:1px solid var(--rule);
  font-size:12px; letter-spacing:.08em;
  color:var(--navy); font-weight:500;
  transition:background .2s, border-color .2s;
}
.ig-pill:hover { background:var(--sky-pale); border-color:var(--blue); }
.ig-pill svg { width:16px; height:16px; fill:var(--navy); }

/* ─────────────────────────────────
   CTA BAND
───────────────────────────────── */
.cta-band {
  background:var(--blue);
  padding:80px 88px;
  display:flex; align-items:center; justify-content:space-between; gap:48px;
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:'';
  position:absolute; top:-120px; right:-120px;
  width:440px; height:440px; border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  pointer-events:none;
}
.cta-band::after {
  content:'';
  position:absolute; bottom:-80px; right:-80px;
  width:280px; height:280px; border-radius:50%;
  border:1px solid rgba(255,255,255,.06);
  pointer-events:none;
}
.cta-band__text h2 {
  font-family:var(--serif);
  font-size:44px; font-weight:300;
  color:#fff; line-height:1.15; margin-bottom:12px;
}
.cta-band__text h2 em { font-style:italic; color:rgba(255,255,255,.5); }
.cta-band__text p {
  font-size:15px; color:rgba(255,255,255,.6); font-weight:300;
}
.btn-wht {
  display:inline-flex; align-items:center; gap:12px;
  padding:18px 36px; background:#fff; color:var(--blue);
  font-size:11px; font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; white-space:nowrap; flex-shrink:0;
  box-shadow:0 8px 40px rgba(0,0,0,.15);
  transition:transform .2s, box-shadow .2s;
}
.btn-wht:hover { transform:translateY(-2px); box-shadow:0 16px 48px rgba(0,0,0,.2); }
.btn-wht svg { width:16px; height:16px; fill:var(--blue); }

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */
footer {
  background:var(--navy-deep);
  padding:72px 88px 44px;
}
.footer__grid {
  display:grid; grid-template-columns:1.8fr 1fr 1fr;
  gap:72px; padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,.06);
  margin-bottom:36px;
}
.footer__brand-name span:first-child {
  font-family:var(--serif);
  font-size:24px; font-weight:400;
  color:#fff; letter-spacing:.07em;
  display:block; line-height:1; margin-bottom:5px;
}
.footer__brand-name span:last-child {
  font-size:8.5px; letter-spacing:.2em;
  text-transform:uppercase; color:var(--muted);
}
.footer__tagline {
  font-size:13px; color:rgba(255,255,255,.32);
  line-height:1.85; font-weight:300;
  margin-top:20px; max-width:280px;
}
.footer__col h4 {
  font-size:9.5px; letter-spacing:.2em;
  text-transform:uppercase; color:rgba(255,255,255,.28);
  margin-bottom:22px;
}
.footer__col li { margin-bottom:11px; }
.footer__col a {
  font-size:13px; color:rgba(255,255,255,.48);
  font-weight:300; transition:color .2s;
}
.footer__col a:hover { color:#fff; }
.footer__bottom {
  display:flex; align-items:center; justify-content:space-between;
}
.footer__bottom p {
  font-size:11.5px; color:rgba(255,255,255,.22); font-weight:300;
}

/* ─────────────────────────────────
   ANIMATIONS
───────────────────────────────── */
@keyframes slideIn {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:none; }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.reveal {
  opacity:0; transform:translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ─────────────────────────────────
   SCROLLBAR
───────────────────────────────── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--cream); }
::-webkit-scrollbar-thumb { background:var(--blue); border-radius:0; }

/* ─────────────────────────────────
   RESPONSIVE
   ───────────────────────────────── */

/* TABLET & MOBILE (1100px) */
@media (max-width: 1100px) {
  .nav { padding: 0 24px; }
  .nav__toggle { display: flex; order: 3; }
  .nav__cta { display: none; }
  .wa-float { display: flex; }
  
  .nav__menu {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, rgba(245,243,239,0.98) 50%, rgba(245,243,239,0.8) 100%);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 60px 40px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform .6s cubic-bezier(.77,0,.175,1), opacity .5s ease;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .nav.menu-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .nav__menu li { opacity: 0; transform: translateY(20px); transition: all .4s ease; }
  .nav.menu-open .nav__menu li { opacity: 1; transform: translateY(0); }
  .nav.menu-open .nav__menu li:nth-child(1) { transition-delay: .2s; }
  .nav.menu-open .nav__menu li:nth-child(2) { transition-delay: .3s; }
  .nav.menu-open .nav__menu li:nth-child(3) { transition-delay: .4s; }
  .nav.menu-open .nav__menu li:nth-child(4) { transition-delay: .5s; }
  .nav.menu-open .nav__menu li:nth-child(5) { transition-delay: .6s; }

  .nav__menu a { font-size: 22px; color: var(--navy); font-weight: 500; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 450px; }
  .hero__left { padding: 80px 48px; }
  .hero__addr { left: 48px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--rule); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--rule); }

  .about { grid-template-columns: 1fr; gap: 64px; }
  .about__photo-wrap { height: 480px; }
  
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 260px); }
  .gallery__cell--tall { grid-row: span 1; grid-column: span 2; }
  
  .sc-grid { gap: 64px; }
  
  .cta-band { padding: 64px 48px; }
  
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer__grid > div:first-child { grid-column: span 2; }
}

/* MOBILE (768px) */
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
  
  .nav { height: 60px; padding: 0 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }
  
  .nav__wordmark-main { font-size: 15px; }
  .nav__wordmark-sub { font-size: 7px; }
  .nav__logo { width: 42px; height: 42px; }
  .nav__cta { padding: 8px 16px; font-size: 10px; }
  
  .hero__left { padding: 64px 24px 100px; }
  .hero__title { font-size: 42px; }
  .hero__btns { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-main { width: 100%; justify-content: center; }
  .hero__addr { bottom: 32px; left: 24px; }
  
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  
  .section { padding: 80px 24px; }
  
  .about__photo-wrap { height: 380px; }
  .about__photo-main { width: 90%; height: 90%; }
  .about__photo-accent { width: 60%; height: 50%; }
  
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 40px 32px; }
  .values-bar { grid-template-columns: 1fr; }
  .value-node { padding: 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  
  .svc-header { grid-template-columns: 1fr; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
  .gallery__cell--tall { grid-column: span 1; }
  
  .cta-band { flex-direction: column; text-align: center; padding: 56px 24px; gap: 32px; }
  .cta-band__text h2 { font-size: 32px; }
  .btn-wht { width: 100%; justify-content: center; }
  
  .sc-grid { grid-template-columns: 1fr; gap: 48px; }
  
  footer { padding: 56px 24px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid > div:first-child { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
