/* ==========================================================
   Jazmin Studios — landing page
   Palette from the logo: maroon + gold leaf on black / ivory
   ========================================================== */
:root {
  --maroon: #8C1B2D;
  --maroon-600: #761626;
  --maroon-800: #4E0D19;
  --maroon-900: #2A060D;
  --gold: #F8D016;
  --gold-600: #D9B10C;
  --gold-soft: #F6E7A6;
  --ink: #0B0B0C;
  --ink-2: #151416;
  --ivory: #F7F4EF;
  --paper: #FFFFFF;
  --text: #1C1A1B;
  --muted: #625D5F;
  --line: #E7E1DA;

  --ff-display: "Marcellus", "Times New Roman", serif;
  --ff-num: "Montserrat", system-ui, sans-serif;
  --ff-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -18px rgba(42, 6, 13, .35);
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 400; }
h1, h2 { font-family: var(--ff-display); letter-spacing: -.01em; }
h3 { font-weight: 600; font-size: 1.08rem; letter-spacing: -.005em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.gold { color: var(--gold); }
.ico { width: 1.2em; height: 1.2em; flex: none; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2, .about-copy h2, .why-head h2, .contact-info h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap;
}
.btn .ico { transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(248, 208, 22, .7); }
.btn-gold:hover { background: #ffe045; }
.btn-maroon { background: var(--maroon); color: #fff; box-shadow: 0 12px 30px -14px rgba(140, 27, 45, .9); }
.btn-maroon:hover { background: var(--maroon-600); }
.btn-ghost { border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, box-shadow .35s, height .35s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; display: block; width: 150px; }
.brand img { width: 100%; transition: opacity .3s; }
.brand-dark { position: absolute; inset: 0; opacity: 0; }
.site-header.is-solid { background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); height: 70px; }
.site-header.is-solid .brand-light { opacity: 0; }
.site-header.is-solid .brand-dark { opacity: 1; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a:not(.btn) { color: rgba(255, 255, 255, .85); font-size: .9rem; font-weight: 500; position: relative; padding: 6px 0; transition: color .25s; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:not(.btn):hover, .nav a.is-current { color: #fff; }
.nav a:not(.btn):hover::after, .nav a.is-current::after { transform: scaleX(1); }
.site-header.is-solid .nav a:not(.btn) { color: var(--text); }
.site-header.is-solid .nav a:not(.btn)::after { background: var(--maroon); }
.site-header.is-solid .nav a.is-current { color: var(--maroon); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; position: relative; z-index: 60; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; transition: transform .35s var(--ease), opacity .2s, background .3s; }
.site-header.is-solid .nav-toggle span { background: var(--ink); }
.nav-open .nav-toggle span { background: #fff !important; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: radial-gradient(120% 90% at 85% 10%, var(--maroon-800) 0%, var(--maroon-900) 35%, var(--ink) 70%);
  color: #fff; overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 90px;
}
.hero::before { /* fine grid texture */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 80%);
}
.hero-glow { position: absolute; width: 620px; height: 620px; right: -120px; top: 12%; border-radius: 50%; background: var(--maroon); filter: blur(140px); opacity: .55; pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.02; margin-bottom: 26px; }
.hero .lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: rgba(255, 255, 255, .78); max-width: 560px; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 44px; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.hero-tags li { display: inline-flex; align-items: center; gap: 9px; }
.hero-tags li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* Hero entrance: copy fades up, headline words rise out of a mask */
.h-in { animation: heroUp 1s var(--ease) var(--d, 0s) both; }
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.hero h1 .w > span { display: inline-block; animation: wordRise 1.1s var(--ease) var(--d, 0s) both; }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes wordRise { from { transform: translateY(105%) rotate(4deg); } to { transform: none; } }

/* Gold shimmer sweeping across "worldwide." */
.shimmer {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold) 40%, #FFF6C7 50%, var(--gold) 60%, var(--gold) 100%);
  background-size: 250% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: wordRise 1.1s var(--ease) var(--d, 0s) both, shimmer 5s ease-in-out 1.8s infinite !important;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 45%, 100% { background-position: 0 0; } }

.hero-glow { animation: glowDrift 14s ease-in-out infinite alternate; }
@keyframes glowDrift { from { transform: translate(0, 0) scale(1); opacity: .45; } to { transform: translate(-90px, 60px) scale(1.15); opacity: .65; } }

/* Hero collage: cards drop in one by one, then float; JS adds a subtle mouse parallax via `translate` */
.hero-visual { position: relative; aspect-ratio: 1 / 1.02; perspective: 1200px; }
.hv {
  position: absolute; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7); border: 1px solid rgba(255, 255, 255, .08);
  translate: calc(var(--px, 0px) * var(--depth, 1)) calc(var(--py, 0px) * var(--depth, 1));
  transition: translate .8s cubic-bezier(.2, .8, .2, 1);
}
.hv img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 16s ease-in-out infinite alternate; }
.hv-1 { --depth: 1; width: 50%; height: 64%; left: 0; top: 4%; z-index: 2; animation: cardIn 1.2s var(--ease) .45s both, float 9s ease-in-out 1.65s infinite; }
.hv-2 { --depth: .5; width: 62%; height: 44%; right: 0; top: 0; animation: cardIn 1.2s var(--ease) .25s both, float 12s ease-in-out 1.45s infinite reverse; }
.hv-2 img { object-position: 20% 30%; animation-delay: -5s; }
.hv-3 { --depth: 1.5; width: 62%; height: 46%; right: 4%; bottom: 0; z-index: 3; animation: cardIn 1.2s var(--ease) .65s both, float 11s ease-in-out 1.85s infinite; }
.hv-3 img { animation-delay: -9s; }
.hv-leaf {
  position: absolute; left: 12%; top: 72%; width: 64px; height: 100px; z-index: 1;
  background: linear-gradient(135deg, #FFE45C, var(--gold) 45%, var(--gold-600));
  border-radius: 0 100% 0 100%; box-shadow: 0 16px 40px -10px rgba(248, 208, 22, .6);
  transform-origin: 0 100%;
  translate: calc(var(--px, 0px) * -1.6) calc(var(--py, 0px) * -1.6);
  transition: translate .8s cubic-bezier(.2, .8, .2, 1);
  animation: leafIn 1.3s var(--ease) 1s both, leafSway 6s ease-in-out 2.3s infinite;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(60px) rotateX(12deg) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
@keyframes leafIn { from { opacity: 0; transform: rotate(-70deg) scale(.3); } to { opacity: 1; transform: rotate(-8deg); } }
@keyframes leafSway { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(6deg) translateY(-6px); } }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, .4); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--gold); animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Stats ---------- */
.stats { background: var(--maroon); color: #fff; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); }
.stat { padding: 46px 24px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 30%; bottom: 30%; width: 1px; background: rgba(255, 255, 255, .2); }
.stat strong { display: block; font-family: var(--ff-num); font-weight: 300; letter-spacing: -.02em; font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; color: var(--gold); margin-bottom: 10px; }
.stat > span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }

/* ---------- About ---------- */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.about-badge { position: absolute; right: -18px; bottom: 36px; background: var(--maroon); color: #fff; padding: 22px 26px; border-radius: var(--radius-sm); box-shadow: var(--shadow); max-width: 220px; }
.about-badge strong { display: block; font-family: var(--ff-num); font-weight: 600; font-size: 1.7rem; color: var(--gold); line-height: 1.1; }
.about-badge span { font-size: .82rem; color: rgba(255, 255, 255, .85); }
.about-copy h2 em { font-style: normal; color: var(--maroon); }
.about-copy p { color: var(--muted); }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(56px, 8vw, 96px); }
.vm-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.vm-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 0 100% 0 100%; background: var(--gold); opacity: .12; transform: rotate(-10deg); }
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vm-icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--maroon); color: #fff; font-size: 1.5rem; margin-bottom: 22px; }
.vm-card h3 { font-family: var(--ff-display); font-weight: 400; font-size: 1.7rem; color: var(--maroon); }
.vm-card p { color: var(--muted); margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service { position: relative; padding: 34px 30px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s, border-color .45s, color .45s; }
.service::before { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, var(--maroon) 0%, var(--maroon-800) 100%); opacity: 0; transition: opacity .45s; }
.service > * { position: relative; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; color: #fff; }
.service:hover::before { opacity: 1; }
.service-num { position: absolute; right: 26px; top: 26px; font-family: var(--ff-num); font-weight: 500; font-size: .85rem !important; font-size: 1rem; color: #C9BEB5; transition: color .45s; }
.service-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: rgba(140, 27, 45, .08); color: var(--maroon); font-size: 1.45rem; margin-bottom: 24px; transition: background .45s, color .45s; }
.service h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service p { font-size: .92rem; color: var(--muted); margin: 0; transition: color .45s; }
.service:hover .service-icon { background: var(--gold); color: var(--ink); }
.service:hover p { color: rgba(255, 255, 255, .8); }
.service:hover .service-num { color: var(--gold); }

/* ---------- Why ---------- */
.why { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why::after { content: ""; position: absolute; left: -200px; bottom: -200px; width: 520px; height: 520px; border-radius: 50%; background: var(--maroon); filter: blur(150px); opacity: .45; pointer-events: none; }
.why-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.why-head { position: sticky; top: 110px; }
.why .eyebrow { color: var(--gold); }
.why-head p { color: rgba(255, 255, 255, .7); margin-bottom: 30px; }
.why-list li { display: flex; gap: 26px; padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.why-list li:first-child { padding-top: 0; }
.why-num { font-family: var(--ff-num); font-weight: 500; font-size: 1.1rem; color: var(--gold); min-width: 32px; padding-top: 2px; }
.why-list h3 { font-size: 1.2rem; margin-bottom: 6px; }
.why-list p { color: rgba(255, 255, 255, .68); margin: 0; }

/* ---------- Work ---------- */
.work { background: var(--ivory); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: -20px 0 40px; }
.filter { border: 1px solid var(--line); background: var(--paper); color: var(--text); padding: 10px 20px; border-radius: 999px; font-size: .88rem; font-weight: 500; transition: background .25s, color .25s, border-color .25s; }
.filter:hover { border-color: var(--maroon); color: var(--maroon); }
.filter.is-active { background: var(--maroon); border-color: var(--maroon); color: #fff; }

.work-grid { columns: 3 320px; column-gap: 20px; }
.work-item { break-inside: avoid; margin: 0 0 20px; border-radius: var(--radius-sm); overflow: hidden; background: #ddd; transition: opacity .4s, transform .4s var(--ease); }
.work-item.is-hidden { display: none; }
.work-link { display: block; position: relative; }
.work-link img { width: 100%; transition: transform .8s var(--ease); }
.work-link figcaption { position: absolute; inset: auto 0 0 0; padding: 60px 22px 20px; background: linear-gradient(to top, rgba(42, 6, 13, .92), rgba(42, 6, 13, 0)); color: #fff; display: flex; flex-direction: column; gap: 2px; opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s var(--ease); }
.work-link figcaption span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.work-link figcaption strong { font-weight: 600; font-size: 1.02rem; }
.work-link:hover img, .work-link:focus-visible img { transform: scale(1.04); }
.work-link:hover figcaption, .work-link:focus-visible figcaption { opacity: 1; transform: none; }

/* ---------- Process ---------- */
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 24px; counter-reset: step; position: relative; }
.process-grid::before { content: ""; position: absolute; left: 30px; right: 30px; top: 30px; height: 1px; background: repeating-linear-gradient(90deg, var(--maroon) 0 6px, transparent 6px 12px); opacity: .4; }
.step { position: relative; }
.step-num { position: relative; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--maroon); color: var(--gold); font-family: var(--ff-num); font-weight: 600; font-size: 1.3rem; margin-bottom: 26px; box-shadow: 0 0 0 8px var(--paper); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Journey ---------- */
.journey { background: var(--maroon); color: #fff; overflow: hidden; }
.journey .eyebrow { color: var(--gold); }
.journey-head { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.journey-head > div { max-width: 640px; }
.journey-head p:not(.eyebrow) { color: rgba(255, 255, 255, .78); margin: 0; }
.journey-nav { display: flex; gap: 10px; flex: none; }
.jn-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; display: grid; place-items: center; font-size: 1.1rem; transition: background .25s, color .25s, border-color .25s; }
.jn-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.jn-btn[data-dir="-1"] .ico { transform: rotate(180deg); }

.journey-track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 max(16px, calc((100vw - var(--container)) / 2)) 10px; scroll-padding-inline: max(16px, calc((100vw - var(--container)) / 2)); }
.journey-track::-webkit-scrollbar { display: none; }
.timeline { display: flex; gap: 22px; position: relative; padding-top: 4px; width: max-content; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: calc(4px + 190px + 26px); height: 1px; background: rgba(255, 255, 255, .25); }
.milestone { width: 260px; flex: none; scroll-snap-align: start; position: relative; }
.milestone-img { height: 190px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255, 255, 255, .15); }
.milestone-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.milestone:hover .milestone-img img { transform: scale(1.06); }
.milestone-year { display: inline-block; position: relative; margin-top: 16px; padding: 4px 14px; border-radius: 999px; background: #fff; color: var(--maroon); font-family: var(--ff-num); font-weight: 600; font-size: .95rem; }
.milestone h3 { margin-top: 12px; font-weight: 500; font-size: 1rem; }
.milestone.is-now .milestone-year { background: var(--gold); color: var(--ink); }
.milestone.is-now .milestone-img { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(248, 208, 22, .3); }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; padding: clamp(70px, 9vw, 110px) 0; position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; left: 50%; top: 50%; width: 700px; height: 400px; transform: translate(-50%, -50%); background: var(--maroon); filter: blur(150px); opacity: .6; }
.cta-inner { position: relative; max-width: 760px; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.cta p { color: rgba(255, 255, 255, .75); }
.cta .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info > p { color: var(--muted); }
.contact-list { display: grid; gap: 18px; margin: 34px 0; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.contact-list li > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--maroon); color: var(--gold); font-size: 1.1rem; flex: none; }
.contact-list small { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list address { font-weight: 600; word-break: break-word; }
.contact-list a:hover { color: var(--maroon); }

.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); color: var(--maroon); transition: background .25s, color .25s, border-color .25s, transform .25s; }
.socials a:hover { background: var(--maroon); color: var(--gold); border-color: var(--maroon); transform: translateY(-3px); }

.contact-form { background: var(--paper); padding: clamp(28px, 4vw, 46px); border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 18px; border-top: 4px solid var(--maroon); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field span { font-size: .8rem; font-weight: 600; color: var(--text); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--text);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #FCFBF9;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--maroon); background: #fff; box-shadow: 0 0 0 4px rgba(140, 27, 45, .1); }
.field .is-invalid, .field input:user-invalid, .field textarea:user-invalid { border-color: #C0392B; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--muted); margin: 0; text-align: center; }
.form-status { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 500; }
.form-status.is-ok { background: #EAF6EC; color: #1E6B34; border: 1px solid #BFE3C7; }
.form-status.is-err { background: #FBECEC; color: #962424; border: 1px solid #F0C4C4; }

.map { margin-top: clamp(56px, 7vw, 90px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding: 80px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.footer-brand img { width: 170px; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; }
.site-footer h4 { color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--gold); }
.footer-contact li { word-break: break-word; }
.site-footer .socials a { border-color: rgba(255, 255, 255, .15); color: #fff; }
.site-footer .socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 0 30px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .82rem; }
.footer-bottom p { margin: 0; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  animation: waIn .8s var(--ease) 1.6s both;
}
.wa-right { right: 22px; flex-direction: row-reverse; }
.wa-left { left: 22px; }
.wa-icon {
  position: relative; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.75rem;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6), 0 4px 12px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease);
}
.wa-icon::before { /* soft pulse ring */
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover .wa-icon { transform: scale(1.08); }
.wa-label {
  background: #fff; color: var(--ink); font-size: .85rem; font-weight: 600;
  padding: 10px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease), opacity .3s;
}
.wa-float:hover .wa-label { transform: translateX(var(--wa-shift, -4px)); }
.wa-left { --wa-shift: 4px; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes waIn { from { opacity: 0; transform: translateY(30px) scale(.8); } to { opacity: 1; transform: none; } }
.nav-open .wa-float { display: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8, 4, 5, .94); display: flex; align-items: center; justify-content: center; padding: 60px 80px; opacity: 0; transition: opacity .3s; }
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 170px); border-radius: 8px; object-fit: contain; }
.lightbox figcaption { color: #fff; text-align: center; display: grid; gap: 2px; }
.lightbox figcaption span { color: var(--gold); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.lightbox button { position: absolute; border: 0; background: rgba(255, 255, 255, .08); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; transition: background .25s, color .25s; }
.lightbox button:hover { background: var(--gold); color: var(--ink); }
.lb-close { top: 20px; right: 20px; font-size: 1.8rem !important; line-height: 1; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev .ico { transform: rotate(180deg); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease) var(--d, 0ms), transform .9s var(--ease) var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { gap: 22px; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 55;
    flex-direction: column; justify-content: center; gap: 26px;
    background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-900) 100%);
    opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  }
  .nav a:not(.btn) { color: #fff !important; font-size: 1.4rem; font-family: var(--ff-display); }
  .nav a:not(.btn)::after { background: var(--gold) !important; }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .nav-open .brand-light { opacity: 1 !important; }
  .nav-open .brand-dark { opacity: 0 !important; }
  .nav-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .brand { z-index: 60; width: 128px; }

  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 520px; width: 100%; margin-inline: auto; }
  .scroll-cue { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .2); }

  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { right: 16px; }
  .why-head { position: static; }
  .vm-grid { grid-template-columns: 1fr; }
  .journey-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .section-head { margin-bottom: 40px; }
  .hero { padding-bottom: 60px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .stat { padding: 32px 12px; }
  .vm-card { padding: 30px 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: -16px; padding: 0 16px 6px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: none; }
  .work-grid { columns: 2 150px; column-gap: 12px; }
  .work-item { margin-bottom: 12px; }
  .work-link figcaption { display: none; }
  .milestone { width: 220px; }
  .milestone-img { height: 160px; }
  .timeline::before { top: calc(4px + 160px + 26px); }
  .footer-grid { grid-template-columns: 1fr; }
  .map { height: 300px; }
  .wa-float { bottom: 16px; }
  .wa-right { right: 16px; }
  .wa-left { left: 16px; }
  .wa-icon { width: 54px; height: 54px; font-size: 1.6rem; }
  .wa-label { display: none; }
  .lightbox { padding: 60px 12px 90px; }
  .lb-prev, .lb-next { top: auto; bottom: 18px; transform: none; }
  .lb-prev { left: calc(50% - 62px); }
  .lb-next { right: calc(50% - 62px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .shimmer { animation: none !important; }
}
