:root {
  --bg: #f7f3ec;
  --bg-soft: #f8f6f1;
  --panel: #efe9de;
  --panel-2: #e8dfd2;
  --text: #1d1d1b;
  --muted: #6f6a61;
  --faint: rgba(0, 0, 0, 0.08);
  --line: rgba(0, 0, 0, 0.08);
  --gold: #a67c52;
  --gold-soft: #b28a5b;
  --olive: #4e5a45;
  --cream: #f8f6f1;
  --sand: #d8cab8;
  --shadow: 0 26px 80px rgba(83, 68, 48, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 44%, #f1eadf 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--gold); color: var(--cream); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(45,38,24,0.55) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(45,38,24,0.38) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(45,38,24,0.26) 0 1px, transparent 1px);
  background-size: 92px 92px, 124px 124px, 156px 156px;
  mix-blend-mode: overlay;
}

/* .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 4.4vw, 72px);
  color: rgba(255, 250, 242, 0.94);
  background: transparent;
  backdrop-filter: blur(7px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease, padding 260ms ease, border-color 260ms ease;
} */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 4.4vw, 72px);
  color: rgba(255, 250, 242, 0.94);
  background: transparent;
  backdrop-filter: blur(7px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease, padding 260ms ease, border-color 260ms ease;
}

.site-header nav {
  justify-self: center;
}

.lang-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta {
  justify-self: end;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--text);
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 44px rgba(82, 68, 45, 0.10);
  text-shadow: none;
}

.site-header.is-scrolled nav a {
  color: var(--muted);
}

.site-header.is-scrolled nav a:hover {
  color: var(--text);
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(166, 124, 82, 0.44);
  color: #7b5e3d;
  background: rgba(166, 124, 82, 0.06);
}

.site-header.is-scrolled .header-cta:hover {
  background: var(--gold);
  color: var(--cream);
}

.brand { display: inline-flex; align-items: center; min-width: 178px; }
.brand-logo { height: 58px; width: auto; object-fit: contain; transition: opacity 220ms ease, transform 220ms ease, height 220ms ease; }
.brand-logo-dark { display: none; }
.site-header.is-scrolled .brand-logo-light { display: none; }
.site-header.is-scrolled .brand-logo-dark { display: block; height: 52px; }

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  color: rgba(255, 250, 242, 0.76);
  transition: color 220ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 260ms ease;
}

nav a:hover { color: currentColor; }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 250, 242, 0.54);
  padding: 10px 17px;
  color: rgba(255, 250, 242, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.header-cta:hover { background: var(--gold); color: var(--cream); transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 90px) 78px;
}

.hero-media,
.hero-media img,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { z-index: -2; overflow: hidden; }
.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroDrift 22s ease-in-out infinite alternate;
  filter: saturate(0.92) contrast(1.04) brightness(0.94);
}

.hero-vignette {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,250,242,0.22), transparent 30%),
    linear-gradient(90deg, rgba(29,34,27,0.68), rgba(29,34,27,0.34) 46%, rgba(29,34,27,0.12)),
    linear-gradient(0deg, rgba(29,34,27,0.62), rgba(29,34,27,0.04) 48%, rgba(29,34,27,0.22));
}

.lang-switch {
  justify-self: end;
  display: flex;
  gap: 10px;
  margin-right: 16px;
}

.lang-switch a {
  background: none;
  border: none;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--gold);
}

/* mobile */
@media (max-width: 740px) {
  .lang-switch {
    position: absolute;
    top: 18px;
    right: 20px;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-content {
  max-width: 920px;
  padding-bottom: 58px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.1vw, 4rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 1.4vw, 1.38rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255,250,242,0.84);
  font-size: clamp(1.02rem, 1.45vw, 1.34rem);
}

.hero-actions,
.cta-content {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--cream); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { border-color: rgba(255, 250, 242, 0.48); color: rgba(255, 250, 242, 0.9); background: rgba(255,250,242,0.08); }
.btn-ghost:hover { border-color: var(--gold); color: var(--cream); }

.hero-facts {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  max-width: 620px;
  border-top: 1px solid rgba(255, 250, 242, 0.28);
  border-left: 1px solid rgba(255, 250, 242, 0.28);
  background: rgba(248, 246, 241, 0.28);
  backdrop-filter: blur(14px);
}

.hero-facts article {
  min-height: 104px;
  border-right: 1px solid rgba(255, 250, 242, 0.28);
  border-bottom: 1px solid rgba(255, 250, 242, 0.28);
  padding: 20px;
}

.hero-facts strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-facts span {
  display: block;
  margin-top: 4px;
  color: rgba(255,250,242,0.86);
  font-size: 0.82rem;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: clamp(20px, 6vw, 90px);
  width: 26px;
  height: 46px;
  border: 1px solid rgba(255,250,242,0.58);
  border-radius: 99px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.statement {
  padding: clamp(96px, 14vw, 190px) clamp(20px, 7vw, 110px);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.statement-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.statement h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.statement p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.chapter {
  padding: clamp(86px, 12vw, 160px) clamp(20px, 6vw, 90px);
}

.image-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  background: var(--bg-soft);
}

.image-copy-split {
  position: relative;
  background:
    linear-gradient(180deg, rgba(199,166,111,0.055), transparent 25%),
    var(--bg);
}

.image-copy-split::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 90px);
  right: clamp(20px, 6vw, 90px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(31, 36, 31, 0.18),
    transparent
  );
}

.image-frame,
.map-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: min(62vw, 680px);
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.image-frame:hover img,
.map-frame:hover img { transform: scale(1.04); filter: saturate(1.02) contrast(1.04); }

.copy-block {
  max-width: 640px;
}

.copy-block p,
.section-head p,
.map-copy p,
.vision-card p,
.alt-grid p,
.diligence-copy p,
.risk-note p,
.cta-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.facts {
  background:
    linear-gradient(180deg, rgba(199,166,111,0.055), transparent 25%),
    var(--bg);
}

.section-head {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric-grid article {
  position: relative;
  min-height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.32));
  transition: transform 260ms ease, background 260ms ease;
}

.metric-grid article::before,
.alt-grid article::before,
.docs-list span::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 360ms ease;
}

.metric-grid article:hover { background: rgba(166, 124, 82, 0.08); transform: translateY(-3px); }
.metric-grid article:hover::before,
.alt-grid article:hover::before,
.docs-list span:hover::before { width: 100%; }

.metric-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.metric-grid strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.metric-grid p { margin: 0; color: var(--muted); }

.parcel-overview {
  margin-top: clamp(42px, 6vw, 82px);
}

.parcel-heading {
  max-width: 980px;
  margin-bottom: 26px;
}

.parcel-heading h3 {
  max-width: 860px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.parcel-heading p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.parcel-table {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(83, 68, 48, 0.08);
}

.parcel-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.85fr) minmax(260px, 1.55fr) minmax(130px, 0.55fr);
  border-top: 1px solid var(--line);
}

.parcel-row:first-child {
  border-top: 0;
}

.parcel-row > div {
  padding: clamp(18px, 2.1vw, 28px);
  color: var(--text);
}

.parcel-head {
  color: var(--cream);
  background: var(--olive);
}

.parcel-head > div {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.parcel-row:not(.parcel-head) > div:first-child,
.parcel-row:not(.parcel-head) > div:last-child {
  font-weight: 800;
}

.parcel-note {
  margin-top: 22px;
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.map-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: center;
  padding: clamp(90px, 12vw, 165px) clamp(20px, 6vw, 90px);
  overflow: hidden;
  background: var(--bg-soft);
}

.map-copy { position: relative; z-index: 1; max-width: 560px; }
.map-frame {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  padding: clamp(12px, 1.8vw, 22px);
  background: rgba(255, 255, 255, 0.82);
}
.map-frame img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  opacity: 0.94;
  filter: saturate(0.88) contrast(1.08) brightness(1.02);
  transition: transform 1200ms ease, filter 1200ms ease, opacity 1200ms ease;
}
.map-frame:hover img { opacity: 0.96; }

figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.vision { background: var(--bg); }

.vision-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.vision-card {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255,255,255,0.58);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.vision-card:hover,
.alt-grid article:hover,
.docs-list span:hover { transform: translateY(-4px); border-color: rgba(166, 124, 82, 0.45); background: rgba(166, 124, 82, 0.08); }

.vision-card.large {
  grid-row: span 3;
  min-height: 720px;
  display: grid;
  align-content: end;
  padding: 0;
}

.vision-card.large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.82);
  transition: transform 1000ms ease, filter 1000ms ease;
}

.vision-card.large:hover img { transform: scale(1.05); filter: saturate(1) brightness(0.88); }

.vision-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31,36,31,0.72), rgba(31,36,31,0.08) 60%);
}

.vision-card.large div { position: relative; z-index: 1; padding: clamp(26px, 4vw, 48px); max-width: 760px; }

.vision-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision-card.large span { margin-bottom: 14px; }

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  background: var(--panel);
}

.gallery-strip img {
  width: 100%;
  height: min(42vw, 520px);
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 600ms ease, filter 600ms ease;
}

.gallery-strip img:hover { transform: translateY(-6px); filter: saturate(1.05) contrast(1.04); }

.concept-illustrations {
  background: var(--bg-soft);
}

.concept-illustrations .section-head {
  max-width: 780px;
}

.idea-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.idea-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  padding: clamp(10px, 1.4vw, 16px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 58px rgba(83, 68, 48, 0.10);
}

.idea-frame img {
  width: 100%;
  height: min(34vw, 460px);
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.idea-frame::after {
  content: "AI ilustracija";
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  left: clamp(18px, 2vw, 26px);
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(29, 29, 27, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.alternatives { background: var(--bg-soft); }

.alt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.alt-grid article {
  position: relative;
  min-height: 310px;
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.34));
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.alt-grid em {
  display: block;
  margin-bottom: 76px;
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.diligence {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: start;
  background: var(--bg);
}

.diligence-copy { max-width: 640px; }

.docs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.docs-list span {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  color: rgba(31,36,31,0.86);
  font-weight: 700;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.risk-note {
  background: var(--panel-2);
}

.risk-note > div {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.cta-section {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 6vw, 90px);
}

.cta-media,
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-media { z-index: -2; }
.cta-media img { object-fit: cover; filter: saturate(0.94) brightness(0.9); transform: scale(1.03); }
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247,242,233,0.94), rgba(247,242,233,0.68) 52%, rgba(247,242,233,0.30)),
    linear-gradient(0deg, rgba(247,242,233,0.86), rgba(247,242,233,0.14));
}

.cta-content {
  max-width: 680px;
  display: block;
}

.cta-content p { margin-bottom: 30px; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal {
  opacity: 1;
  transform: translateY(18px);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px clamp(20px, 6vw, 90px);
  background: #f3ede4;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
}

.site-footer .brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1d1d1b;
}

.footer-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-contact a {
  color: #6f6a61;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  nav { display: none; }
  .hero-facts { position: static; margin-top: 18px; max-width: 100%; }
  .hero-content { padding-bottom: 0; }
  .image-copy,
  .map-section,
  .diligence { grid-template-columns: 1fr; }
  .idea-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .alt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-card.large { min-height: 560px; }
}

@media (max-width: 740px) {
  .site-header { padding: 18px 20px; }
  .header-cta { display: none; }
  .brand { font-size: 0.68rem; }
  .hero { padding: 118px 20px 96px 20px; }
  h1 { font-size: clamp(2.15rem, 10vw, 2.75rem); }
  h2 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  .hero-facts,
  .metric-grid,
  .parcel-row,
  .alt-grid,
  .docs-list,
  .gallery-strip { grid-template-columns: 1fr; }
  .parcel-head { display: none; }
  .parcel-row { padding: 16px 0; }
  .parcel-row > div { padding: 5px 18px; }
  .parcel-row > div:nth-child(2) { color: var(--muted); }
  .hero-actions { display: grid; }
  .btn { width: 100%; text-align: center; }
  .chapter,
  .statement,
  .map-section,
  .cta-section { padding-right: 20px; padding-left: 20px; }
  .image-frame img,
  .idea-frame img,
  .gallery-strip img { min-height: 280px; height: 340px; }
  .vision-card.large { min-height: 520px; }

  .brand-logo, .site-header.scrolled .brand-logo-dark { height: 48px; }
  .hero-logo { width: min(260px, 78vw); }
  .contact-lines { display: grid; }
  .lightbox { padding: 16px; }

  .scroll-cue {
    left: 50%;
    bottom: 22px;
    width: 24px;
    height: 42px;
    transform: translateX(-50%);
    z-index: 4;
  }

  .scroll-cue span {
    top: 8px;
  }
}

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


/* Light luxury refinements */
.statement, .chapter, .map-section, .cta-section {
  position: relative;
}

.image-frame, .map-frame, .vision-card, .alt-grid article, .docs-list span {
  border-radius: 2px;
}

.copy-block, .section-head, .map-copy, .diligence-copy, .risk-note > div {
  color: var(--text);
}

.hero-content .kicker, .hero-content h1, .hero-content .hero-lead {
  text-shadow: 0 16px 44px rgba(0,0,0,0.26);
}

.hero-content h1 {
  color: var(--cream);
}

.statement::after, .facts::after, .vision::after {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 6vw, 90px) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31,36,31,0.18), transparent);
}


/* Targeted refinements: parcel table, image overlay readability, and polished concept layout */
.parcel-table {
  border: 1px solid rgba(166, 124, 82, 0.22);
  background: #fffaf2;
  box-shadow: 0 24px 70px rgba(83, 68, 48, 0.12);
}

.parcel-row {
  border-top: 1px solid rgba(166, 124, 82, 0.16);
}

.parcel-row:not(.parcel-head):nth-child(odd) {
  background: rgba(255, 255, 255, 0.52);
}

.parcel-row:not(.parcel-head):nth-child(even) {
  background: rgba(247, 243, 236, 0.72);
}

.parcel-row > div {
  color: #2b2924;
}

.parcel-head {
  background: linear-gradient(135deg, #3f4938 0%, #59624f 100%);
}

.parcel-head > div {
  color: #fbf7ee;
}

.parcel-note {
  border-left-color: #a67c52;
  background: #fffaf2;
  color: #5f594f;
  box-shadow: 0 14px 42px rgba(83, 68, 48, 0.08);
}

.vision-card.large img {
  filter: saturate(0.92) brightness(0.72) contrast(1.04);
}

.vision-card.large:hover img {
  filter: saturate(1) brightness(0.76) contrast(1.05);
}

.vision-card.large::after {
  background:
    linear-gradient(90deg, rgba(18, 22, 18, 0.76) 0%, rgba(18, 22, 18, 0.48) 42%, rgba(18, 22, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(18, 22, 18, 0.66), rgba(18, 22, 18, 0.08) 62%);
}

.vision-card.large div {
  max-width: 700px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.46);
}

.vision-card.large h3 {
  color: #fff8ec;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.vision-card.large p {
  color: rgba(255, 248, 236, 0.88);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
}

.vision-card.large span {
  color: #d9bd8d;
}

/* The three-photo strip below the AI illustrations has been intentionally removed from HTML. */

/* Projekt Panolia logo and document lightbox refinements */
.brand-logo {
  gap: 0;
}

.brand-logo-img {
  width: 142px;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.24));
  transition: filter 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled .brand-logo-img {
  filter: none;
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-1px);
}

.hero-logo {
  display: block;
  width: min(340px, 72vw);
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,0.34));
}

.map-docs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.doc-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.clickable-doc img {
  transition: transform 900ms ease, filter 900ms ease, opacity 900ms ease;
}

.clickable-doc:hover img {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1.05) brightness(1.02);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -8px 0 26px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(166, 124, 82, 0.28);
  padding: 10px 14px;
  color: #6f5638;
  background: rgba(255, 250, 242, 0.70);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.contact-lines a:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 124, 82, 0.55);
  background: var(--gold);
  color: var(--cream);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(14, 15, 13, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,0.44);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255,255,255,0.08);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 6vw, 90px);
  background: var(--bg-soft);
}

.location-copy {
  max-width: 680px;
}

.distance-grid.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.distance-grid.compact article {
  min-height: 112px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  background: rgba(248, 246, 241, 0.72);
}

.distance-grid.compact span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.distance-grid.compact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.distance-note {
  margin: 0 0 28px;
  color: rgba(70, 64, 58, 0.62);
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .location-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .distance-grid.compact {
    grid-template-columns: 1fr;
  }
}

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 6vw, 90px);
  background: var(--bg-soft);
}

.location-copy {
  max-width: 560px;
}

.map-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(166, 124, 82, 0.22);
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(83, 68, 48, 0.12);
}

#panoliaMap {
  width: 100%;
  height: 560px;
  filter: saturate(0.88) contrast(1.04);
}

@media (max-width: 900px) {
  .location-section {
    grid-template-columns: 1fr;
  }

  .map-card,
  #panoliaMap {
    min-height: 420px;
    height: 420px;
  }
}

.distance-intro h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.distance-intro p {
  color: var(--muted);
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.distance-grid article {
  min-height: 130px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  background: rgba(248, 246, 241, 0.72);
}

.distance-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.distance-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .distance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.distance-note {
  margin-top: 18px;
  color: rgba(70, 64, 58, 0.62);
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.image-cluster {
  display: grid;
  gap: 18px;
}

.image-main img {
  width: 100%;
  height: min(44vw, 520px);
  min-height: 360px;
  object-fit: cover;
}

.image-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-main img {
  width: 100%;
  height: min(44vw, 520px);
  min-height: 360px;
  object-fit: cover;
}

.image-small img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-frame button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.image-frame button img {
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.image-frame:hover img {
  transform: scale(1.02);
  filter: brightness(1.02);
}

@media (max-width: 740px) {
  .image-grid-4 {
    grid-template-columns: 1fr;
  }

  .image-main img,
  .image-small img {
    height: 260px;
    min-height: 260px;
  }
}

.image-small img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 740px) {
  .image-row {
    grid-template-columns: 1fr;
  }

  .image-main img,
  .image-small img {
    height: 260px;
    min-height: 260px;
  }
}
