:root {
  --bg: #070806;
  --bg-soft: #0d100d;
  --panel: #111410;
  --panel-2: #171a15;
  --cream: #f1ece0;
  --cream-soft: #d8d0c0;
  --muted: #a79f90;
  --gold: #c5a15c;
  --gold-soft: #dfc281;
  --gold-dark: #8f6e33;
  --line: rgba(197, 161, 92, 0.24);
  --line-light: rgba(255, 255, 255, 0.09);
  --white-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1320px, calc(100vw - 64px));
  --header-h: 94px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 11px 15px;
  background: var(--gold);
  color: #070806;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 4, .88), rgba(4, 5, 4, .35) 72%, transparent);
  pointer-events: none;
  transition: opacity .3s ease;
}
.site-header.scrolled,
.site-header.compact {
  height: 78px;
  background: rgba(7, 8, 6, .94);
  border-color: rgba(197, 161, 92, .18);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}
.site-header.scrolled::before,
.site-header.compact::before { opacity: 0; }
.header-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 166px;
  height: 66px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 30px);
}
.main-nav a {
  position: relative;
  color: rgba(241, 236, 224, .78);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--gold-soft); }
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.header-call {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 177px;
  justify-self: end;
}
.header-call-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(197, 161, 92, .12), 0 0 22px rgba(197, 161, 92, .55);
}
.header-call span:last-child { display: flex; flex-direction: column; line-height: 1.18; }
.header-call small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.header-call strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 6, .65);
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--gold-soft);
}

/* Shared typography */
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.dark { color: var(--gold-dark); }
.eyebrow.dark > span { background: linear-gradient(90deg, transparent, var(--gold-dark)); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: .98; }
h2 { font-size: clamp(44px, 5.1vw, 76px); letter-spacing: -.045em; }
p { color: var(--muted); }
.lead { font-size: clamp(19px, 2vw, 26px); line-height: 1.5; }
.section { position: relative; padding: 150px 0; overflow: hidden; }
.section-heading { margin-bottom: 72px; }
.section-heading h2 { margin-bottom: 0; max-width: 920px; }
.section-heading > p:last-child { max-width: 640px; margin: 26px 0 0; }
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  align-items: end;
  gap: 80px;
}
.section-heading.split > p { margin: 0 0 8px; font-size: 17px; }
.section-heading.centered { text-align: center; max-width: 940px; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading.centered > p:last-child { margin-inline: auto; }

/* Buttons */
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  min-width: 254px;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg, #b88d3e, #d6ba76);
  color: #080907;
  box-shadow: 0 16px 45px rgba(197, 161, 92, .2);
}
.btn-gold span { font-size: 10px; letter-spacing: .15em; opacity: .72; }
.btn-gold strong { font-family: var(--serif); font-size: 22px; line-height: 1.1; letter-spacing: .02em; }
.btn-outline { border-color: rgba(223, 194, 129, .38); color: var(--cream); background: rgba(7, 8, 6, .16); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-dark { background: var(--bg); color: var(--cream); border-color: var(--bg); }
.btn-outline-dark { border-color: rgba(7, 8, 6, .34); color: var(--bg); background: transparent; }
.btn-small { min-height: 44px; padding: 10px 16px; font-size: 11px; }
.text-link,
.price-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.text-link span,
.price-link span { font-size: 21px; transition: transform .2s ease; }
.text-link:hover span,
.price-link:hover span { transform: translateX(5px); }

/* Hero */
.hero {
  position: relative;
  min-height: 930px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 35%, rgba(197, 161, 92, .10), transparent 28%),
    linear-gradient(135deg, #0d100d 0%, #070806 55%, #080906 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 60%);
}
.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 48%;
  background-image: url('../images/hero-panel.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(.68) contrast(1.05) brightness(.72);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080906 0%, rgba(8,9,6,.93) 5%, rgba(8,9,6,.48) 27%, rgba(8,9,6,.08) 65%, rgba(8,9,6,.22) 100%),
    linear-gradient(180deg, rgba(7,8,6,.28), transparent 45%, rgba(7,8,6,.7));
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 1px 0 0 rgba(197,161,92,.16);
}
.hero-grid-glow {
  position: absolute;
  left: 48%;
  top: 14%;
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(197,161,92,.58), transparent);
  box-shadow: 0 0 35px rgba(197,161,92,.25);
}
.hero-layout {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}
.hero-copy {
  width: min(650px, 48vw);
  padding: 76px 50px 72px 0;
}
.hero-copy h1 {
  margin: 0 0 30px;
  max-width: 610px;
  color: #f5f0e4;
  font-size: clamp(66px, 7vw, 108px);
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 12px 42px rgba(0, 0, 0, .45);
}
.hero-copy h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-lead {
  max-width: 570px;
  margin-bottom: 38px;
  color: rgba(241,236,224,.68);
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--white-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hero-facts > div { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.hero-facts span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
}
.hero-facts p { margin: 0; color: rgba(241,236,224,.58); font-size: 11px; line-height: 1.55; }
.hero-location {
  position: absolute;
  right: 50px;
  bottom: 52px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 18px;
  border-right: 1px solid rgba(223,194,129,.58);
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
}
.hero-location span { color: var(--gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.hero-location strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(241,236,224,.45);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-scroll span { width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); }

/* Intro */
.intro {
  position: relative;
  padding: 150px 0 170px;
  background: #ece6da;
  color: #151612;
  overflow: hidden;
}
.intro::before {
  content: "OSTATNIA POSŁUGA";
  position: absolute;
  right: -80px;
  top: 54px;
  color: rgba(143,110,51,.055);
  font-family: var(--serif);
  font-size: clamp(90px, 12vw, 190px);
  line-height: .8;
  letter-spacing: -.05em;
  white-space: nowrap;
}
.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr .8fr 1.22fr;
  gap: 64px;
  align-items: center;
}
.intro-heading h2 { margin: 0; font-size: clamp(46px, 5.6vw, 82px); }
.intro-copy { padding-top: 60px; }
.intro-copy p { color: #5f5b52; }
.intro-copy .lead { color: #272821; }
.intro-photo {
  position: relative;
  margin: 0;
  min-height: 560px;
  box-shadow: 0 35px 78px rgba(28, 24, 14, .22);
  overflow: hidden;
}
.intro-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7,8,6,.82));
}
.intro-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: 52% center; filter: saturate(.72) contrast(1.04); }
.intro-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
}
.intro-photo figcaption span { color: var(--gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.intro-photo figcaption strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }

/* Steps */
.steps { background: #0a0c09; }
.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 34%, rgba(197,161,92,.07), transparent 26%);
}
.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 26px 36px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  transition: background .3s ease, transform .3s ease;
}
.step-card:last-child { border-right: 0; }
.step-card:hover { background: rgba(197,161,92,.055); transform: translateY(-5px); }
.step-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}
.step-number::after { content: ""; width: 38px; height: 1px; background: var(--line); }
.step-card h3 { margin-bottom: 18px; color: var(--cream); font-size: 29px; line-height: 1.08; }
.step-card p { margin: 0; font-size: 14px; line-height: 1.7; }
.steps-help {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(197,161,92,.07), rgba(255,255,255,.015));
}
.steps-help > div { display: flex; flex-direction: column; }
.steps-help span { color: var(--muted); font-size: 12px; letter-spacing: .05em; }
.steps-help strong { color: var(--cream); font-family: var(--serif); font-size: 24px; font-weight: 500; }
.steps-help > a { display: flex; align-items: center; gap: 18px; color: var(--gold-soft); font-family: var(--serif); font-size: 30px; }

/* Services */
.services { background: #070806; }
.services-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,161,92,.08), transparent 68%);
  filter: blur(8px);
}
.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.service-card {
  position: relative;
  min-height: 295px;
  padding: 38px 36px 42px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  transition: background .3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(145deg, rgba(197,161,92,.09), transparent 58%);
  transition: opacity .3s ease;
}
.service-card:hover::before { opacity: 1; }
.service-number { position: relative; display: block; margin-bottom: 58px; color: var(--gold); font-family: var(--serif); font-size: 15px; }
.service-card h3 { position: relative; margin-bottom: 17px; color: var(--cream); font-size: clamp(25px, 2.1vw, 34px); line-height: 1.08; }
.service-card p { position: relative; margin: 0; font-size: 14px; line-height: 1.72; }
.service-line {
  position: absolute;
  left: 36px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .35s ease;
}
.service-card:hover .service-line { width: calc(100% - 72px); }

/* Pricing */
.pricing {
  background:
    radial-gradient(circle at 50% 0, rgba(197,161,92,.1), transparent 30%),
    #e9e2d5;
  color: #151612;
}
.pricing .section-heading p { color: #625c51; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin-inline: auto;
}
.price-card {
  position: relative;
  background: #10120f;
  color: var(--cream);
  border: 1px solid rgba(197,161,92,.3);
  box-shadow: 0 28px 70px rgba(27, 23, 13, .17);
  overflow: hidden;
}
.price-card.featured {
  transform: translateY(28px);
  background: linear-gradient(155deg, #151811, #0b0d0a 60%);
  box-shadow: 0 34px 90px rgba(27, 23, 13, .25), 0 0 0 1px rgba(223,194,129,.16);
}
.price-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -190px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,161,92,.18), transparent 68%);
}
.price-card-head { position: relative; padding: 44px 44px 38px; border-bottom: 1px solid var(--line); }
.price-label { display: block; margin-bottom: 13px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 34px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1; }
.price-row { display: flex; align-items: flex-end; gap: 10px; }
.price-row > span:first-child { padding-bottom: 12px; color: var(--muted); font-family: var(--serif); font-size: 23px; }
.price-row strong { color: var(--gold-soft); font-family: var(--serif); font-size: clamp(62px, 7.2vw, 92px); font-weight: 500; line-height: .72; letter-spacing: -.04em; }
.price-row > span:last-child { display: flex; flex-direction: column; padding-bottom: 7px; color: var(--gold-soft); font-family: var(--serif); font-size: 25px; line-height: 1; }
.price-row small { margin-top: 6px; color: var(--muted); font-family: var(--sans); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.price-card-body { position: relative; padding: 38px 44px 44px; }
.price-card-body h4 { margin-bottom: 24px; color: var(--gold-soft); font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.check-list, .exclude-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 12px;
  padding: 11px 0;
  color: rgba(241,236,224,.76);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  line-height: 1.5;
}
.check-list li > span { color: var(--gold); }
.price-card details { margin-top: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  color: var(--cream-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  list-style: none;
}
.price-card summary::-webkit-details-marker { display: none; }
.price-card summary span { color: var(--gold); font-family: var(--serif); font-size: 24px; transition: transform .2s ease; }
.price-card details[open] summary span { transform: rotate(45deg); }
.exclude-list { padding: 0 0 18px 17px; list-style: disc; }
.exclude-list li { margin: 8px 0; color: var(--muted); font-size: 12px; }
.price-link { margin-top: 30px; }
.price-disclaimer { max-width: 900px; margin: 70px auto 0; color: #746d61; text-align: center; font-size: 12px; }

/* Gallery */
.gallery { background: #0b0d0a; }
.gallery-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.gallery-heading { padding-right: 10px; }
.gallery-heading h2 { margin-bottom: 28px; font-size: clamp(48px, 5.7vw, 80px); }
.gallery-heading p { margin-bottom: 34px; font-size: 17px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 12px;
}
.gallery-item { margin: 0; min-width: 0; overflow: hidden; }
.gallery-item-main { grid-row: 1 / span 2; }
.gallery-item button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.8); transition: transform .5s ease, filter .5s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(.86) brightness(.9); }
.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  color: var(--cream);
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(7,8,6,.9));
}
.gallery-overlay small { color: var(--gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.gallery-overlay strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }

/* Contact */
.contact {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070806;
}
.contact-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/biuro.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(.28) saturate(.65) brightness(.55);
  transform: scale(1.02);
}
.contact-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,6,.98) 0%, rgba(7,8,6,.92) 46%, rgba(7,8,6,.5) 75%, rgba(7,8,6,.64) 100%),
    linear-gradient(180deg, rgba(7,8,6,.55), transparent 40%, rgba(7,8,6,.8));
}
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 120px;
  align-items: center;
  padding: 130px 0;
}
.contact-copy h2 { margin-bottom: 32px; max-width: 760px; font-size: clamp(58px, 7vw, 96px); }
.contact-copy > p { max-width: 610px; font-size: 17px; }
.contact-main-call {
  margin-top: 38px;
  max-width: 480px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(223,194,129,.42);
  background: rgba(7,8,6,.56);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
}
.contact-main-call small { grid-column: 1; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-main-call strong { grid-column: 1; color: var(--cream); font-family: var(--serif); font-size: 38px; font-weight: 500; }
.contact-main-call > span { grid-column: 2; grid-row: 1 / span 2; color: var(--gold-soft); font-size: 30px; transition: transform .2s ease; }
.contact-main-call:hover > span { transform: translateX(5px); }
.contact-card {
  padding: 42px;
  border: 1px solid rgba(223,194,129,.28);
  background: rgba(8,9,7,.75);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
}
.contact-card > div { padding: 25px 0; border-bottom: 1px solid var(--white-line); }
.contact-card > div:first-child { padding-top: 0; }
.contact-card > div:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-card-label { display: block; margin-bottom: 7px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.contact-card strong { display: block; color: var(--cream); font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.3; }
.contact-card p { margin: 2px 0 0; }
.contact-card a { display: inline-block; margin-top: 10px; color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

/* Footer */
.site-footer { background: #050605; border-top: 1px solid var(--line); }
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .7fr;
  gap: 70px;
  padding: 78px 0 58px;
}
.footer-brand img { width: 240px; height: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 280px; margin: 0; font-family: var(--serif); font-size: 18px; }
.site-footer h2 { margin-bottom: 20px; color: var(--gold); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-nav, .footer-contact, .footer-info { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer a, .site-footer button, .site-footer p { margin: 0 0 9px; color: rgba(241,236,224,.56); font-size: 12px; line-height: 1.5; }
.site-footer a:hover, .site-footer button:hover { color: var(--gold-soft); }
.site-footer button { padding: 0; border: 0; background: none; cursor: pointer; text-align: left; }
.footer-contact > a { color: var(--cream); font-family: var(--serif); font-size: 22px; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--white-line);
  color: rgba(241,236,224,.35);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mobile-call { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(4,5,4,.94);
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.lightbox button { position: absolute; right: 28px; top: 20px; border: 0; background: none; color: var(--gold-soft); font-family: var(--serif); font-size: 48px; cursor: pointer; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 1900;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 22px 24px;
  color: #171812;
  background: #eee8dc;
  border: 1px solid rgba(143,110,51,.3);
  box-shadow: 0 20px 70px rgba(0,0,0,.42);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.cookie-banner p { margin: 4px 0 0; color: #645f55; font-size: 12px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; }

/* Legal */
.legal-page { background: #0a0c09; }
.legal-page .site-header { background: rgba(7,8,6,.96); }
.legal-content { max-width: 900px; padding-top: 155px; padding-bottom: 110px; }
.legal-content h1 { margin-bottom: 34px; font-size: clamp(48px, 7vw, 78px); }
.legal-content h2 { margin: 52px 0 16px; font-size: 31px; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: var(--cream-soft); }
.legal-content .lead { color: var(--cream); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1240px) {
  :root { --container: min(1160px, calc(100vw - 48px)); }
  .header-inner { grid-template-columns: 155px minmax(0, 1fr) auto; gap: 20px; }
  .brand { width: 145px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 10.5px; letter-spacing: .04em; }
  .header-call { min-width: 156px; }
  .header-call strong { font-size: 16px; }
  .hero-copy { width: 52vw; }
  .hero-visual { left: 52%; }
  .hero-grid-glow { left: 52%; }
  .intro-grid { grid-template-columns: .85fr .85fr 1.15fr; gap: 40px; }
  .steps-list { grid-template-columns: repeat(3, 1fr); }
  .step-card:nth-child(3) { border-right: 0; }
  .step-card:nth-child(n+4) { border-top: 1px solid var(--line); }
  .step-card:nth-child(4) { grid-column: 1 / span 1; }
  .step-card:nth-child(5) { grid-column: 2 / span 1; }
}

@media (max-width: 1020px) {
  :root { --header-h: 78px; }
  .site-header::before { background: rgba(7,8,6,.88); }
  .header-inner { grid-template-columns: 150px 1fr auto; }
  .brand { width: 138px; height: 56px; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 28px;
    background: rgba(7,8,6,.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; color: var(--cream); font-size: 12px; border-bottom: 1px solid var(--white-line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .header-call { grid-column: 2; grid-row: 1; justify-self: end; margin-right: 60px; }
  .hero { min-height: 900px; }
  .hero-visual { left: 48%; opacity: .78; }
  .hero-grid-glow { left: 48%; }
  .hero-copy { width: 56vw; padding-right: 40px; }
  .hero-copy h1 { font-size: clamp(62px, 8.5vw, 88px); }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; max-width: 380px; }
  .hero-facts > div { grid-template-columns: 32px 1fr; }
  .hero-location { right: 24px; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .intro-heading { grid-column: 1; }
  .intro-copy { grid-column: 2; padding-top: 35px; }
  .intro-photo { grid-column: 1 / -1; min-height: 480px; }
  .intro-photo img { min-height: 480px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { max-width: 900px; }
  .price-card-head, .price-card-body { padding-left: 30px; padding-right: 30px; }
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-heading { max-width: 680px; }
  .contact-grid { grid-template-columns: 1fr .78fr; gap: 60px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-info { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 36px, 680px); --header-h: 72px; }
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 68px; }
  .site-header, .site-header.scrolled, .site-header.compact { height: 72px; }
  .header-inner { grid-template-columns: 122px 1fr auto; gap: 10px; }
  .brand { width: 118px; height: 50px; }
  .header-call { display: none; }
  .menu-toggle { grid-column: 3; }
  .main-nav { top: 72px; }
  .section { padding: 100px 0; }
  .section-heading { margin-bottom: 48px; }
  h2 { font-size: clamp(42px, 13vw, 60px); }
  .hero {
    min-height: 870px;
    align-items: flex-end;
    padding-bottom: 60px;
  }
  .hero::before { opacity: .18; }
  .hero-visual {
    inset: 0;
    opacity: .48;
    background-position: 67% center;
  }
  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(7,8,6,.64) 0%, rgba(7,8,6,.35) 28%, rgba(7,8,6,.88) 66%, #070806 100%),
      linear-gradient(90deg, rgba(7,8,6,.42), rgba(7,8,6,.06));
  }
  .hero-grid-glow { display: none; }
  .hero-layout { padding-top: 150px; }
  .hero-copy { width: 100%; padding: 0; }
  .hero-copy h1 { max-width: 540px; font-size: clamp(56px, 17vw, 82px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .btn-gold { align-items: center; }
  .hero-facts { display: none; }
  .hero-location { left: 18px; right: auto; bottom: 20px; align-items: flex-start; padding-left: 13px; padding-right: 0; border-left: 1px solid var(--gold); border-right: 0; }
  .hero-location strong { font-size: 15px; }
  .hero-scroll { display: none; }
  .intro { padding: 100px 0; }
  .intro::before { font-size: 82px; right: -160px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-heading, .intro-copy, .intro-photo { grid-column: 1; }
  .intro-copy { padding-top: 0; }
  .intro-photo { min-height: 420px; }
  .intro-photo img { min-height: 420px; }
  .steps-list { grid-template-columns: 1fr; border-bottom: 0; }
  .step-card, .step-card:nth-child(3), .step-card:nth-child(4), .step-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-top: 0;
    background: transparent;
  }
  .step-number { align-items: start; }
  .step-number::after { display: none; }
  .step-card h3 { font-size: 27px; }
  .steps-help { flex-direction: column; align-items: flex-start; padding: 24px; }
  .steps-help > a { font-size: 27px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; padding: 30px 26px 34px; }
  .service-number { margin-bottom: 44px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card-head { padding: 34px 26px 30px; }
  .price-card-body { padding: 30px 26px 34px; }
  .price-row strong { font-size: clamp(62px, 20vw, 88px); }
  .price-disclaimer { margin-top: 38px; }
  .gallery-layout { gap: 42px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 370px repeat(2, 250px); }
  .gallery-item-main { grid-row: auto; }
  .contact { min-height: 0; }
  .contact-photo { background-position: 58% center; }
  .contact-shade { background: linear-gradient(180deg, rgba(7,8,6,.91), rgba(7,8,6,.86)); }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; padding: 100px 0; }
  .contact-copy h2 { font-size: clamp(52px, 15vw, 74px); }
  .contact-main-call { width: 100%; }
  .contact-main-call strong { font-size: 31px; }
  .contact-card { padding: 30px 26px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 46px 24px; padding-top: 60px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-info { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .mobile-call {
    position: fixed;
    z-index: 1500;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #b88d3e, #d8bd79);
    color: #070806;
    box-shadow: 0 -10px 35px rgba(0,0,0,.4);
  }
  .mobile-call small { font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .mobile-call strong { font-family: var(--serif); font-size: 25px; font-weight: 600; }
  .cookie-banner { left: 10px; right: 10px; bottom: 78px; grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .lightbox { padding: 18px; }
  .legal-content { padding-top: 125px; }
}

@media (max-width: 430px) {
  :root { --container: calc(100vw - 28px); }
  .hero-copy h1 { font-size: 54px; }
  .hero-copy h1::after { margin-top: 24px; }
  .hero-lead { font-size: 15px; }
  .eyebrow { font-size: 9px; letter-spacing: .14em; }
  .section { padding: 86px 0; }
  .intro-photo, .intro-photo img { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .cookie-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
.site-header.compact .header-inner { grid-template-columns: 190px 1fr; }
.site-header.compact .header-call { grid-column: 2; justify-self: end; }
@media (max-width: 760px) {
  .site-header.compact .header-inner { grid-template-columns: 122px 1fr; }
  .site-header.compact .header-call { display: flex; margin: 0; grid-column: 2; }
  .site-header.compact .header-call small { display: none; }
}


/* ==========================================================
   Hero v2.2 — hero2.jpeg + mobile-first refinements
   The visual keeps the entire supplied composition visible.
   ========================================================== */
html, body { max-width: 100%; overflow-x: clip; }

.brand { width: 178px; height: 64px; }
.brand img { object-fit: contain; object-position: left center; }

.hero {
  min-height: clamp(760px, 92svh, 940px);
  display: block;
  background: #070806;
}
.hero::before {
  z-index: 0;
  opacity: .2;
  mask-image: linear-gradient(180deg, black, transparent 76%);
}
.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0d0a;
  filter: none;
  opacity: 1;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -32px;
  background: url('../images/hero2.webp') center / cover no-repeat;
  filter: blur(22px) saturate(.82) brightness(.5);
  transform: scale(1.06);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,6,.14) 0%, rgba(7,8,6,.08) 34%, rgba(7,8,6,.42) 69%, rgba(7,8,6,.86) 100%),
    linear-gradient(90deg, rgba(7,8,6,.24), transparent 42%, rgba(7,8,6,.1));
  box-shadow: inset 0 0 0 1px rgba(197,161,92,.08);
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-grid-glow,
.hero-location,
.hero-facts { display: none !important; }
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: clamp(760px, 92svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 72px;
}
.hero-copy {
  width: min(690px, 60vw);
  padding: 34px 38px 36px;
  background: linear-gradient(135deg, rgba(7,8,6,.89), rgba(12,14,11,.76));
  border: 1px solid rgba(223,194,129,.28);
  border-left: 3px solid var(--gold);
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
}
.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: .93;
  letter-spacing: -.045em;
}
.hero-copy h1::after { width: 92px; margin-top: 23px; }
.hero-lead { max-width: 610px; margin-bottom: 28px; font-size: 16px; line-height: 1.68; }
.hero-actions { align-items: stretch; }
.hero-support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--white-line);
  color: rgba(241,236,224,.62);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-support span { display: inline-flex; align-items: center; gap: 9px; }
.hero-support span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(197,161,92,.65); }
.hero-scroll { bottom: 25px; }

@media (max-width: 1240px) {
  .brand { width: 158px; }
  .hero-copy { width: min(650px, 66vw); }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-top: var(--header-h);
    background: #070806;
  }
  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
  .hero-visual::before { inset: -18px; filter: blur(15px) saturate(.82) brightness(.48); }
  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(7,8,6,.02) 0%, rgba(7,8,6,.05) 72%, rgba(7,8,6,.38) 100%);
  }
  .hero-layout {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 46px 0 54px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-copy h1 { max-width: 720px; font-size: clamp(50px, 9.2vw, 76px); }
  .hero-lead { max-width: 720px; }
  .hero-scroll { display: none; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 680px); }
  body { font-size: 15px; }
  .site-header::before { background: rgba(7,8,6,.86); }
  .site-header, .site-header.scrolled, .site-header.compact { height: 72px; }
  .header-inner { grid-template-columns: minmax(0, 150px) 1fr 46px; }
  .brand { width: min(142px, 39vw); height: 52px; }
  .hero { padding-top: 72px; }
  .hero-copy { padding: 38px 0 48px; }
  .hero-copy h1 {
    max-width: 100%;
    margin-bottom: 17px;
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: .96;
  }
  .hero-copy h1::after { margin-top: 20px; }
  .hero-lead { margin-bottom: 25px; font-size: 15px; line-height: 1.62; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { min-width: 0; width: 100%; min-height: 56px; padding-inline: 18px; }
  .hero-actions .btn-gold { align-items: center; text-align: center; }
  .hero-support { gap: 9px 18px; margin-top: 22px; padding-top: 18px; font-size: 9px; }

  .section { padding: 88px 0; }
  .intro { padding: 90px 0; }
  .intro-photo, .intro-photo img { min-height: 0; aspect-ratio: 4 / 5; }
  .intro-photo img { width: 100%; height: 100%; object-fit: cover; }
  .section-heading { margin-bottom: 40px; }
  h2, .gallery-heading h2 { font-size: clamp(40px, 11.5vw, 56px); line-height: .98; }
  .service-card { min-height: 0; }
  .price-row { align-items: baseline; flex-wrap: wrap; }
  .price-row strong { font-size: clamp(58px, 18vw, 82px); }
  .gallery-grid { grid-template-rows: auto; }
  .gallery-item, .gallery-item-main { aspect-ratio: 4 / 3; }
  .gallery-item button { height: 100%; }
  .contact-copy h2 { font-size: clamp(44px, 12vw, 62px); }
  .contact-main-call strong { font-size: clamp(27px, 8.4vw, 34px); }
  .contact-card strong { overflow-wrap: anywhere; }
  .footer-main { gap: 38px 22px; }
}

@media (max-width: 430px) {
  :root { --container: calc(100vw - 28px); }
  .hero-copy h1 { font-size: clamp(39px, 12.4vw, 52px); }
  .hero-support { display: grid; grid-template-columns: 1fr; }
  .eyebrow { line-height: 1.5; }
  .steps-help > a { font-size: 24px; }
  .mobile-call { min-height: 64px; }
  body { padding-bottom: 64px; }
}

/* Final hero density pass */
@media (min-width: 901px) {
  .hero-layout { padding-bottom: 32px; }
  .hero-copy {
    width: min(640px, 52vw);
    padding: 28px 34px 30px;
  }
  .hero-copy h1 {
    max-width: 590px;
    margin-bottom: 15px;
    font-size: clamp(50px, 4.6vw, 66px);
    line-height: .96;
  }
  .hero-copy h1::after { margin-top: 18px; }
  .hero-lead { margin-bottom: 22px; font-size: 15.5px; line-height: 1.62; }
  .hero-actions .btn { min-height: 56px; }
  .hero-support { margin-top: 18px; padding-top: 16px; }
}

@media (max-width: 430px) {
  .hero-copy { padding: 30px 0 38px; }
  .hero-lead { margin-bottom: 20px; }
  .hero-actions .btn-gold { display: none; }
  .hero-actions .btn-outline { min-height: 50px; }
  .hero-support { display: none; }
}


/* ==========================================================
   V2.3 — desktop hero balance and image-free intro
   ========================================================== */

/* The office photo is shown once, in the lower gallery section. */
.intro-grid-text {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px 110px;
  align-items: start;
}
.intro-grid-text .intro-heading,
.intro-grid-text .intro-copy { grid-column: auto; }
.intro-grid-text .intro-copy { padding-top: 62px; }
.intro-values {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(143,110,51,.22);
  border-bottom: 1px solid rgba(143,110,51,.22);
}
.intro-value {
  position: relative;
  min-width: 0;
  padding: 34px 38px 38px 0;
}
.intro-value + .intro-value {
  padding-left: 38px;
  border-left: 1px solid rgba(143,110,51,.22);
}
.intro-value > span {
  display: block;
  margin-bottom: 34px;
  color: #a77d31;
  font-family: var(--serif);
  font-size: 15px;
}
.intro-value h3 {
  max-width: 330px;
  margin-bottom: 14px;
  color: #171812;
  font-size: clamp(25px, 2.15vw, 34px);
  line-height: 1.08;
}
.intro-value p {
  max-width: 360px;
  margin: 0;
  color: #645f55;
  font-size: 14px;
  line-height: 1.72;
}

/* The contact section keeps the dark atmosphere without repeating the office photo. */
.contact-photo {
  background-image:
    radial-gradient(circle at 78% 35%, rgba(197,161,92,.16), transparent 27%),
    radial-gradient(circle at 26% 74%, rgba(197,161,92,.07), transparent 31%),
    linear-gradient(135deg, #090b08 0%, #10130e 52%, #070806 100%);
  filter: none;
  transform: none;
}
.contact-photo::before {
  content: "OSTATNIA POSŁUGA";
  position: absolute;
  right: -3vw;
  bottom: 3%;
  color: rgba(223,194,129,.035);
  font-family: var(--serif);
  font-size: clamp(96px, 13vw, 220px);
  line-height: .78;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.contact-shade {
  background:
    linear-gradient(90deg, rgba(7,8,6,.95) 0%, rgba(7,8,6,.78) 52%, rgba(7,8,6,.46) 100%),
    linear-gradient(180deg, rgba(7,8,6,.38), rgba(7,8,6,.72));
}

@media (min-width: 901px) {
  .hero-layout {
    width: 100%;
    max-width: none;
    padding-left: clamp(28px, 5vw, 88px);
    padding-right: clamp(28px, 5vw, 88px);
  }
  .hero-copy {
    width: min(455px, 36vw);
    padding: 23px 27px 25px;
  }
  .hero-copy .eyebrow { margin-bottom: 15px; }
  .hero-copy h1 {
    max-width: 405px;
    margin-bottom: 13px;
    font-size: clamp(41px, 3.45vw, 55px);
    line-height: .95;
  }
  .hero-copy h1::after {
    width: 68px;
    margin-top: 15px;
  }
  .hero-lead {
    max-width: 410px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.58;
  }
  .hero-actions { gap: 9px; }
  .hero-actions .btn {
    min-height: 49px;
    padding: 11px 18px;
    font-size: 9px;
  }
  .hero-actions .btn-gold strong { font-size: 18px; }
}

@media (max-width: 1020px) {
  .intro-grid-text {
    grid-template-columns: 1fr 1fr;
    gap: 44px 52px;
  }
  .intro-grid-text .intro-copy { padding-top: 34px; }
  .intro-values { grid-template-columns: 1fr; }
  .intro-value,
  .intro-value + .intro-value {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(143,110,51,.2);
  }
  .intro-value:last-child { border-bottom: 0; }
  .intro-value > span { margin-bottom: 18px; }
}

@media (max-width: 760px) {
  .intro-grid-text {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-grid-text .intro-copy { padding-top: 0; }
  .intro-values { margin-top: 16px; }
  .intro-value,
  .intro-value + .intro-value { padding: 25px 0 27px; }
  .intro-value h3 { max-width: none; font-size: 27px; }
  .contact-photo::before { display: none; }
}

/* Desktop hero — pełne zdjęcie bez rozciągniętej, rozmytej kopii */
@media (min-width: 901px) {
  .hero {
    min-height: clamp(620px, 72svh, 760px);
    background: #080a07;
  }

  .hero-visual {
    inset: 0 0 0 34%;
    background: #080a07;
  }

  /* Usuwa powiększoną, rozmytą kopię zdjęcia */
  .hero-visual::before {
    display: none;
  }

  /* Łagodne przejście między ciemną częścią a fotografią */
  .hero-visual::after {
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        #080a07 0%,
        rgba(8, 10, 7, 0.96) 7%,
        rgba(8, 10, 7, 0.55) 24%,
        rgba(8, 10, 7, 0.08) 48%,
        transparent 68%
      ),
      linear-gradient(
        180deg,
        rgba(7, 8, 6, 0.12),
        transparent 65%,
        rgba(7, 8, 6, 0.28)
      );
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
  }

  .hero-layout {
    min-height: clamp(620px, 72svh, 760px);
    align-items: center;
    padding-top: var(--header-h);
    padding-bottom: 0;
  }

  .hero-copy {
    width: clamp(340px, 27vw, 420px);
    padding: 22px 24px 24px;
  }

  .hero-copy h1 {
    max-width: 370px;
    font-size: clamp(39px, 3.1vw, 50px);
  }

  .hero-lead {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

/* Mniejsze laptopy — więcej miejsca dla tekstu */
@media (min-width: 901px) and (max-width: 1200px) {
  .hero-visual {
    inset: 0 0 0 40%;
  }

  .hero-copy {
    width: 340px;
  }
}

/* Galeria — zdjęcie biura w naturalnych, poziomych proporcjach */
.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item-office {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 1600 / 838;
}

.gallery-item-office button {
  width: 100%;
  height: 100%;
}

.gallery-item-office img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080a07;
}

/* Nie powiększamy zdjęcia biura na hover,
   bo wtedy ponownie zostałoby lekko obcięte */
.gallery-item-office:hover img {
  transform: none;
}

.gallery-item:not(.gallery-item-office) {
  aspect-ratio: 16 / 10;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-office {
    grid-column: auto;
    aspect-ratio: 1600 / 838;
  }

  .gallery-item:not(.gallery-item-office) {
    aspect-ratio: 4 / 3;
  }
}

/* FAQ */
.faq {
  background:
    radial-gradient(circle at 8% 12%, rgba(197,161,92,.11), transparent 28%),
    #eee8dc;
  color: #151612;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 8vw, 128px);
  align-items: start;
}
.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 44px);
}
.faq-heading h2 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(46px, 5.1vw, 74px);
}
.faq-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #625c51;
  font-size: 16px;
  line-height: 1.75;
}
.faq-list {
  border-top: 1px solid rgba(143,110,51,.28);
}
.faq-item {
  border-bottom: 1px solid rgba(143,110,51,.28);
}
.faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-number {
  color: #9c7735;
  font-family: var(--serif);
  font-size: 14px;
}
.faq-question {
  color: #1a1b16;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.16;
}
.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(143,110,51,.36);
  border-radius: 50%;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1px;
  background: #8f6e33;
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon {
  border-color: #a9813b;
  background: rgba(197,161,92,.11);
}
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  padding: 0 52px 30px 60px;
}
.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: #615b50;
  font-size: 15px;
  line-height: 1.8;
}

@media (hover: hover) {
  .faq-item summary:hover .faq-question { color: #8f6e33; }
  .faq-item summary:hover .faq-icon { border-color: #a9813b; }
}

@media (max-width: 1020px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .faq-heading {
    position: static;
    max-width: 760px;
  }
  .faq-heading h2 { max-width: 740px; }
}

@media (max-width: 760px) {
  .faq-layout { gap: 38px; }
  .faq-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 11.5vw, 56px);
  }
  .faq-heading > p:last-child { font-size: 15px; }
  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 0;
    padding: 22px 0;
  }
  .faq-question { font-size: clamp(21px, 6.2vw, 27px); }
  .faq-icon { width: 28px; height: 28px; }
  .faq-answer { padding: 0 0 24px 46px; }
  .faq-answer p { font-size: 14px; line-height: 1.72; }
}

@media (max-width: 430px) {
  .faq-item summary {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
  }
  .faq-number { font-size: 12px; }
  .faq-answer { padding-left: 38px; }
}

/* Contact — dwa punkty obsługi */
.contact-office-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 7px;
}
.contact-office-heading .contact-card-label { margin-bottom: 0; }
.contact-office-city {
  flex: 0 0 auto;
  color: rgba(241,236,224,.48);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}
.contact-office-hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 15px;
  padding: 11px 13px;
  border: 1px solid rgba(223,194,129,.14);
  background: rgba(223,194,129,.035);
  color: rgba(241,236,224,.58);
  font-size: 11px;
  line-height: 1.4;
}
.contact-office-hours b {
  flex: 0 0 auto;
  color: var(--cream);
  font-weight: 700;
}
.contact-office-mobile {
  position: relative;
}
.contact-office-mobile::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(197,161,92,.12));
}
.contact-office-note {
  max-width: 390px;
  margin-top: 12px !important;
  color: rgba(241,236,224,.68);
  font-size: 12px;
  line-height: 1.6;
}
.contact-area strong { font-size: 21px; }

@media (max-width: 760px) {
  .contact-office-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .contact-office-hours {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .contact-office-mobile::before { left: -12px; }
}
