:root {
  --ink: #090d0a;
  --ink-soft: #0e1510;
  --forest: #152217;
  --forest-2: #263b27;
  --paper: #f2efe8;
  --muted: #a7aaa1;
  --gold: #d5a34c;
  --gold-light: #f0c875;
  --gold-dark: #8e6425;
  --line: rgba(231, 208, 158, .2);
  --white: #fffdf8;
  --green: #2cc66d;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--gold-dark) var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
section[id], article[id] { scroll-margin-top: 92px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: var(--ink); background: var(--gold-light); }

.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; color: var(--ink); background: var(--gold-light); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(1380px, calc(100% - 80px)); margin-inline: auto; }
.section { position: relative; padding: 130px 0; }
.eyebrow { margin: 0 0 24px; color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .32em; line-height: 1.5; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { margin-bottom: 28px; font-size: clamp(4rem, 6.2vw, 7rem); letter-spacing: -.035em; }
h1 em, h2 em { color: var(--gold-light); font-weight: 500; }
h2 { margin-bottom: 26px; font-size: clamp(3.25rem, 5vw, 5.9rem); letter-spacing: -.025em; }
h3 { font-size: 2rem; }

.scroll-progress { position: fixed; z-index: 300; top: 0; left: 0; width: 100%; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); box-shadow: 0 0 14px var(--gold); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 112px;
  padding: 14px 42px;
  border-bottom: 1px solid transparent;
  transition: background .35s, min-height .35s, padding .55s cubic-bezier(.2,.7,.2,1), border-color .35s, backdrop-filter .35s;
}
.site-header.is-scrolled { min-height: 82px; padding-block: 5px; background: transparent; border-color: transparent; backdrop-filter: none; }
.header-logo { --hero-logo-size: 286px; --hero-logo-offset: -22px; position: relative; isolation: isolate; display: grid; place-items: center; width: 286px; height: 145px; transition: width .7s cubic-bezier(.2,.75,.2,1), height .7s cubic-bezier(.2,.75,.2,1), transform .7s cubic-bezier(.2,.75,.2,1); }
.header-logo::before, .header-logo::after { content: none; }
.header-logo img { position: relative; z-index: 1; width: var(--hero-logo-size); max-width: none; filter: drop-shadow(1px 0 0 rgba(255,255,255,.86)) drop-shadow(-1px 0 0 rgba(255,255,255,.86)) drop-shadow(0 1px 0 rgba(255,255,255,.86)) drop-shadow(0 -1px 0 rgba(255,255,255,.86)) drop-shadow(0 0 7px rgba(255,255,255,.72)) drop-shadow(0 0 17px rgba(255,255,255,.3)) drop-shadow(0 10px 18px rgba(0,0,0,.66)); transform: translateY(var(--hero-logo-offset)); transition: width .7s cubic-bezier(.2,.75,.2,1), transform .7s cubic-bezier(.2,.75,.2,1), filter .35s; }
.header-logo:hover img { filter: drop-shadow(1px 0 0 rgba(255,255,255,1)) drop-shadow(-1px 0 0 rgba(255,255,255,1)) drop-shadow(0 1px 0 rgba(255,255,255,1)) drop-shadow(0 -1px 0 rgba(255,255,255,1)) drop-shadow(0 0 10px rgba(255,255,255,.86)) drop-shadow(0 0 22px rgba(255,255,255,.38)) drop-shadow(0 12px 22px rgba(0,0,0,.72)); transform: translateY(var(--hero-logo-offset)) scale(1.025); }
.site-header.is-scrolled .header-logo { --hero-logo-size: 112px; --hero-logo-offset: 0px; width: 156px; height: 82px; transform: translateY(-1px); }
.menu-trigger { position: relative; display: grid; place-items: center; justify-self: start; width: 58px; height: 58px; padding: 0; color: var(--gold-light); background: radial-gradient(circle at 38% 28%, rgba(37,48,37,.75), rgba(3,7,4,.8)); border: 1px solid rgba(229,183,95,.7); border-radius: 50%; cursor: pointer; box-shadow: 0 0 0 5px rgba(3,7,4,.24), 0 12px 32px rgba(0,0,0,.28), inset 0 0 20px rgba(214,164,75,.07); backdrop-filter: blur(7px); transition: transform .3s, border-color .3s, box-shadow .3s; }
.menu-trigger::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(214,164,75,.16); border-radius: inherit; transition: transform .45s, border-color .3s; }
.menu-trigger > span:not(.menu-trigger__label) { position: absolute; left: 16px; width: 25px; height: 1px; background: currentColor; transform-origin: left center; transition: width .25s, transform .25s; }
.menu-trigger > span:nth-child(1) { top: 20px; }
.menu-trigger > span:nth-child(2) { top: 28px; width: 17px; }
.menu-trigger > span:nth-child(3) { top: 36px; width: 22px; }
.menu-trigger:hover { transform: translateY(-2px) rotate(-2deg); border-color: var(--gold-light); box-shadow: 0 0 0 6px rgba(214,164,75,.1), 0 15px 34px rgba(0,0,0,.38), inset 0 0 24px rgba(214,164,75,.13); }
.menu-trigger:hover::before { transform: rotate(18deg); border-color: rgba(214,164,75,.35); }
.menu-trigger:hover > span:nth-child(1) { width: 18px; transform: translateX(7px); }
.menu-trigger:hover > span:nth-child(2) { width: 25px; }
.menu-trigger:hover > span:nth-child(3) { width: 16px; transform: translateX(9px); }
.menu-trigger__label { display: none; }

@media (min-width: 901px) {
  .menu-trigger::after { content: "←"; position: absolute; top: 50%; left: 72px; display: block; color: var(--gold-light); font-family: var(--sans); font-size: 1.8rem; font-weight: 400; line-height: 1; text-shadow: 0 0 13px rgba(226,178,86,.55); pointer-events: none; animation: menu-arrow-nudge 1.25s ease-in-out infinite; transition: opacity .42s, visibility .42s; }
  .menu-trigger__label { position: absolute; top: 50%; left: 116px; display: block; color: var(--gold-light); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .17em; line-height: 1; text-shadow: 0 0 13px rgba(226,178,86,.42); white-space: nowrap; pointer-events: none; transform: translateY(-50%); transition: opacity .42s, visibility .42s, transform .42s; }
  .site-header.is-scrolled .menu-trigger::after { visibility: hidden; opacity: 0; animation: none; transform: translate(7px,-50%); }
  .site-header.is-scrolled .menu-trigger__label { visibility: hidden; opacity: 0; transform: translate(8px,-50%); }
}
.header-actions { display: grid; justify-items: end; justify-self: end; gap: 6px; }
.header-contact { padding: 8px 12px 8px 25px; background: rgba(5,10,6,.38); border: 1px solid rgba(240,200,117,.18); border-left-color: var(--line); border-radius: 3px; text-align: right; transition: background .3s, border-color .3s, box-shadow .3s, transform .3s; }
.site-header.is-scrolled .header-contact { padding: 8px 14px; background: rgba(5,10,6,.68); border-color: rgba(214,164,75,.28); box-shadow: 0 10px 30px rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.header-contact a { display: flex; align-items: center; justify-content: flex-end; gap: 11px; font-family: var(--serif); font-size: 1.22rem; }
.header-contact a svg { color: var(--gold-light); }
.header-contact__phone { position: relative; transition: color .25s, transform .25s; }
.header-contact__phone::after { content: ""; position: absolute; right: 0; bottom: -2px; left: 31px; height: 1px; background: linear-gradient(90deg, var(--gold-light), transparent); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.header-whatsapp { position: relative; display: grid; place-items: center; width: 42px; height: 42px; color: white; background: #168847; border: 1px solid #54d084; border-radius: 50%; box-shadow: 0 7px 18px rgba(15,116,56,.3); transition: background .25s, box-shadow .25s, transform .25s; }
.header-whatsapp::before { content: "WhatsApp"; position: absolute; top: 50%; right: calc(100% + 10px); padding: 5px 8px; color: white; background: rgba(5,10,6,.9); border: 1px solid rgba(84,208,132,.42); border-radius: 2px; font-size: .53rem; font-weight: 700; letter-spacing: .1em; opacity: 0; pointer-events: none; transform: translate(7px,-50%); transition: opacity .25s, transform .25s; }
.header-whatsapp svg { width: 21px; height: 21px; color: white; fill: currentColor; stroke: none; }
.header-contact__hours { display: block; margin-top: 2px; color: rgba(255,255,255,.58); font-size: .61rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: color .25s, letter-spacing .3s; }
.header-contact:hover { background: rgba(5,10,6,.68); border-color: rgba(240,200,117,.38); box-shadow: 0 14px 34px rgba(0,0,0,.25), inset 0 0 24px rgba(214,164,75,.05); transform: translateY(-3px); backdrop-filter: blur(8px); }
.header-contact:hover .header-contact__phone { color: white; transform: translateX(-2px); }
.header-contact:hover .header-contact__phone::after { transform: scaleX(1); transform-origin: left; }
.header-contact:hover .header-contact__phone svg { animation: phone-ring .55s ease; }
.header-contact:hover .header-contact__hours { color: rgba(255,255,255,.86); letter-spacing: .18em; }
.header-whatsapp:hover { background: #20a65a; box-shadow: 0 0 0 6px rgba(32,166,90,.14), 0 10px 24px rgba(15,116,56,.36); transform: rotate(-7deg) scale(1.08); }
.header-whatsapp:hover::before { opacity: 1; transform: translate(0,-50%); }
.site-header.is-scrolled .header-actions { gap: 4px; }
.site-header.is-scrolled .header-whatsapp { width: 34px; height: 34px; }

.menu-panel { position: fixed; z-index: 400; inset: 0; visibility: hidden; pointer-events: none; }
.menu-panel.is-open { visibility: visible; pointer-events: auto; }
.menu-panel__veil { position: absolute; inset: 0; background: rgba(0, 0, 0, .72); opacity: 0; backdrop-filter: blur(5px); transition: opacity .45s; }
.menu-panel.is-open .menu-panel__veil { opacity: 1; }
.menu-panel__drawer { position: absolute; top: 0; left: 0; display: flex; flex-direction: column; width: min(460px, 92vw); height: 100%; min-height: 680px; padding: 24px 50px 36px; overflow-x: hidden; overflow-y: auto; background:
  radial-gradient(circle at 68% 9%, rgba(202,147,60,.16), transparent 25%),
  linear-gradient(145deg, #121713, #080b09 72%);
  border-right: 1px solid var(--line); box-shadow: 30px 0 80px rgba(0,0,0,.45); transform: translateX(-102%); transition: transform .5s cubic-bezier(.77,0,.18,1); }
.menu-panel__drawer::after { content: ""; position: absolute; right: -90px; bottom: -50px; width: 260px; height: 330px; opacity: .2; background: radial-gradient(ellipse at 20% 80%, #315235 0 18%, transparent 19%), radial-gradient(ellipse at 45% 50%, #315235 0 20%, transparent 21%), radial-gradient(ellipse at 60% 20%, #315235 0 15%, transparent 16%); transform: rotate(-20deg); pointer-events: none; }
.menu-panel.is-open .menu-panel__drawer { transform: translateX(0); }
.menu-panel__top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; }
.menu-panel__top::before { content: none; }
.menu-panel__top img { position: relative; z-index: 1; width: 205px; margin: -8px 0 0 42px; filter: drop-shadow(1px 0 0 rgba(255,255,255,.86)) drop-shadow(-1px 0 0 rgba(255,255,255,.86)) drop-shadow(0 1px 0 rgba(255,255,255,.86)) drop-shadow(0 -1px 0 rgba(255,255,255,.86)) drop-shadow(0 0 7px rgba(255,255,255,.72)) drop-shadow(0 0 17px rgba(255,255,255,.3)) drop-shadow(0 10px 18px rgba(0,0,0,.66)); transition: filter .35s, transform .35s; }
.menu-panel__top img:hover { filter: drop-shadow(1px 0 0 rgba(255,255,255,1)) drop-shadow(-1px 0 0 rgba(255,255,255,1)) drop-shadow(0 1px 0 rgba(255,255,255,1)) drop-shadow(0 -1px 0 rgba(255,255,255,1)) drop-shadow(0 0 10px rgba(255,255,255,.86)) drop-shadow(0 0 22px rgba(255,255,255,.38)) drop-shadow(0 12px 22px rgba(0,0,0,.72)); transform: scale(1.025); }
.menu-close { position: relative; flex: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; }
.menu-close span { position: absolute; top: 21px; left: 10px; width: 25px; height: 1px; background: var(--paper); transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.menu-panel > .menu-panel__drawer > .eyebrow { margin: 8px 0 10px; color: rgba(255,255,255,.48); }
.menu-nav { display: grid; margin: 8px 0 26px; }
.menu-nav a { position: relative; display: flex; align-items: baseline; gap: 15px; padding: 8px 0 8px 20px; color: rgba(255,255,255,.84); font-family: var(--serif); font-size: 1.75rem; line-height: 1.05; transition: color .2s, transform .2s; }
.menu-nav a::before { content: ""; position: absolute; top: 12px; bottom: 12px; left: 0; width: 2px; background: var(--gold-light); transform: scaleY(0); transition: transform .2s; }
.menu-nav a span { color: rgba(255,255,255,.26); font-family: var(--sans); font-size: .55rem; letter-spacing: .15em; }
.menu-nav a:hover, .menu-nav a.is-active { color: var(--gold-light); transform: translateX(5px); }
.menu-nav a.is-active::before { transform: scaleY(1); }

@media (min-width: 901px) {
  .menu-panel__top { justify-content: center; }
  .menu-panel__top img { margin: -8px auto 0; }
  .menu-panel__top .menu-close { position: absolute; top: 0; right: -4px; }
  .menu-panel > .menu-panel__drawer > .eyebrow { text-align: center; }
  .menu-nav a { justify-content: center; padding-inline: 0; text-align: center; transform: translateX(-8px); }
  .menu-nav a::before { position: static; flex: 0 0 2px; align-self: stretch; min-height: 20px; margin-block: 2px; transform-origin: center; }
  .menu-nav a:hover, .menu-nav a.is-active { transform: translate(-8px,-2px); }
}

.menu-panel__cta { width: 100%; margin-top: auto; }
.menu-panel__foot { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 26px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.25); }
.menu-panel__foot p { margin: 0; color: rgba(255,255,255,.65); font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.25; }
.menu-panel__foot span { max-width: 125px; color: rgba(255,255,255,.36); font-size: .52rem; letter-spacing: .14em; text-align: right; text-transform: uppercase; }

.button { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 58px; padding: 0 31px; overflow: hidden; border: 1px solid transparent; border-radius: 2px; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .15em; line-height: 1; text-align: center; text-transform: uppercase; transition: transform .25s, background .25s, border-color .25s, color .25s, box-shadow .25s; }
.button::before { content: ""; position: absolute; z-index: -1; top: -50%; left: -35%; width: 28%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); transform: rotate(18deg) translateX(-220%); transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.button:hover::before { transform: rotate(18deg) translateX(620%); }
.button svg { transition: transform .25s; }
.button:hover svg:last-child { transform: translateX(5px); }
.button:hover { transform: translateY(-2px); }
.button--gold { color: #1d160b; background: linear-gradient(135deg, #efc374, #bd8735); border-color: #e9bc6d; box-shadow: 0 14px 32px rgba(187,132,48,.18); }
.button--gold:hover { background: linear-gradient(135deg, #f7d28c, #c6903c); box-shadow: 0 18px 42px rgba(187,132,48,.29); }
.button--ghost { color: var(--white); background: rgba(7,11,8,.12); border-color: rgba(255,255,255,.7); backdrop-filter: blur(5px); }
.button--ghost:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button--dark { color: var(--paper); background: var(--forest); border-color: var(--forest); box-shadow: 0 14px 32px rgba(13,26,15,.16); }
.button--dark:hover { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 18px 42px rgba(142,100,37,.24); }
.button--whatsapp { color: #fff; background: #1d8f4a; border-color: #39bd6d; }
.button--whatsapp svg, .mobile-actions a:last-child svg { fill: currentColor; stroke: none; }

.hero { position: relative; min-height: 720px; height: 100svh; max-height: 940px; overflow: hidden; background: #11160f; }
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.015);
  animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.hero__slide {
  position: absolute;
  inset: -4%;
  z-index: 0;
  opacity: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  transform: translate3d(var(--from-x, 0), var(--from-y, 0), 0) scale(1.05);
  transition: opacity 1.55s ease-in-out;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  z-index: 2;
  opacity: 1;
  animation: hero-slide-motion 7.2s ease-out both;
}
.hero__slide.is-leaving { z-index: 1; opacity: 0; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,8,5,.94) 0%, rgba(5,9,6,.75) 35%, rgba(6,9,5,.2) 68%, rgba(4,7,5,.32) 100%), linear-gradient(0deg, rgba(4,7,5,.76) 0%, transparent 34%, rgba(4,7,5,.23) 80%, rgba(4,7,5,.55) 100%); }
.hero::after, .services::before { content: ""; position: absolute; z-index: 2; bottom: -1px; left: -3%; width: 106%; height: 76px; background: var(--ink-soft); clip-path: polygon(0 12%, 49% 100%, 100% 24%, 100% 100%, 0 100%); }
.hero__content { position: relative; z-index: 4; height: 100%; min-height: inherit; }
.hero__copy { position: absolute; top: calc(50% + 29px); left: 3.5%; width: min(760px, 57vw); transform: translateY(-48%); }
.hero__copy .eyebrow { color: rgba(255,255,255,.75); }
.hero__signature { display: inline-block; margin-left: .04em; color: #f4c96c; font-family: "Caveat", cursive; font-size: .92em; font-style: normal; font-weight: 600; letter-spacing: -.045em; line-height: .72; text-shadow: 0 3px 16px rgba(0,0,0,.42), 0 0 18px rgba(228,177,79,.16); transform: rotate(-2.2deg) translateY(-.02em); }
.hero__signature::after { content: ""; display: block; width: 84%; height: 2px; margin: .08em auto 0; background: linear-gradient(90deg, transparent, currentColor 13%, currentColor 85%, transparent); border-radius: 50%; opacity: .72; transform: rotate(-1.3deg); }
.hero__lead { max-width: 650px; margin-bottom: 32px; color: rgba(255,255,255,.76); font-size: 1.04rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 15px; }
.script-note { position: relative; display: inline-block; color: var(--gold-light); font-family: var(--serif); font-size: 2rem; font-style: italic; line-height: 1.05; transform: rotate(-5deg); }
.script-note::after { content: ""; position: absolute; right: -22px; bottom: -13px; width: 150px; height: 1px; background: var(--gold-light); transform: rotate(-5deg); }
.hero__note { position: absolute; right: 0; bottom: 118px; width: 240px; margin: 0; color: #f8d995; font-size: 1.72rem; text-align: right; text-shadow: 0 3px 18px rgba(0,0,0,.85), 0 0 16px rgba(214,164,75,.28); animation: hero-note-float 3.8s ease-in-out infinite; transition: color .3s, text-shadow .3s; }
.hero__note::after { animation: note-line-glow 2.7s ease-in-out infinite; }
.hero__note:hover { color: white; text-shadow: 0 3px 18px rgba(0,0,0,.9), 0 0 20px rgba(255,255,255,.62); }
.hero__rail { position: absolute; top: 28%; right: 0; display: grid; justify-items: center; color: rgba(255,255,255,.78); cursor: default; transition: color .3s, filter .3s, transform .35s; }
.hero__rail > span { color: var(--gold-light); font-family: var(--serif); font-size: 1rem; text-shadow: 0 0 0 transparent; animation: rail-number-pulse 2.8s ease-in-out infinite; }
.hero__rail i { width: 1px; height: 58px; margin: 11px 0 32px; background: linear-gradient(180deg, rgba(255,255,255,.12), #fff, var(--gold-light), rgba(255,255,255,.12)); background-size: 100% 220%; animation: rail-line-flow 2.4s linear infinite; }
.hero__rail p { display: grid; margin: 0; font-size: .61rem; font-weight: 700; letter-spacing: .25em; line-height: 1.7; text-align: center; text-transform: uppercase; }
.hero__rail p strong { font: inherit; animation: rail-word 4.2s ease-in-out infinite; }
.hero__rail p strong:nth-child(2) { animation-delay: .32s; }
.hero__rail p strong:nth-child(3) { animation-delay: .64s; }
.hero__rail:hover { color: white; filter: drop-shadow(0 0 10px rgba(255,255,255,.38)); transform: translateX(-8px); }
.hero__emergency-link { position: absolute; top: calc(28% + 248px); right: 0; display: flex; align-items: center; justify-content: center; gap: 7px; width: 172px; min-height: 46px; overflow: hidden; color: #f8d995; background: linear-gradient(110deg, rgba(20,13,4,.76), rgba(72,45,8,.5)); border: 1px solid rgba(240,190,91,.76); border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,221,147,.08), 0 0 18px rgba(228,166,55,.25), inset 0 0 20px rgba(235,174,63,.08); font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(6px); animation: emergency-cta-glow 2.3s ease-in-out infinite; transition: color .3s, background .3s, border-color .3s, box-shadow .3s, transform .3s; }
.hero__emergency-link::after { content: ""; position: absolute; top: -70%; left: -35%; width: 26px; height: 240%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent); transform: rotate(18deg); animation: emergency-cta-shine 3.4s ease-in-out infinite; }
.hero__emergency-link span { width: 7px; height: 7px; background: #f2b84e; border: 1px solid #ffe3a8; border-radius: 50%; box-shadow: 0 0 0 4px rgba(239,179,70,.1), 0 0 14px rgba(255,193,77,.9); animation: emergency-cta-dot 1.15s ease-in-out infinite; }
.hero__emergency-link strong { color: #fff; font: inherit; letter-spacing: .09em; }
.hero__emergency-link:hover { color: #fff; background: linear-gradient(110deg, rgba(54,34,7,.94), rgba(115,72,10,.72)); border-color: #ffe1a0; box-shadow: 0 0 0 3px rgba(235,177,70,.13), 0 0 34px rgba(238,174,54,.52), inset 0 0 26px rgba(255,206,112,.14); transform: translateY(-4px) scale(1.025); }
.hero__facts { position: absolute; z-index: 3; right: 0; bottom: 43px; left: 3.5%; display: flex; justify-content: space-between; padding-right: 4%; }
.hero__facts p { display: grid; margin: 0; padding: 7px 12px 7px 22px; background: linear-gradient(100deg, rgba(240,200,117,.14), rgba(5,10,6,.3) 72%, transparent); background-repeat: no-repeat; background-size: 0 100%; border-left: 2px solid var(--gold-light); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; cursor: default; transition: background-size .4s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s, transform .35s; }
.hero__facts p:nth-child(2) { margin-left: auto; margin-right: 90px; }
.hero__facts strong { color: var(--white); font-weight: 600; transition: color .25s, letter-spacing .3s; }
.hero__facts span { color: rgba(255,255,255,.55); transition: color .25s; }
.hero__facts p:hover { background-size: 100% 100%; border-color: white; box-shadow: 0 12px 30px rgba(0,0,0,.2); transform: translateY(-7px); }
.hero__facts p:hover strong { color: var(--gold-light); letter-spacing: .27em; }
.hero__facts p:hover span { color: rgba(255,255,255,.86); }
.hero__scroll { position: absolute; z-index: 5; bottom: 48px; left: 50%; width: 38px; height: 45px; transform: translateX(-50%); }
.hero__scroll::before, .hero__scroll::after, .hero__scroll span { content: ""; position: absolute; left: 50%; width: 18px; height: 18px; border-right: 1px solid var(--gold-light); border-bottom: 1px solid var(--gold-light); transform: translateX(-50%) rotate(45deg); animation: scroll-chevron 1.8s infinite; }
.hero__scroll::before { top: 0; opacity: .3; }
.hero__scroll span { top: 9px; animation-delay: .15s; }
.hero__scroll::after { top: 18px; animation-delay: .3s; }

.services { z-index: 3; padding-top: 105px; overflow: hidden; background:
  radial-gradient(circle at 15% 0%, rgba(74,103,61,.16), transparent 30%),
  radial-gradient(circle at 90% 58%, rgba(199,146,58,.06), transparent 27%),
  var(--ink-soft); }
.services::before { bottom: auto; top: -1px; height: 55px; background: #0d130e; clip-path: polygon(0 0, 100% 0, 100% 8%, 55% 100%, 0 25%); }
.services::after { content: ""; position: absolute; inset: 0; opacity: .04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.services .container { position: relative; z-index: 2; }
.leaf { position: absolute; width: 350px; height: 500px; opacity: .09; pointer-events: none; background: radial-gradient(ellipse at 50% 15%, #7c9c66 0 19%, transparent 20%), radial-gradient(ellipse at 25% 42%, #7c9c66 0 17%, transparent 18%), radial-gradient(ellipse at 75% 55%, #7c9c66 0 18%, transparent 19%), radial-gradient(ellipse at 42% 78%, #7c9c66 0 18%, transparent 19%); filter: blur(1px); }
.leaf--left { top: 20px; left: -170px; transform: rotate(30deg); }
.section-heading { position: relative; max-width: 900px; margin: 0 auto 58px; text-align: center; }
.section-heading h2 { margin-bottom: 0; }
.section-heading h2::after { content: ""; display: block; width: 190px; height: 1px; margin: 24px auto 0; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.section-heading__note { position: absolute; top: 42%; right: -205px; padding: 10px 16px 11px; color: #6d4b19; background: rgba(194,139,51,.12); border-left: 2px solid #b87e27; font-family: var(--serif); font-size: 1.65rem; font-style: italic; font-weight: 600; line-height: 1.08; text-align: left; text-shadow: 0 1px 0 rgba(255,255,255,.5); transform: rotate(-4deg); }
.section-heading__note span:last-child { color: #9a6720; }
.services .section-heading__note { color: white; background: rgba(255,255,255,.06); border-left-color: var(--gold-light); text-shadow: 0 3px 14px rgba(0,0,0,.85), 0 0 14px rgba(255,255,255,.18); animation: service-note-float 4s ease-in-out infinite; }
.services .section-heading__note::after { content: ""; position: absolute; right: 10px; bottom: 4px; width: 70%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.86)); box-shadow: 0 0 10px rgba(255,255,255,.42); }
.services .section-heading__note:hover { color: white; background: rgba(255,255,255,.11); box-shadow: 0 12px 30px rgba(0,0,0,.28); animation: none; transform: rotate(0) scale(1.04); }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.service-card { position: relative; min-width: 0; background: #101812; border: 1px solid rgba(214,164,75,.27); border-radius: 10px; overflow: hidden; box-shadow: 0 14px 38px rgba(0,0,0,.2); transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .4s; }
.service-card::after { content: ""; position: absolute; inset: -1px; z-index: 4; opacity: 0; background: radial-gradient(260px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(240,200,117,.16), transparent 58%); border: 1px solid transparent; border-radius: inherit; pointer-events: none; transition: opacity .35s, border-color .35s, box-shadow .35s; }
.service-card:hover { z-index: 3; transform: translateY(-9px); border-color: rgba(240,200,117,.62); box-shadow: 0 26px 54px rgba(0,0,0,.34); }
.service-card:hover::after { opacity: 1; border-color: rgba(240,200,117,.3); box-shadow: inset 0 0 35px rgba(214,164,75,.08); }
.service-card a { display: block; height: 100%; }
.service-card figure { position: relative; height: 210px; margin: 0; overflow: hidden; }
.service-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #101812 0%, transparent 50%); opacity: .6; }
.service-card figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.03); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.service-card:hover figure img { transform: scale(1.055); filter: saturate(1) contrast(1.03); }
.service-card__icon { position: absolute; top: 184px; right: 20px; z-index: 2; display: grid; place-items: center; width: 52px; height: 52px; color: var(--gold-light); background: #162019; border: 1px solid rgba(214,164,75,.5); border-radius: 50%; box-shadow: 0 8px 18px rgba(0,0,0,.25); }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__body { padding: 22px 22px 24px; }
.service-card__body > span { display: block; margin-bottom: 6px; color: var(--gold); font-size: .57rem; font-weight: 700; letter-spacing: .2em; }
.service-card__body h3 { margin-bottom: 10px; font-size: 2rem; }
.service-card__body p { min-height: 83px; margin-bottom: 20px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.service-card__body b { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; color: var(--gold-light); border-top: 1px solid rgba(255,255,255,.09); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-card__body b svg { transition: transform .2s; }
.service-card:hover .service-card__body b svg { transform: translateX(4px); }
.service-card__badge { position: absolute; z-index: 3; top: 15px; left: 15px; padding: 7px 12px; color: white; background: #a63a2a; border: 1px solid #d27a68; border-radius: 30px; font-family: var(--serif); font-size: 1.1rem; line-height: 1; box-shadow: 0 4px 18px rgba(0,0,0,.25); }
.service-card--urgent { border-color: rgba(203,91,68,.55); }

.promise { position: relative; z-index: 3; overflow: hidden; border-block: 1px solid rgba(214,164,75,.34); background: #d2a04b; transform: rotate(-1.3deg) scale(1.03); }
.promise__track { display: flex; align-items: center; width: max-content; color: #181208; font-size: .66rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; animation: ticker 30s linear infinite; will-change: transform; }
.promise__group { display: flex; flex: none; align-items: center; gap: 30px; padding: 20px 22px; }
.promise__group i { flex: none; width: 5px; height: 5px; background: currentColor; border-radius: 50%; transition: box-shadow .25s, transform .25s; }
.promise__group span { transition: color .25s, text-shadow .25s, transform .25s; }
.promise:hover .promise__track { animation-play-state: paused; }
.promise:hover .promise__group span { color: #000; text-shadow: 0 1px 0 rgba(255,255,255,.32); transform: translateY(-1px); }
.promise:hover .promise__group i { box-shadow: 0 0 0 5px rgba(24,18,8,.12); transform: scale(1.25); }

.about { padding-top: 170px; background: #ece8de; color: #182019; }
.about::before { content: ""; position: absolute; top: 0; left: 0; width: 1px; height: 100%; background: rgba(0,0,0,.08); transform: translateX(14vw); }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.about .eyebrow { color: var(--gold-dark); }
.about h2 { color: #182019; }
.about h2 em { color: #7b5722; }
.about__intro > p:not(.eyebrow) { max-width: 610px; color: #5c625c; }
.text-link { display: inline-flex; align-items: center; gap: 28px; margin-top: 12px; padding-bottom: 7px; color: #77531c; border-bottom: 1px solid rgba(119,83,28,.45); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.about__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(27,43,29,.16); border: 1px solid rgba(27,43,29,.16); }
.value-card { position: relative; min-height: 300px; padding: 38px 34px; overflow: hidden; background: #f5f2eb; transition: transform .38s cubic-bezier(.2,.7,.2,1), background .35s, box-shadow .38s; }
.value-card::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 150px; height: 150px; border: 1px solid rgba(142,100,37,.16); border-radius: 50%; box-shadow: 0 0 0 25px rgba(142,100,37,.04); transform: scale(.7); transition: transform .5s; }
.value-card:hover { z-index: 2; transform: translateY(-7px); background: #fffdf7; box-shadow: 0 24px 50px rgba(27,43,29,.13); }
.value-card:first-child:hover { background: #1b2a1d; }
.value-card:hover::after { transform: scale(1.25); }
.value-card:hover > svg { transform: rotate(-8deg) scale(1.12); }
.value-card:first-child { grid-column: 1 / -1; min-height: 265px; padding-right: 40%; background: #172319; color: var(--paper); }
.value-card > span { color: var(--gold-dark); font-size: .6rem; font-weight: 700; letter-spacing: .16em; }
.value-card > svg { position: absolute; top: 34px; right: 32px; width: 44px; height: 44px; color: var(--gold); stroke-width: 1.2; transition: transform .4s; }
.value-card h3 { margin: 80px 0 14px; font-size: 2.25rem; }
.value-card:first-child h3 { margin-top: 50px; }
.value-card p { margin: 0; color: #646a64; font-size: .87rem; line-height: 1.7; }
.value-card:first-child p { color: rgba(255,255,255,.62); }

.emergency { background: linear-gradient(145deg, #101713, #090d0a); }
.emergency::after { content: ""; position: absolute; inset: 0; opacity: .035; pointer-events: none; background-image: repeating-linear-gradient(120deg, transparent 0 28px, #fff 29px, transparent 30px); }
.emergency__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 100px; align-items: center; }
.emergency__visual { position: relative; min-height: 620px; }
.emergency__visual::before { content: ""; position: absolute; z-index: -1; top: -28px; right: -28px; bottom: 55px; left: 55px; border: 1px solid rgba(214,164,75,.4); }
.emergency__visual img { width: 100%; height: 620px; object-fit: cover; filter: saturate(.76) contrast(1.08); box-shadow: var(--shadow); }
.emergency__stamp { position: absolute; right: -55px; bottom: 35px; display: grid; place-items: center; width: 150px; height: 150px; color: #21180b; background: var(--gold-light); border: 9px solid #101713; border-radius: 50%; box-shadow: 0 12px 35px rgba(0,0,0,.3); cursor: pointer; perspective: 500px; transition: color .3s, background .3s, box-shadow .3s, transform .4s cubic-bezier(.2,.8,.2,1); }
.emergency__stamp::before { content: ""; position: absolute; inset: -14px; border: 1px solid rgba(240,200,117,.7); border-radius: 50%; animation: emergency-ring 2.5s ease-out infinite; }
.emergency__stamp-label { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; padding: 0 9px; font-family: var(--sans); font-size: 1.42rem; font-weight: 800; letter-spacing: -.035em; line-height: 1; text-align: center; text-transform: uppercase; backface-visibility: hidden; transition: opacity .32s ease, transform .48s cubic-bezier(.2,.8,.2,1); }
.emergency__stamp-label--front { opacity: 1; transform: rotateY(0); }
.emergency__stamp-label--back { opacity: 0; transform: rotateY(-100deg); }
.emergency__stamp:hover, .emergency__stamp:focus-visible { color: #0d160f; background: white; box-shadow: 0 0 0 8px rgba(240,200,117,.15), 0 20px 48px rgba(0,0,0,.46), 0 0 28px rgba(240,200,117,.34); outline: none; transform: rotate(-7deg) scale(1.08); }
.emergency__stamp:hover .emergency__stamp-label--front, .emergency__stamp:focus-visible .emergency__stamp-label--front { opacity: 0; transform: rotateY(100deg); }
.emergency__stamp:hover .emergency__stamp-label--back, .emergency__stamp:focus-visible .emergency__stamp-label--back { opacity: 1; transform: rotateY(0); }
.emergency__copy { padding-left: 18px; }
.emergency__copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted); }
.emergency__copy ul { display: grid; gap: 13px; margin: 30px 0 37px; padding: 0; list-style: none; }
.emergency__copy li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.82); }
.emergency__copy li svg { flex: none; width: 18px; color: var(--gold-light); }
.emergency__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.process { color: #172018; background: #ece8de; }
.section-heading--left { margin-right: 0; margin-left: 0; text-align: left; }
.section-heading--left h2::after { margin-left: 0; }
.section-heading--left > p:not(.eyebrow) { max-width: 540px; color: #656b65; }
.section-heading--process { max-width: 760px; text-align: center; }
.section-heading--process > p:not(.eyebrow) { max-width: 630px; margin: 20px auto 0; color: #656b65; }
.process .eyebrow, .gallery .eyebrow, .area .eyebrow { color: var(--gold-dark); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 70px 0 0; padding: 0; border-top: 1px solid rgba(23,32,24,.25); list-style: none; counter-reset: step; }
.process__steps li { position: relative; min-height: 225px; padding: 38px 36px 25px 0; overflow: hidden; transition: transform .38s cubic-bezier(.2,.7,.2,1), background .35s, box-shadow .38s, padding-left .38s; }
.process__steps li:not(:last-child) { border-right: 1px solid rgba(23,32,24,.15); }
.process__steps li:not(:first-child) { padding-left: 36px; }
.process__steps li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--gold-dark); border-radius: 50%; box-shadow: 0 0 0 8px #ece8de; transition: transform .35s, box-shadow .35s; }
.process__steps li::after { content: "→"; position: absolute; right: 28px; bottom: 22px; color: #9b712e; font-family: var(--serif); font-size: 2rem; opacity: 0; transform: translateX(-18px); transition: opacity .3s, transform .3s; }
.process__steps li:not(:first-child)::before { left: 36px; }
.process__steps span { color: #9b712e; font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.process__steps h3 { margin: 40px 0 10px; font-size: 2rem; }
.process__steps p { max-width: 250px; margin: 0; color: #666c66; font-size: .87rem; }
.process__steps li:hover { z-index: 2; padding-left: 26px; background: radial-gradient(220px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(213,163,76,.24), transparent 62%), linear-gradient(145deg, rgba(255,255,255,.68), rgba(213,163,76,.12)); box-shadow: 0 22px 45px rgba(27,43,29,.1); transform: translateY(-10px); }
.process__steps li:not(:first-child):hover { padding-left: 54px; }
.process__steps li:hover::before { transform: scale(1.65); box-shadow: 0 0 0 10px rgba(213,163,76,.16), 0 0 22px rgba(142,100,37,.35); }
.process__steps li:hover::after { opacity: 1; transform: translateX(0); }
.process__steps li:hover h3 { color: #7d571f; }

.gallery { overflow: hidden; color: #152016; background: #dfe3d7; }
.gallery::before { content: ""; position: absolute; right: -100px; bottom: -170px; width: 530px; height: 530px; border: 1px solid rgba(29,64,36,.11); border-radius: 50%; box-shadow: 0 0 0 70px rgba(29,64,36,.035), 0 0 0 140px rgba(29,64,36,.025); }
.gallery__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: 350px; gap: 16px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; background: #172018; border: 0; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform .65s, filter .45s; }
.gallery-item::after { content: "+"; position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 42px; height: 42px; color: #181208; background: var(--gold-light); border-radius: 50%; font-family: var(--serif); font-size: 1.8rem; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; }
.gallery-item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 45px 20px 18px; color: white; background: linear-gradient(0deg, rgba(5,8,5,.82), transparent); font-family: var(--serif); font-size: 1.55rem; text-align: left; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1); }
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery__more { display: flex; justify-content: center; margin-top: 44px; }

.area { overflow: hidden; background: #111913; }
.area__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.area__copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); }
.area__copy .text-link { color: var(--gold-light); border-color: rgba(214,164,75,.4); }
.area__map { position: relative; min-height: 520px; overflow: hidden; border: 1px solid rgba(229,183,95,.48); background: radial-gradient(circle at 50% 50%, rgba(64,87,62,.74), transparent 32%), linear-gradient(145deg, #243427, #0c140e 76%); box-shadow: inset 0 0 80px rgba(0,0,0,.42), 0 25px 70px rgba(0,0,0,.2); }
.area__map::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 52px 52px; }
.area__map::after { content: ""; position: absolute; inset: 0; z-index: 5; border: 10px solid rgba(7,12,8,.2); box-shadow: inset 0 0 70px rgba(0,0,0,.48); pointer-events: none; }
.area__roads { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; }
.area__roads path { fill: none; stroke: rgba(214,225,211,.34); stroke-width: 2; stroke-dasharray: 6 7; }
.area__roads .area__river { stroke: rgba(117,182,192,.58); stroke-width: 11; stroke-dasharray: none; filter: drop-shadow(0 0 8px rgba(100,176,190,.22)); }
.area__roads .area__ring-road { stroke: rgba(226,235,223,.4); stroke-width: 3; stroke-dasharray: 2 9; }
.area__coverage { position: absolute; z-index: 2; top: 50%; left: 50%; width: min(56%, 410px); aspect-ratio: 1; border: 2px solid rgba(240,200,117,.9); border-radius: 50%; background: radial-gradient(circle, rgba(218,168,78,.04) 0 33%, rgba(218,168,78,.14) 34% 35%, rgba(218,168,78,.04) 36% 66%, rgba(218,168,78,.12) 67% 68%, rgba(218,168,78,.04) 69%); box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 55px rgba(205,151,60,.2), inset 0 0 55px rgba(205,151,60,.09); transform: translate(-50%, -50%); }
.area__coverage::before, .area__coverage::after { content: ""; position: absolute; background: rgba(240,200,117,.28); }
.area__coverage::before { top: 50%; right: 0; left: 0; height: 1px; }
.area__coverage::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.area__coverage span { position: absolute; inset: -10px; border: 1px solid rgba(240,200,117,.18); border-radius: 50%; animation: map-pulse 3.2s ease-out infinite; }
.area__city { position: absolute; z-index: 4; display: grid; justify-items: center; color: rgba(255,255,255,.92); font-family: var(--serif); font-size: .98rem; line-height: 1.05; text-shadow: 0 2px 7px rgba(0,0,0,.85); transform: translate(-50%, -50%); transition: transform .28s, color .28s; }
.area__city i { width: 7px; height: 7px; margin-bottom: 5px; background: #e7d9b8; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,255,255,.08); }
.area__city b { font-weight: 600; white-space: nowrap; }
.area__city small { margin-top: 4px; color: rgba(255,255,255,.55); font-family: var(--sans); font-size: .47rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.area__city:hover { z-index: 6; color: var(--gold-light); transform: translate(-50%, -50%) scale(1.12); }
.area__city--warsaw { top: 50%; left: 50%; color: var(--gold-light); font-size: 1.35rem; }
.area__city--warsaw i { width: 16px; height: 16px; background: var(--gold-light); border: 4px solid #fff6dc; box-shadow: 0 0 0 9px rgba(240,200,117,.17), 0 0 24px rgba(240,200,117,.5); }
.area__city--pruszkow { top: 54%; left: 21%; }
.area__city--wolomin { top: 44%; left: 79%; }
.area__city--legionowo { top: 18%; left: 49%; }
.area__city--marki { top: 35%; left: 66%; }
.area__city--piaseczno { top: 79%; left: 43%; color: var(--gold-light); }
.area__city--piaseczno i { background: var(--gold-light); border-color: var(--gold-light); }
.area__city--otwock { top: 76%; left: 69%; }
.area__legend { position: absolute; z-index: 6; bottom: 18px; left: 20px; display: flex; align-items: center; gap: 10px; padding: 9px 12px; color: rgba(255,255,255,.7); background: rgba(5,10,6,.68); border: 1px solid rgba(240,200,117,.24); font-size: .51rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(8px); }
.area__legend i { width: 17px; height: 17px; border: 1px solid var(--gold-light); border-radius: 50%; }

.faq { color: #172018; background: #ece8de; }
.faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; align-items: start; }
.faq .eyebrow { color: var(--gold-dark); }
.faq__list { border-top: 1px solid rgba(23,32,24,.25); counter-reset: faq-item; }
.faq details { position: relative; overflow: hidden; border-bottom: 1px solid rgba(23,32,24,.25); counter-increment: faq-item; transition: background .35s, border-color .35s, box-shadow .35s, transform .35s cubic-bezier(.2,.7,.2,1); }
.faq details::after { content: ""; position: absolute; inset: 0; opacity: 0; background: radial-gradient(310px circle at var(--glow-x, 78%) var(--glow-y, 50%), rgba(213,163,76,.18), transparent 68%); pointer-events: none; transition: opacity .35s; }
.faq summary { position: relative; z-index: 1; padding: 28px 68px 28px 58px; font-family: var(--serif); font-size: 1.55rem; line-height: 1.25; cursor: pointer; list-style: none; transition: color .3s, padding-left .35s; }
.faq summary::before { content: counter(faq-item, decimal-leading-zero); position: absolute; top: 34px; left: 4px; color: #9b712e; font-family: var(--sans); font-size: .56rem; font-weight: 800; letter-spacing: .15em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: absolute; top: 50%; right: 8px; width: 34px; height: 34px; background: rgba(213,163,76,.08); border: 1px solid rgba(142,100,37,.5); border-radius: 50%; transform: translateY(-50%); transition: background .3s, border-color .3s, box-shadow .3s, transform .35s; }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; top: 50%; left: 9px; width: 14px; height: 1px; background: #8e6425; transition: background .3s, transform .35s; }
.faq summary span::after { transform: rotate(90deg); }
.faq details:hover { z-index: 1; background: rgba(255,253,248,.55); border-color: rgba(142,100,37,.42); box-shadow: 0 15px 38px rgba(28,39,29,.08); transform: translateX(8px); }
.faq details:hover::after, .faq details[open]::after { opacity: 1; }
.faq details:hover summary { color: #76501c; padding-left: 64px; }
.faq details[open] { z-index: 2; background: rgba(255,253,248,.88); border-color: rgba(142,100,37,.56); box-shadow: inset 3px 0 #b7802d, 0 18px 42px rgba(28,39,29,.1); transform: translateX(8px); }
.faq details[open] summary { color: #76501c; }
.faq details[open] summary span { background: #9a6a25; border-color: #9a6a25; box-shadow: 0 0 0 6px rgba(213,163,76,.12); transform: translateY(-50%) rotate(45deg); }
.faq details[open] summary span::before, .faq details[open] summary span::after { background: #fff8e7; }
.faq details p { position: relative; z-index: 1; max-width: 710px; margin: 0; padding: 0 68px 30px 58px; color: #626862; font-size: .9rem; line-height: 1.75; transform-origin: top left; animation: faq-answer-in .38s cubic-bezier(.2,.7,.2,1) both; }

.contact { overflow: hidden; background: linear-gradient(138deg, #162218, #080c09 75%); }
.contact::before { content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%; opacity: .12; background: url("assets/client/ogrody/ogrody-08.webp") center / cover; filter: saturate(.4); }
.contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: start; }
.contact__info h2 { max-width: 620px; }
.contact__lead { max-width: 600px; color: var(--muted); }
.contact__direct { display: grid; gap: 0; margin: 42px 0 32px; border-top: 1px solid var(--line); }
.contact__direct a { display: grid; gap: 2px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding-left .2s, color .2s; }
.contact__direct a:hover { padding-left: 8px; color: var(--gold-light); }
.contact__direct small { color: var(--gold); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.contact__direct strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.contact__hours { display: flex; align-items: center; gap: 17px; }
.contact__hours svg { width: 32px; height: 32px; color: var(--gold-light); }
.contact__hours p { display: grid; margin: 0; }
.contact__hours strong { font-size: .82rem; }
.contact__hours span { color: var(--muted); font-size: .75rem; }
.contact__nip { margin-top: 28px; color: rgba(255,255,255,.42); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-form { padding: 42px; color: #192019; background: #f0ede5; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 20px; color: #474c48; font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; min-height: 53px; padding: 13px 0; color: #192019; background: transparent; border: 0; border-bottom: 1px solid #a9aca6; border-radius: 0; outline: none; font-size: .88rem; letter-spacing: 0; text-transform: none; transition: border-color .2s; }
.contact-form select { padding-inline: 32px; text-align: center; text-align-last: center; }
.contact-form select option { text-align: center; }
.contact-form textarea { min-height: 116px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold-dark); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #93968f; }
.upload { grid-template-columns: auto 1fr auto !important; align-items: center; gap: 16px !important; min-height: 105px; margin-top: 5px; padding: 18px 20px; border: 1px dashed #a29b8d; cursor: pointer; transition: border-color .2s, background .2s; }
.upload:hover, .upload.is-dragging { background: #e8e1d4; border-color: var(--gold-dark); }
.upload input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload svg { width: 30px; height: 30px; color: var(--gold-dark); }
.upload span { display: grid; gap: 3px; color: #292f2a; font-size: .78rem; letter-spacing: 0; text-transform: none; }
.upload span strong { font-size: .9rem; }
.upload span small { color: #787d77; font-weight: 500; }
.upload > b { padding: 10px 13px; color: #6d4d1b; border: 1px solid #b68a45; font-size: .58rem; letter-spacing: .12em; white-space: nowrap; }
.file-list { display: grid; gap: 6px; margin: -8px 0 18px; padding: 0; list-style: none; }
.file-list li { display: flex; justify-content: space-between; gap: 15px; color: #6d716c; font-size: .72rem; }
.file-list li span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; gap: 11px !important; font-size: .68rem !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.consent input { width: 16px; min-height: 16px; margin-top: 2px; accent-color: var(--gold-dark); }
.button--submit { width: 100%; border: 0; cursor: pointer; }
.button--submit:disabled { opacity: .7; cursor: wait; }
.form-status { min-height: 24px; margin: 14px 0 0; color: #7a2d23; font-size: .75rem; text-align: center; }
.form-status.is-success { color: #287642; }
.form-note { margin: 0; color: #707570; font-size: .7rem; text-align: center; }
.form-note a { color: #1f7f45; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { position: relative; isolation: isolate; min-height: 620px; padding: 48px 0 27px; overflow: hidden; color: rgba(255,255,255,.68); background: #060906; border-top: 1px solid var(--line); }
.site-footer::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(4,9,6,.88), rgba(4,9,6,.62) 48%, rgba(4,8,5,.82)), linear-gradient(0deg, rgba(3,7,4,.96), transparent 48%, rgba(3,7,4,.72)), url("assets/client/ogrody/ogrody-08.webp") center 58% / cover no-repeat; transform: scale(1.025); transition: transform 7s ease; }
.site-footer::after { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 11% 55%, rgba(213,163,76,.15), transparent 25%), radial-gradient(circle at 83% 32%, rgba(87,125,63,.2), transparent 30%), linear-gradient(110deg, transparent 46%, rgba(255,255,255,.025) 47%, transparent 48%); pointer-events: none; }
.site-footer:hover::before { transform: scale(1.06); }
.site-footer__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.site-footer__top img { width: 200px; filter: drop-shadow(1px 0 0 rgba(255,255,255,.86)) drop-shadow(-1px 0 0 rgba(255,255,255,.86)) drop-shadow(0 1px 0 rgba(255,255,255,.86)) drop-shadow(0 -1px 0 rgba(255,255,255,.86)) drop-shadow(0 0 7px rgba(255,255,255,.72)) drop-shadow(0 0 17px rgba(255,255,255,.3)) drop-shadow(0 10px 18px rgba(0,0,0,.66)); transition: transform .35s, filter .35s; }
.site-footer__top img:hover { filter: drop-shadow(1px 0 0 rgba(255,255,255,1)) drop-shadow(-1px 0 0 rgba(255,255,255,1)) drop-shadow(0 1px 0 rgba(255,255,255,1)) drop-shadow(0 -1px 0 rgba(255,255,255,1)) drop-shadow(0 0 10px rgba(255,255,255,.86)) drop-shadow(0 0 22px rgba(255,255,255,.38)) drop-shadow(0 12px 22px rgba(0,0,0,.72)); transform: translateY(-4px) scale(1.025); }
.site-footer__top p { margin: 0; color: var(--gold); font-size: .58rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.site-footer__top a { display: flex; align-items: center; justify-self: end; gap: 10px; font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 42px; min-height: 260px; padding-block: 27px 23px; }
.footer-nav a { --scatter-x: 0px; --scatter-y: 0px; position: relative; align-self: center; min-height: 78px; padding: 14px 16px 13px 20px; color: rgba(255,255,255,.84); background: linear-gradient(110deg, rgba(5,11,7,.65), rgba(10,18,11,.18)); border-left: 1px solid rgba(222,176,88,.55); backdrop-filter: blur(2px); transform: translate(var(--scatter-x), var(--scatter-y)); transition: color .28s, background .28s, border-color .28s, box-shadow .28s, transform .38s cubic-bezier(.2,.75,.2,1); }
.footer-nav a::before { content: ""; position: absolute; right: 15px; bottom: 13px; width: 32px; height: 1px; background: var(--gold-light); transform: scaleX(.35); transform-origin: right; transition: transform .35s; }
.footer-nav a small { display: block; margin-bottom: 4px; color: var(--gold-light); font-size: .47rem; font-weight: 700; letter-spacing: .18em; }
.footer-nav a span { font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1; }
.footer-nav a:nth-child(2) { --scatter-y: 20px; }
.footer-nav a:nth-child(3) { --scatter-y: -7px; }
.footer-nav a:nth-child(4) { --scatter-y: 13px; }
.footer-nav a:nth-child(5) { --scatter-x: 20px; --scatter-y: -4px; }
.footer-nav a:nth-child(6) { --scatter-x: -6px; --scatter-y: 15px; }
.footer-nav a:nth-child(7) { --scatter-x: 12px; --scatter-y: -12px; }
.footer-nav a:nth-child(8) { --scatter-x: -12px; --scatter-y: 7px; }
.footer-nav a:hover { color: #fff; background: linear-gradient(110deg, rgba(21,37,23,.9), rgba(9,17,10,.48)); border-color: var(--gold-light); box-shadow: 0 16px 34px rgba(0,0,0,.26), inset 0 0 30px rgba(119,156,86,.08); transform: translate(var(--scatter-x), calc(var(--scatter-y) - 7px)); }
.footer-nav a:hover::before { transform: scaleX(1); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); font-size: .56rem; letter-spacing: .14em; text-shadow: 0 2px 8px rgba(0,0,0,.9); text-transform: uppercase; }
.site-footer__bottom a { color: var(--gold-light); transition: color .2s, transform .2s; }
.site-footer__bottom a:hover { color: white; transform: translateY(-2px); }
.mobile-actions { display: none; }

.lightbox { width: min(1100px, calc(100% - 40px)); max-width: none; padding: 0; overflow: visible; color: white; background: #070a08; border: 1px solid var(--line); box-shadow: 0 28px 100px rgba(0,0,0,.65); }
.lightbox::backdrop { background: rgba(0,0,0,.83); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 76vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 16px 20px; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.3rem; text-align: center; }
.lightbox button { position: absolute; z-index: 2; top: -17px; right: -17px; width: 42px; height: 42px; padding: 0; color: #181208; background: var(--gold-light); border: 0; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card.reveal:nth-child(odd) { transform: translateX(-38px) rotate(-1deg); }
.service-card.reveal:nth-child(even) { transform: translateX(38px) rotate(1deg); }
.service-card.reveal.is-visible { transform: translate(0) rotate(0); }
.about__intro.reveal, .area__copy.reveal, .faq .section-heading.reveal, .contact__info.reveal { transform: translateX(-52px); }
.about__intro.reveal.is-visible, .area__copy.reveal.is-visible, .faq .section-heading.reveal.is-visible, .contact__info.reveal.is-visible { transform: translateX(0); }
.value-card.reveal { transform: translateY(42px) scale(.96); }
.value-card.reveal.is-visible { transform: translateY(0) scale(1); }
.emergency__visual.reveal { transform: translateX(-65px) scale(.96); }
.emergency__copy.reveal { transform: translateX(65px); }
.emergency__visual.reveal.is-visible, .emergency__copy.reveal.is-visible { transform: translateX(0) scale(1); }
.process__steps li.reveal { transform: translateY(48px) scale(.94); }
.process__steps li.reveal.is-visible { transform: translateY(0) scale(1); }
.gallery-item.reveal { opacity: 0; clip-path: inset(0 100% 0 0); transform: scale(.96); transition: opacity .35s, transform .9s cubic-bezier(.2,.7,.2,1), clip-path .9s cubic-bezier(.2,.7,.2,1), filter .45s; }
.gallery-item.reveal:nth-child(even) { clip-path: inset(0 0 0 100%); }
.gallery-item.reveal.is-visible { opacity: 1; clip-path: inset(0); transform: scale(1); }
.area__map.reveal { opacity: 0; transform: perspective(900px) rotateY(-7deg) scale(.92); transform-origin: right center; }
.area__map.reveal.is-visible { opacity: 1; transform: perspective(900px) rotateY(0) scale(1); }
.faq__list.reveal, .contact-form.reveal { transform: translateX(58px); }
.faq__list.reveal.is-visible, .contact-form.reveal.is-visible { transform: translateX(0); }
.service-card.reveal.is-visible:hover { transform: translateY(-9px); }
.value-card.reveal.is-visible:hover { transform: translateY(-7px); }
.process__steps li.reveal.is-visible:hover { transform: translateY(-10px) scale(1); }
.hero__copy.reveal { transform: translateY(calc(-48% + 26px)); }
.hero__copy.reveal.is-visible { transform: translateY(-48%); }

@media (min-width: 901px) {
  .hero__copy { top: calc(50% + 39px); }
  .hero__copy h1 { font-size: clamp(3.75rem, 5.8vw, 6.6rem); }
}

@keyframes hero-in { from { opacity: 0; transform: scale(1.07); } to { opacity: 1; transform: scale(1.015); } }
@keyframes hero-slide-motion {
  from { transform: translate3d(var(--from-x, 0), var(--from-y, 0), 0) scale(1.05); }
  to { transform: translate3d(var(--to-x, 0), var(--to-y, 0), 0) scale(1.12); }
}
@keyframes faq-answer-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-chevron { 0%,100% { opacity: .25; transform: translate(-50%,-3px) rotate(45deg); } 50% { opacity: 1; transform: translate(-50%,3px) rotate(45deg); } }
@keyframes map-pulse { 0% { opacity: .75; transform: scale(.94); } 70%, 100% { opacity: 0; transform: scale(1.11); } }
@keyframes phone-ring { 0%,100% { transform: rotate(0); } 25% { transform: rotate(13deg); } 50% { transform: rotate(-10deg); } 75% { transform: rotate(6deg); } }
@keyframes hero-note-float { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-7px) rotate(-3deg); } }
@keyframes note-line-glow { 0%,100% { opacity: .45; box-shadow: 0 0 0 rgba(240,200,117,0); } 50% { opacity: 1; box-shadow: 0 0 14px rgba(240,200,117,.78); } }
@keyframes rail-number-pulse { 0%,100% { color: var(--gold-light); text-shadow: 0 0 0 rgba(240,200,117,0); transform: scale(1); } 50% { color: white; text-shadow: 0 0 16px rgba(255,255,255,.75); transform: scale(1.16); } }
@keyframes rail-line-flow { to { background-position: 0 220%; } }
@keyframes rail-word { 0%,55%,100% { color: rgba(255,255,255,.72); transform: translateX(0); } 12%,35% { color: white; transform: translateX(-4px); } }
@keyframes emergency-cta-glow { 0%,100% { box-shadow: 0 0 0 1px rgba(255,221,147,.08), 0 0 13px rgba(228,166,55,.2), inset 0 0 18px rgba(235,174,63,.07); } 50% { box-shadow: 0 0 0 3px rgba(235,177,70,.1), 0 0 29px rgba(238,174,54,.46), inset 0 0 25px rgba(255,206,112,.13); } }
@keyframes emergency-cta-dot { 0%,100% { opacity: .65; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes emergency-cta-shine { 0%,62% { opacity: 0; transform: translateX(-20px) rotate(18deg); } 78% { opacity: .75; } 100% { opacity: 0; transform: translateX(230px) rotate(18deg); } }
@keyframes menu-arrow-nudge { 0%,100% { opacity: .58; transform: translate(8px,-50%); } 50% { opacity: 1; transform: translate(0,-50%); } }
@keyframes service-note-float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-8px) rotate(-2deg); } }
@keyframes emergency-ring { 0% { opacity: .8; transform: scale(.92); } 75%,100% { opacity: 0; transform: scale(1.16); } }

@media (max-width: 1240px) {
  .container { width: min(1160px, calc(100% - 56px)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card figure { height: 250px; }
  .service-card__icon { top: 224px; }
  .section-heading__note { display: none; }
  .about__grid, .contact__grid { gap: 60px; }
  .emergency__grid { gap: 70px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 38px, 760px); }
  .section { padding: 95px 0; }
  .site-header { min-height: 82px; padding: 10px 19px; }
  .header-logo { --hero-logo-size: 150px; --hero-logo-offset: 0px; width: 150px; height: 82px; transform: none; }
  .site-header.is-scrolled .header-logo { --hero-logo-size: 106px; --hero-logo-offset: 0px; width: 145px; height: 82px; transform: none; }
  .header-actions, .site-header.is-scrolled .header-actions { display: flex; align-items: center; gap: 7px; }
  .header-contact, .site-header.is-scrolled .header-contact { padding: 0; background: none; border: 0; box-shadow: none; backdrop-filter: none; }
  .header-contact:hover { background: none; border: 0; box-shadow: none; transform: none; }
  .header-contact a span, .header-contact__hours, .menu-trigger__label { display: none; }
  .header-contact a { width: 48px; height: 48px; justify-content: center; color: var(--gold-light); border: 1px solid rgba(214,164,75,.45); border-radius: 50%; background: rgba(4,8,5,.46); }
  .header-whatsapp, .site-header.is-scrolled .header-whatsapp { width: 48px; height: 48px; }
  .header-whatsapp::before { display: none; }
  .menu-trigger { width: 48px; height: 48px; }
  .menu-trigger > span:not(.menu-trigger__label) { left: 12px; width: 23px; }
  .menu-trigger > span:nth-child(1) { top: 16px; }
  .menu-trigger > span:nth-child(2) { top: 23px; }
  .menu-trigger > span:nth-child(3) { top: 30px; }
  .hero { min-height: 760px; height: 100svh; max-height: none; }
  .hero__shade { background: linear-gradient(90deg, rgba(4,8,5,.88), rgba(5,9,6,.36)), linear-gradient(0deg, rgba(4,7,5,.82), transparent 58%, rgba(4,7,5,.5)); }
  .hero__copy { left: 0; width: 82%; }
  h1 { font-size: clamp(3.4rem, 10vw, 5.2rem); }
  h2 { font-size: clamp(3rem, 8vw, 4.8rem); }
  .hero__rail { right: 0; }
  .hero__emergency-link { display: none; }
  .hero__facts { right: 0; left: 0; gap: 22px; padding-right: 0; }
  .hero__facts p:nth-child(2) { margin: 0; }
  .about__grid, .emergency__grid, .area__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__grid, .emergency__grid, .area__grid, .faq__grid, .contact__grid { gap: 65px; }
  .about::before { display: none; }
  .emergency__visual { width: calc(100% - 35px); min-height: 500px; }
  .emergency__visual img { height: 500px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps li:nth-child(2) { border-right: 0; }
  .process__steps li:nth-child(n+3) { border-top: 1px solid rgba(23,32,24,.15); }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .gallery-item:last-child { grid-column: 1 / -1; }
  .area__grid { display: flex; flex-direction: column; }
  .area__copy, .area__map { width: 100%; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .container { width: calc(100% - 34px); }
  .section { padding: 78px 0; }
  .site-header, .site-header.is-scrolled { min-height: 72px; }
  .header-logo { --hero-logo-size: 112px; width: 126px; height: 72px; }
  .site-header.is-scrolled .header-logo { --hero-logo-size: 88px; width: 126px; height: 72px; }
  .menu-trigger, .header-contact a, .header-whatsapp, .site-header.is-scrolled .header-whatsapp { width: 42px; height: 42px; }
  .menu-trigger > span:not(.menu-trigger__label) { left: 10px; width: 21px; }
  .menu-trigger > span:nth-child(1) { top: 13px; }
  .menu-trigger > span:nth-child(2) { top: 20px; }
  .menu-trigger > span:nth-child(3) { top: 27px; }
  .menu-panel__drawer { padding: 18px 27px 30px; }
  .menu-panel__top img { width: 170px; margin-left: 25px; }
  .menu-nav a { padding-block: 7px; font-size: 1.55rem; }
  .menu-panel__foot { align-items: flex-start; flex-direction: column; }
  .menu-panel__foot span { text-align: left; }
  .hero { min-height: 780px; }
  .hero__slide { inset: -6%; }
  .hero__shade { background: linear-gradient(90deg, rgba(4,8,5,.9) 0%, rgba(5,9,6,.67) 72%, rgba(5,9,6,.35)), linear-gradient(0deg, rgba(4,7,5,.92), transparent 54%, rgba(4,7,5,.52)); }
  .hero::after { height: 42px; }
  .hero__copy { top: 155px; display: flex; flex-direction: column; justify-content: space-between; width: 100%; height: calc(100svh - 435px); }
  .hero__copy.reveal { transform: translateY(22px); }
  .hero__copy.reveal.is-visible { transform: translateY(0); }
  .hero__copy .eyebrow { width: 100%; margin-bottom: 0; font-size: .58rem; letter-spacing: .2em; word-spacing: .16em; }
  .hero__copy h1 { width: 100%; margin-bottom: 0; font-size: clamp(2.95rem, 13.1vw, 3.65rem); letter-spacing: -.025em; }
  .hero__lead { width: 100%; max-width: none; margin-bottom: 0; font-size: .79rem; line-height: 1.5; }
  .hero__actions { position: absolute; top: calc(100svh - 415px); right: 0; left: 0; gap: 10px; margin-top: 0; }
  .hero__actions .button--gold { display: none; }
  .hero__actions .button { width: 100%; }
  .hero__actions .button { min-height: 49px; }
  .hero__note { right: 22px; bottom: 181px; width: 190px; font-size: 1.22rem; }
  .hero__note::after { right: -6px; width: 105px; }
  .hero__rail { top: auto; right: 17px; bottom: 120px; left: 17px; display: flex; align-items: center; justify-content: center; padding: 9px 11px; background: rgba(5,10,6,.54); border: 1px solid rgba(240,200,117,.26); backdrop-filter: blur(7px); }
  .hero__rail > span { flex: none; font-size: .72rem; }
  .hero__rail i { width: 26px; height: 1px; margin: 0 11px; }
  .hero__rail p { display: flex; flex: 1; justify-content: space-between; gap: 7px; font-size: .43rem; letter-spacing: .11em; line-height: 1.2; white-space: nowrap; }
  .hero__facts { right: 17px; bottom: 72px; left: 17px; gap: 7px; }
  .hero__facts p { flex: 1; padding: 0 0 0 6px; font-size: .45rem; letter-spacing: .05em; line-height: 1.35; }
  .hero__facts p:nth-child(2) { display: grid; margin: 0; }
  .hero__scroll { display: none; }
  .services { padding-top: 75px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2::after { width: 120px; margin-top: 18px; }
  h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card figure { height: 220px; }
  .service-card__icon { top: 194px; }
  .service-card__body p { min-height: 0; }
  .promise__track { animation-duration: 22s; }
  .promise__group { padding-block: 16px; }
  .about { padding-top: 115px; }
  .about__cards { grid-template-columns: 1fr; }
  .value-card:first-child { grid-column: auto; padding-right: 32px; }
  .value-card { min-height: 265px; }
  .emergency__visual { min-height: 390px; }
  .emergency__visual img { height: 390px; }
  .emergency__visual::before { top: -14px; right: -16px; bottom: 35px; left: 35px; }
  .emergency__stamp { right: -29px; bottom: 20px; width: 112px; height: 112px; border-width: 7px; }
  .emergency__stamp-label { font-size: 1rem; }
  .emergency__actions { justify-content: center; }
  .emergency__actions .button { width: min(100%, 320px); }
  .process__steps { grid-template-columns: 1fr; margin-top: 45px; }
  .process__steps li, .process__steps li:not(:first-child) { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(23,32,24,.15); }
  .process__steps li:not(:first-child)::before { left: 0; }
  .process__steps h3 { margin: 24px 0 8px; }
  .gallery__grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-item:last-child { grid-column: auto; }
  .area__map { min-height: 420px; }
  .area__city { font-size: .73rem; }
  .area__city--warsaw { font-size: 1.02rem; }
  .area__city small { font-size: .38rem; }
  .faq summary { padding: 24px 48px 24px 39px; font-size: 1.3rem; }
  .faq summary::before { top: 29px; left: 0; font-size: .48rem; }
  .faq summary span { right: 2px; width: 31px; height: 31px; }
  .faq summary span::before, .faq summary span::after { left: 8px; width: 13px; }
  .faq details:hover, .faq details[open] { transform: translateX(4px); }
  .faq details:hover summary { padding-left: 43px; }
  .faq details p { padding: 0 22px 26px 39px; }
  .contact::before { display: none; }
  .contact-form { margin-inline: -5px; padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .upload { grid-template-columns: auto 1fr !important; }
  .upload > b { grid-column: 1 / -1; text-align: center; }
  .contact__direct strong { overflow-wrap: anywhere; font-size: 1.24rem; }
  .site-footer { padding-bottom: 24px; }
  .site-footer__top { grid-template-columns: 1fr auto; }
  .site-footer__top img { width: 160px; margin-left: 38px; }
  .site-footer__top p { display: none; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 10px 16px; min-height: 0; padding-block: 24px; }
  .footer-nav a { --scatter-x: 0px !important; --scatter-y: 0px !important; min-height: 68px; padding: 12px 11px 11px 15px; }
  .footer-nav a span { font-size: 1.38rem; }
  .site-footer__bottom { flex-direction: column; gap: 7px; }
  .mobile-actions { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; height: 64px; background: #090d0a; border-top: 1px solid rgba(214,164,75,.4); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--gold-light); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
  .mobile-actions a + a { color: white; background: #187a40; }
  .lightbox button { top: 8px; right: 8px; }
}

@keyframes ticker { to { transform: translateX(-33.333333%); } }

@media (max-width: 620px) and (max-height: 760px) {
  .site-header, .site-header.is-scrolled { min-height: 62px; }
  .header-logo { --hero-logo-size: 96px; width: 104px; height: 62px; }
  .site-header.is-scrolled .header-logo { --hero-logo-size: 76px; width: 104px; height: 62px; }
  .hero { min-height: 100svh; }
  .hero__copy { top: 137px; height: calc(100svh - 380px); }
  .hero__copy .eyebrow { margin-bottom: 0; }
  .hero__copy h1 { margin-bottom: 0; font-size: clamp(2.45rem, 11vw, 2.78rem); }
  .hero__lead { margin-bottom: 0; font-size: .71rem; line-height: 1.4; }
  .hero__actions { top: calc(100svh - 360px); gap: 6px; }
  .hero__actions .button { min-height: 41px; }
  .hero__note { right: 19px; bottom: 146px; width: 170px; font-size: 1.05rem; }
  .hero__rail { bottom: 94px; padding-block: 7px; }
  .hero__rail p { font-size: .38rem; }
  .hero__facts { bottom: 67px; }
}

/* Gallery page */
.gallery-page { background: #0a0f0b; }
.gallery-page .site-header { color: var(--paper); }
.gallery-hero { position: relative; min-height: 880px; padding: 170px 0 90px; overflow: hidden; background: #081009; }
.gallery-hero::before { content: ""; position: absolute; inset: 0; opacity: .2; background: linear-gradient(90deg, #061008 0 34%, rgba(6,16,8,.58) 62%, #061008 100%), url("assets/client/ogrody/ogrody-08.webp") center / cover no-repeat; filter: saturate(.7); transform: scale(1.04); }
.gallery-hero::after { content: ""; position: absolute; right: -18%; bottom: -42%; width: 780px; height: 780px; border: 1px solid rgba(240,200,117,.13); border-radius: 50%; box-shadow: 0 0 0 90px rgba(240,200,117,.025), 0 0 0 180px rgba(240,200,117,.018); }
.gallery-hero__glow { position: absolute; top: 12%; left: 7%; width: 44vw; height: 60%; background: radial-gradient(ellipse, rgba(213,163,76,.13), transparent 68%); filter: blur(28px); pointer-events: none; }
.gallery-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr); align-items: center; gap: clamp(50px,7vw,120px); min-height: 620px; }
.gallery-hero__copy { padding-top: 35px; }
.gallery-hero__copy .eyebrow { color: rgba(255,255,255,.7); }
.gallery-hero__copy h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(4.2rem,6.2vw,7.1rem); }
.gallery-hero__copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 35px; color: rgba(255,255,255,.7); font-size: 1.02rem; }
.gallery-hero__stats { display: flex; gap: clamp(30px,5vw,72px); margin: 48px 0 0; }
.gallery-hero__stats div { position: relative; display: grid; }
.gallery-hero__stats div + div::before { content: ""; position: absolute; top: 10px; bottom: 7px; left: calc(clamp(30px,5vw,72px) / -2); width: 1px; background: rgba(240,200,117,.25); }
.gallery-hero__stats dt { color: var(--gold-light); font-family: var(--serif); font-size: 2.8rem; line-height: .8; }
.gallery-hero__stats dd { margin: 10px 0 0; color: rgba(255,255,255,.5); font-size: .57rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.gallery-hero__mosaic { position: relative; min-height: 620px; }
.gallery-hero__photo { position: absolute; margin: 0; overflow: hidden; background: #172018; border: 1px solid rgba(240,200,117,.34); box-shadow: 0 28px 65px rgba(0,0,0,.38); }
.gallery-hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,8,5,.72), transparent 48%); pointer-events: none; }
.gallery-hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.04); transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s; }
.gallery-hero__photo:hover img { transform: scale(1.045); filter: saturate(1.02); }
.gallery-hero__photo figcaption { position: absolute; z-index: 2; right: 18px; bottom: 15px; left: 18px; color: white; font-family: var(--serif); font-size: 1.4rem; }
.gallery-hero__photo--main { top: 52px; right: 95px; bottom: 45px; left: 5px; transform: rotate(-1.6deg); }
.gallery-hero__photo--top { top: 0; right: 0; width: 36%; height: 43%; transform: rotate(2.6deg); }
.gallery-hero__photo--bottom { right: 8px; bottom: 0; width: 38%; height: 44%; transform: rotate(1.2deg); }

.portfolio { color: #122015; background: #e3e6dd; }
.portfolio::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 115px; background: var(--ink-soft); clip-path: polygon(0 0,100% 0,100% 22%,52% 100%,0 34%); }
.portfolio__heading { display: grid; grid-template-columns: 1fr minmax(320px,.65fr); align-items: end; gap: 70px; margin: 30px 0 48px; }
.portfolio__heading .eyebrow { color: var(--gold-dark); }
.portfolio__heading h2 { margin-bottom: 0; }
.portfolio__heading > p { max-width: 560px; margin: 0 0 10px; color: #536054; }
.portfolio__toolbar { position: sticky; z-index: 30; top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 34px; padding: 13px 15px; background: rgba(244,244,237,.86); border: 1px solid rgba(23,49,27,.14); box-shadow: 0 14px 35px rgba(29,45,31,.08); backdrop-filter: blur(14px); }
.portfolio__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio__filters button { display: inline-flex; align-items: center; gap: 9px; min-height: 41px; padding: 0 15px; color: #344237; background: transparent; border: 1px solid rgba(24,47,29,.16); border-radius: 100px; font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.portfolio__filters button span { display: grid; place-items: center; min-width: 21px; height: 21px; padding-inline: 4px; color: #6e786f; background: rgba(20,43,24,.07); border-radius: 50%; font-size: .54rem; }
.portfolio__filters button:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.portfolio__filters button.is-active { color: white; background: var(--forest); border-color: var(--forest); box-shadow: 0 8px 20px rgba(21,34,23,.18); }
.portfolio__filters button.is-active span { color: var(--gold-light); background: rgba(255,255,255,.09); }
.portfolio__result { flex: none; margin: 0; color: #667168; font-size: .64rem; letter-spacing: .09em; text-transform: uppercase; }
.portfolio__result strong { color: var(--forest); font-family: var(--serif); font-size: 1.35rem; }
.portfolio-grid { columns: 4 265px; column-gap: 16px; }
.portfolio-card { position: relative; display: inline-flex; width: 100%; margin: 0 0 16px; padding: 0; overflow: hidden; color: white; background: #142018; border: 0; break-inside: avoid; cursor: zoom-in; opacity: 0; transform: translateY(22px) scale(.985); transition: opacity .55s, transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.portfolio-card.is-ready, .portfolio-card.is-filtered-in { opacity: 1; transform: translateY(0) scale(1); }
.portfolio-card:hover { z-index: 2; box-shadow: 0 22px 46px rgba(19,37,22,.24); transform: translateY(-6px); }
.portfolio-card[hidden] { display: none; }
.portfolio-card__media { display: block; width: 100%; }
.portfolio-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,9,5,.88), transparent 58%); opacity: .78; transition: opacity .35s; }
.portfolio-card__media img { width: 100%; min-height: 225px; max-height: 520px; object-fit: cover; filter: saturate(.78) contrast(1.03); transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .45s; }
.portfolio-card:hover .portfolio-card__media img { filter: saturate(1); transform: scale(1.035); }
.portfolio-card:hover .portfolio-card__media::after { opacity: 1; }
.portfolio-card__overlay { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; display: grid; gap: 3px; text-align: left; }
.portfolio-card__overlay small { color: var(--gold-light); font-size: .54rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.portfolio-card__overlay strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; line-height: 1.05; text-shadow: 0 3px 12px rgba(0,0,0,.48); }
.portfolio-card__number { position: absolute; z-index: 2; top: 13px; left: 13px; display: grid; place-items: center; min-width: 34px; height: 27px; padding-inline: 7px; color: rgba(255,255,255,.78); background: rgba(5,10,6,.55); border: 1px solid rgba(240,200,117,.28); font-size: .49rem; font-weight: 700; letter-spacing: .12em; backdrop-filter: blur(6px); }
.portfolio-card__play { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: 66px; height: 66px; color: #1a1308; background: rgba(240,200,117,.94); border: 1px solid #fff0c7; border-radius: 50%; box-shadow: 0 0 0 9px rgba(240,200,117,.14), 0 12px 30px rgba(0,0,0,.35); transform: translate(-50%,-50%); transition: transform .35s, box-shadow .35s; }
.portfolio-card__play svg { width: 24px; height: 24px; margin-left: 3px; fill: currentColor; stroke: none; }
.portfolio-card--video:hover .portfolio-card__play { box-shadow: 0 0 0 14px rgba(240,200,117,.14), 0 15px 34px rgba(0,0,0,.42); transform: translate(-50%,-50%) scale(1.08); }

.gallery-cta { overflow: hidden; background: #0b120d; }
.gallery-cta::before { content: ""; position: absolute; inset: 0; opacity: .24; background: linear-gradient(90deg, #071009 0 42%, rgba(7,16,9,.45)), url("assets/client/ogrody/ogrody-31.webp") center 54% / cover no-repeat; filter: saturate(.7); }
.gallery-cta__inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; padding: 64px 70px; background: rgba(8,14,9,.55); border: 1px solid rgba(240,200,117,.24); backdrop-filter: blur(4px); }
.gallery-cta__inner h2 { margin-bottom: 18px; }
.gallery-cta__inner p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.68); }
.gallery-cta__actions { display: flex; flex-direction: column; gap: 12px; width: 280px; }

.portfolio-lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; overflow: hidden; color: white; background: rgba(3,6,4,.96); border: 0; }
.portfolio-lightbox::backdrop { background: rgba(0,0,0,.92); backdrop-filter: blur(10px); }
.portfolio-lightbox__shell { position: relative; display: grid; grid-template-columns: 74px minmax(0,1fr) 74px; grid-template-rows: minmax(0,1fr) auto; align-items: center; width: 100%; height: 100%; padding: 42px 24px 24px; }
.portfolio-lightbox__stage { display: grid; place-items: center; width: 100%; height: 100%; min-height: 0; overflow: hidden; }
.portfolio-lightbox__stage img, .portfolio-lightbox__stage video { grid-area: 1 / 1; max-width: 100%; max-height: calc(100dvh - 145px); object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.48); }
.portfolio-lightbox__stage video { width: min(1100px,100%); height: 100%; background: #000; }
.portfolio-lightbox__stage [hidden] { display: none; }
.portfolio-lightbox__close { position: absolute; z-index: 4; top: 17px; right: 22px; display: grid; place-items: center; width: 45px; height: 45px; padding: 0 0 3px; color: #181208; background: var(--gold-light); border: 0; border-radius: 50%; font-family: var(--serif); font-size: 2rem; cursor: pointer; transition: transform .25s, background .25s; }
.portfolio-lightbox__close:hover { background: white; transform: rotate(8deg) scale(1.05); }
.portfolio-lightbox__nav { display: grid; place-items: center; width: 54px; height: 54px; padding: 0 0 7px; color: var(--gold-light); background: rgba(255,255,255,.04); border: 1px solid rgba(240,200,117,.3); border-radius: 50%; font-family: var(--serif); font-size: 3rem; line-height: 1; cursor: pointer; transition: color .25s, background .25s, transform .25s; }
.portfolio-lightbox__nav:hover { color: var(--ink); background: var(--gold-light); transform: scale(1.07); }
.portfolio-lightbox__nav--prev { justify-self: start; }
.portfolio-lightbox__nav--next { justify-self: end; }
.portfolio-lightbox__meta { grid-column: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; width: min(1100px,100%); margin: 17px auto 0; }
.portfolio-lightbox__meta div { display: grid; gap: 2px; }
.portfolio-lightbox__meta span { color: var(--gold-light); font-size: .55rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.portfolio-lightbox__meta strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.portfolio-lightbox__meta p { flex: none; margin: 0; color: rgba(255,255,255,.5); font-size: .62rem; letter-spacing: .14em; }

@media (max-width: 1120px) {
  .gallery-hero__grid { grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr); gap: 42px; }
  .gallery-hero__mosaic { min-height: 560px; }
  .gallery-hero__copy h1 { font-size: clamp(3.7rem,6.6vw,5.5rem); }
  .portfolio__heading { grid-template-columns: 1fr; gap: 20px; }
  .portfolio__toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-cta__inner { padding: 55px 45px; }
}

@media (max-width: 820px) {
  .gallery-hero { min-height: auto; padding: 145px 0 80px; }
  .gallery-hero__grid { grid-template-columns: 1fr; gap: 25px; }
  .gallery-hero__copy { max-width: 680px; padding-top: 0; }
  .gallery-hero__mosaic { min-height: 590px; }
  .gallery-hero__stats { margin-top: 35px; }
  .portfolio__toolbar { position: relative; top: 0; margin-right: -19px; margin-left: -19px; padding-inline: 19px; overflow: hidden; }
  .portfolio__filters { flex-wrap: nowrap; width: calc(100% + 38px); margin-inline: -19px; padding: 2px 19px 10px; overflow-x: auto; scrollbar-width: none; }
  .portfolio__filters::-webkit-scrollbar { display: none; }
  .portfolio__filters button { flex: none; }
  .portfolio-grid { columns: 2 230px; }
  .gallery-cta__inner { grid-template-columns: 1fr; align-items: start; }
  .gallery-cta__actions { flex-direction: row; width: 100%; }
  .gallery-cta__actions .button { flex: 1; }
}

@media (max-width: 620px) {
  .gallery-page { padding-bottom: 64px; }
  .gallery-hero { padding: 118px 0 62px; }
  .gallery-hero::before { opacity: .13; }
  .gallery-hero__copy .eyebrow { margin-bottom: 15px; font-size: .58rem; }
  .gallery-hero__copy h1 { margin-bottom: 23px; font-size: clamp(3.05rem,14vw,4.15rem); }
  .gallery-hero__copy > p:not(.eyebrow) { margin-bottom: 26px; font-size: .86rem; }
  .gallery-hero__copy .button { width: 100%; }
  .gallery-hero__stats { justify-content: space-between; gap: 18px; }
  .gallery-hero__stats div + div::before { left: -10px; }
  .gallery-hero__stats dt { font-size: 2.25rem; }
  .gallery-hero__stats dd { font-size: .49rem; }
  .gallery-hero__mosaic { min-height: 420px; margin-top: 20px; }
  .gallery-hero__photo--main { top: 40px; right: 60px; bottom: 30px; left: 0; }
  .gallery-hero__photo--top { width: 38%; height: 42%; }
  .gallery-hero__photo--bottom { width: 40%; height: 43%; }
  .gallery-hero__photo figcaption { right: 11px; bottom: 9px; left: 11px; font-size: 1rem; }
  .portfolio { padding-top: 102px; }
  .portfolio__heading { margin-top: 0; }
  .portfolio__heading h2 { font-size: clamp(2.9rem,13vw,4rem); }
  .portfolio__heading > p { font-size: .86rem; }
  .portfolio__result { padding-left: 2px; }
  .portfolio-grid { columns: 1; }
  .portfolio-card { margin-bottom: 12px; }
  .portfolio-card__media img { max-height: 620px; }
  .gallery-cta__inner { gap: 35px; margin-inline: -5px; padding: 38px 24px; }
  .gallery-cta__inner h2 { font-size: clamp(2.8rem,12vw,3.7rem); }
  .gallery-cta__actions { flex-direction: column; }
  .portfolio-lightbox__shell { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0,1fr) auto auto; gap: 12px; padding: 64px 13px 18px; }
  .portfolio-lightbox__stage { grid-column: 1 / -1; }
  .portfolio-lightbox__stage img, .portfolio-lightbox__stage video { max-height: calc(100dvh - 210px); }
  .portfolio-lightbox__nav { grid-row: 2; width: 48px; height: 48px; }
  .portfolio-lightbox__nav--prev { grid-column: 1; }
  .portfolio-lightbox__nav--next { grid-column: 2; }
  .portfolio-lightbox__meta { grid-column: 1 / -1; grid-row: 3; align-items: start; }
  .portfolio-lightbox__meta strong { font-size: 1.15rem; }
  .portfolio-lightbox__close { top: 12px; right: 13px; }
}

/* Services page */
.services-page { background: #09100b; }
.services-page .site-header { color: var(--paper); }
.services-hero { position: relative; min-height: max(920px,100svh); overflow: hidden; background: #071009; }
.services-hero::after { content: ""; position: absolute; right: -170px; bottom: -360px; width: 760px; height: 760px; border: 1px solid rgba(240,200,117,.13); border-radius: 50%; box-shadow: 0 0 0 90px rgba(240,200,117,.022), 0 0 0 180px rgba(240,200,117,.014); pointer-events: none; }
.services-hero__media { position: absolute; inset: -2%; background: url("assets/client/ogrody/ogrody-29.webp") center 46% / cover no-repeat; filter: saturate(.83) contrast(1.04); transform: scale(1.025); animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) both; }
.services-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,9,5,.94) 0 38%, rgba(4,9,5,.7) 61%, rgba(4,9,5,.38)), linear-gradient(0deg, rgba(3,8,4,.9), transparent 52%, rgba(3,8,4,.55)); }
.services-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.42fr); align-items: end; gap: clamp(55px,8vw,130px); min-height: max(920px,100svh); padding-top: 350px; padding-bottom: 105px; }
.services-hero__copy { max-width: 780px; }
.services-hero__copy h1 { max-width: 780px; font-size: clamp(4.25rem,5.55vw,6.55rem); }
.services-hero__copy > p:not(.eyebrow) { max-width: 720px; margin-bottom: 35px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.services-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.services-hero__side { align-self: end; margin-bottom: 12px; padding: 26px 0 24px 30px; border-left: 1px solid var(--gold); text-shadow: 0 2px 18px rgba(0,0,0,.8); }
.services-hero__side span, .services-hero__side p { display: block; color: var(--gold-light); font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.services-hero__side strong { display: block; margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(2rem,2.7vw,3rem); font-weight: 500; line-height: .95; }
.services-hero__side p { margin: 0; color: rgba(255,255,255,.55); line-height: 1.7; }
.services-hero__scroll { position: absolute; z-index: 4; bottom: 28px; left: 50%; width: 42px; height: 42px; transform: translateX(-50%); }
.services-hero__scroll::before, .services-hero__scroll::after, .services-hero__scroll span { content: ""; position: absolute; top: 9px; left: 11px; width: 19px; height: 19px; border-right: 1px solid var(--gold-light); border-bottom: 1px solid var(--gold-light); transform: rotate(45deg); animation: scroll-arrow 1.7s ease-in-out infinite; }
.services-hero__scroll::after { top: 0; opacity: .35; animation-delay: -.2s; }
.services-hero__scroll span { top: 18px; opacity: .35; animation-delay: .2s; }
.service-jump { position: relative; z-index: 5; background: #101812; border-block: 1px solid rgba(240,200,117,.22); }
.service-jump__inner { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.service-jump__inner::-webkit-scrollbar { display: none; }
.service-jump a { flex: 1 0 auto; padding: 21px 17px; color: rgba(255,255,255,.67); border-right: 1px solid rgba(255,255,255,.08); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; transition: color .25s, background .25s; }
.service-jump a:first-child { border-left: 1px solid rgba(255,255,255,.08); }
.service-jump a:hover { color: var(--gold-light); background: rgba(240,200,117,.06); }
.service-details { background: radial-gradient(circle at 82% 5%, rgba(83,116,62,.14), transparent 23%), linear-gradient(180deg, #0c140e, #080d09); }
.service-details__heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr); align-items: end; gap: 60px; max-width: 1180px; margin-bottom: 90px; }
.service-details__heading .eyebrow { grid-column: 1 / -1; margin-bottom: -30px; }
.service-details__heading h2 { margin: 0; }
.service-details__heading > p:last-child { margin: 0 0 7px; color: var(--muted); }
.service-detail-list { display: grid; gap: 38px; }
.service-detail { display: grid; grid-template-columns: minmax(300px,.68fr) minmax(0,1.32fr); min-height: 520px; overflow: hidden; background: linear-gradient(135deg, #101a12, #0c120e); border: 1px solid rgba(214,164,75,.28); border-radius: 12px; box-shadow: 0 22px 55px rgba(0,0,0,.22); }
.service-detail:nth-child(even) { grid-template-columns: minmax(0,1.32fr) minmax(300px,.68fr); }
.service-detail:nth-child(even) figure { grid-column: 2; grid-row: 1; }
.service-detail:nth-child(even) .service-detail__copy { grid-column: 1; grid-row: 1; }
.service-detail figure { position: relative; display: grid; place-items: center; min-height: 520px; margin: 0; padding: 42px; overflow: hidden; background: radial-gradient(circle at 50% 45%, rgba(100,135,73,.16), transparent 62%), rgba(6,12,8,.4); }
.service-detail__thumb { position: relative; width: 100%; max-width: 390px; aspect-ratio: 4 / 3; padding: 0; overflow: hidden; color: white; background: #152019; border: 1px solid rgba(240,200,117,.38); border-radius: 7px; box-shadow: 0 22px 45px rgba(0,0,0,.34); cursor: zoom-in; transform: rotate(-1deg); transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s; }
.service-detail:nth-child(even) .service-detail__thumb { transform: rotate(1deg); }
.service-detail__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,8,4,.74), transparent 48%); pointer-events: none; }
.service-detail__thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.04); transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s; }
.service-detail__thumb span { position: absolute; z-index: 2; right: 17px; bottom: 14px; color: var(--gold-light); font-size: .54rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-detail__thumb:hover { border-color: var(--gold-light); box-shadow: 0 29px 58px rgba(0,0,0,.43), 0 0 0 5px rgba(214,164,75,.06); transform: rotate(0) translateY(-5px); }
.service-detail__thumb:hover img { transform: scale(1.065); filter: saturate(1) contrast(1.04); }
.service-detail__copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(42px,5vw,78px); }
.service-detail__copy > span { position: absolute; top: 30px; right: 34px; color: rgba(240,200,117,.35); font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.service-detail__copy .eyebrow { margin-bottom: 13px; }
.service-detail__copy h2 { margin-bottom: 24px; font-size: clamp(3rem,4.5vw,5.2rem); }
.service-detail__lead { max-width: 760px; margin-bottom: 16px; color: var(--paper); font-size: 1.05rem; }
.service-detail__copy > p:not(.eyebrow):not(.service-detail__lead) { max-width: 790px; margin-bottom: 20px; color: var(--muted); }
.service-detail__copy ul { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.service-detail__copy li { position: relative; padding: 12px 10px 12px 20px; color: rgba(255,255,255,.66); border-top: 1px solid rgba(240,200,117,.22); font-size: .75rem; line-height: 1.45; }
.service-detail__copy li::before { content: ""; position: absolute; top: 18px; left: 3px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px rgba(214,164,75,.45); }
.service-detail__copy > a { display: inline-flex; align-items: center; align-self: flex-start; gap: 14px; padding-bottom: 6px; color: var(--gold-light); border-bottom: 1px solid rgba(240,200,117,.45); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .25s, gap .25s; }
.service-detail__copy > a:hover { gap: 21px; color: white; }
.service-detail--urgent { border-color: rgba(203,91,68,.6); box-shadow: 0 22px 58px rgba(70,18,12,.2); }
.service-detail--urgent .service-detail__copy > span { color: rgba(222,112,89,.62); }
.service-area { background: #e9e4d8; color: #162016; }
.service-area__inner { display: grid; grid-template-columns: minmax(0,.9fr) minmax(400px,1.1fr); align-items: center; gap: clamp(55px,9vw,150px); }
.service-area .eyebrow { color: #97691f; }
.service-area h2 { margin: 0; }
.service-area__inner > div:last-child p { color: #4f5b50; }
.service-area .button { margin-top: 17px; }
.service-lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; color: white; background: rgba(2,5,3,.94); border: 0; }
.service-lightbox::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.service-lightbox__shell { position: relative; display: grid; place-items: center; width: 100%; height: 100%; padding: 70px 28px 38px; }
.service-lightbox__shell img { max-width: min(1180px,92vw); max-height: calc(100dvh - 145px); object-fit: contain; border: 1px solid rgba(240,200,117,.32); box-shadow: 0 30px 90px rgba(0,0,0,.65); }
.service-lightbox__shell p { margin: 16px 0 0; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 1.35rem; text-align: center; }
.service-lightbox__close { position: absolute; z-index: 2; top: 18px; right: 24px; display: grid; place-items: center; width: 48px; height: 48px; padding: 0 0 5px; color: white; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-family: var(--serif); font-size: 2.3rem; line-height: 1; cursor: pointer; transition: color .25s, background .25s, transform .25s; }
.service-lightbox__close:hover { color: #111; background: var(--gold-light); transform: rotate(8deg); }

@media (max-width: 1000px) {
  .services-hero, .services-hero__inner { min-height: 900px; }
  .services-hero__inner { grid-template-columns: 1fr minmax(220px,.42fr); padding-top: 310px; }
  .service-details__heading { grid-template-columns: 1fr; gap: 22px; }
  .service-details__heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); }
  .service-detail:nth-child(even) figure { grid-column: 1; }
  .service-detail:nth-child(even) .service-detail__copy { grid-column: 2; }
  .service-detail__copy ul { grid-template-columns: 1fr; gap: 2px; }
  .service-area__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .services-page { padding-bottom: 64px; }
  .services-hero, .services-hero__inner { min-height: 820px; }
  .services-hero__media { background-position: 58% center; }
  .services-hero__shade { background: linear-gradient(0deg, rgba(3,8,4,.95), rgba(3,8,4,.53) 75%, rgba(3,8,4,.48)); }
  .services-hero__inner { display: flex; min-height: 820px; padding-top: 185px; padding-bottom: 92px; flex-direction: column; align-items: stretch; justify-content: flex-end; }
  .services-hero__copy h1 { margin-bottom: 23px; font-size: clamp(3.05rem,14vw,4.2rem); }
  .services-hero__copy > p:not(.eyebrow) { font-size: .88rem; }
  .services-hero__actions { display: grid; }
  .services-hero__actions .button { width: 100%; }
  .services-hero__side { display: none; }
  .services-hero__scroll { bottom: 19px; }
  .service-jump__inner { width: calc(100% + 38px); margin-inline: -19px; padding-inline: 19px; }
  .service-jump a { padding: 17px 14px; font-size: .51rem; }
  .service-details { padding-top: 90px; }
  .service-details__heading { margin-bottom: 50px; }
  .service-details__heading h2 { font-size: clamp(3rem,13vw,4rem); }
  .service-detail-list { gap: 22px; }
  .service-detail, .service-detail:nth-child(even) { display: flex; min-height: 0; flex-direction: column; }
  .services-page .service-detail { scroll-margin-top: 128px; }
  .service-detail figure { min-height: 300px; padding: 28px 22px; }
  .service-detail__thumb { max-width: 420px; }
  .service-detail__copy { padding: 34px 24px 38px; }
  .service-detail__copy > span { top: 28px; right: 22px; font-size: 1.65rem; }
  .service-detail__copy h2 { padding-right: 26px; font-size: clamp(2.7rem,12vw,3.8rem); }
  .service-detail__lead { font-size: .95rem; }
  .service-detail__copy > p:not(.eyebrow):not(.service-detail__lead) { font-size: .85rem; }
  .service-detail__copy > a { line-height: 1.5; }
  .service-area { padding-block: 90px; }
  .service-area h2 { font-size: clamp(3rem,13vw,4rem); }
  .service-lightbox__shell { padding: 65px 12px 24px; }
  .service-lightbox__shell img { max-width: 96vw; max-height: calc(100dvh - 135px); }
  .service-lightbox__shell p { font-size: 1rem; }
  .service-lightbox__close { top: 12px; right: 13px; }
}

.error-page { min-height: 100svh; color: var(--paper); background: radial-gradient(circle at 50% 18%, rgba(214,164,75,.13), transparent 36%), #071009; }
.error-page__main { display: grid; place-items: center; align-content: center; min-height: 100svh; padding: 45px 24px; text-align: center; }
.error-page__logo { display: block; width: min(280px,68vw); margin-bottom: 22px; filter: drop-shadow(0 0 3px rgba(255,255,255,.95)) drop-shadow(0 0 15px rgba(255,255,255,.5)); }
.error-page__logo img { width: 100%; }
.error-page h1 { max-width: 850px; margin: 8px 0 22px; font-size: clamp(3.2rem,9vw,7.5rem); }
.error-page h1 em { color: var(--gold-light); font-weight: 500; }
.error-page__main > p:not(.eyebrow) { max-width: 630px; color: var(--muted); }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
