
:root {
  --bg:       #0E0B07;
  --bg2:      #161008;
  --bg3:      #1E1509;
  --bg4:      #26180B;
  --gold:     #C8A84A;
  --gold2:    #E2C068;
  --gold-dim: rgba(200,168,74,0.15);
  --cream:    #F0E8D0;
  --warm:     #D8CCAA;
  --muted:    #A0916E;
  --border:   rgba(200,168,74,0.14);
  --border2:  rgba(200,168,74,0.32);
  --f-title:  'Cinzel', serif;
  --f-serif:  'EB Garamond', Georgia, serif;
  --f-body:   'Montserrat', sans-serif;
  --nav-h:    70px;
  --lang-h:   30px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── LANG ──────────────────────────── */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  height: var(--lang-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 4%; gap: 2px;
}
.lang-btn {
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); background: none;
  border: 1px solid transparent;
  padding: 3px 12px; cursor: pointer; transition: all .2s;
}
.lang-btn.active, .lang-btn:hover {
  color: var(--gold); border-color: var(--border2);
}

/* ── LANG LOGIC ─────────────────────── */
.pl { } .en { display: none; }
body.en-mode .pl { display: none; }
body.en-mode .en { display: block; }
.en-i { display: none; }
.pl-i { }
body.en-mode .en-i { display: inline; }
body.en-mode .pl-i { display: none; }

/* ── NAV ───────────────────────────── */
nav {
  position: fixed;
  top: var(--lang-h); left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; z-index: 500;
  background: rgba(14,11,7,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
}
.nav-logo-img {
  height: 42px; width: 42px;
  object-fit: contain;
  border-radius: 3px;
  /* logo has black bg — fits perfectly on dark nav */
}
.nav-brand {
  display: flex; flex-direction: column;
}
.nav-brand-main {
  font-family: var(--f-title);
  font-size: 15px; letter-spacing: .22em;
  color: var(--cream); line-height: 1;
}
.nav-brand-sub {
  font-size: 9px; letter-spacing: .32em;
  color: var(--muted); text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  color: var(--bg) !important;
  background: var(--gold) !important;
  padding: 10px 24px;
  font-size: 10px !important; font-weight: 500 !important;
  letter-spacing: .18em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1px; background: var(--gold);
}
.mob-menu {
  display: none; flex-direction: column;
  position: fixed;
  top: calc(var(--lang-h) + var(--nav-h)); left: 0; right: 0;
  background: var(--bg2); z-index: 499;
  padding: 20px 4%; gap: 0;
  border-bottom: 1px solid var(--border);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--warm); padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mob-menu a:hover { color: var(--gold); }

/* ── HERO ──────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--lang-h) + var(--nav-h));
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
}
.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--lang-h) - var(--nav-h) - 88px);
  min-height: 520px;
}

/* LEFT */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 5% 60px 4%;
  position: relative;
  border-right: 1px solid var(--border);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
  animation: up .9s .1s ease both;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.hero-logo-center {
  width: 110px; height: 110px;
  object-fit: contain; border-radius: 4px;
  margin-bottom: 36px;
  animation: up .9s .2s ease both;
  opacity: .95;
}
.hero-h1 {
  font-family: var(--f-title);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 400; letter-spacing: .18em; line-height: 1.25;
  color: var(--cream); margin-bottom: 10px;
  animation: up .9s .3s ease both;
}
.hero-tagline {
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.8vw, 26px);
  font-style: italic; font-weight: 300;
  color: var(--gold); letter-spacing: .06em;
  margin-bottom: 32px;
  animation: up .9s .4s ease both;
}
.hero-rule {
  width: 40px; height: 1px; background: var(--gold);
  margin-bottom: 28px;
  animation: up .9s .45s ease both;
}
.hero-desc {
  font-size: 13px; font-weight: 300; line-height: 1.95;
  color: var(--muted); max-width: 400px; margin-bottom: 44px;
  animation: up .9s .55s ease both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: up .9s .65s ease both;
}
.btn-gold {
  display: inline-block;
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 14px 32px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  font-family: var(--f-body); font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--warm); border: 1px solid var(--border2);
  padding: 14px 32px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* RIGHT — photo mosaic */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--bg);
  animation: fadeIn 1.2s .1s ease both;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.hp {
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.hp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(1.1) contrast(1.05);
  transition: transform .8s ease, filter .5s ease;
  transform: scale(1);
  will-change: transform;
}

.hp:hover img {
  transform: scale(1.07);
  filter: brightness(.9) saturate(1.15) contrast(1.05);
}
.hp-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,11,7,.6) 0%, transparent 55%);
  pointer-events: none;
}

/* HERO STATS BAR */
.hero-stats {
  display: flex;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.hstat {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.hstat:last-child { border-right: none; }
.hstat-n {
  font-family: var(--f-title);
  font-size: 28px; color: var(--gold); line-height: 1;
}
.hstat-l {
  font-size: 9px; font-weight: 300; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); line-height: 1.6;
}

@keyframes up { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── GOLD RULES ─────────────────────── */
.gr { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ── SHARED SECTION STYLES ──────────── */
section { padding: 96px 4%; }
.s-eyebrow {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.s-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.s-title {
  font-family: var(--f-title);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400; letter-spacing: .12em; line-height: 1.2;
  color: var(--cream); margin-bottom: 8px;
}
.s-sub {
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic; font-weight: 300;
  color: var(--gold); margin-bottom: 24px;
}
.s-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 24px; }

/* ── ABOUT ──────────────────────────── */
.about { background: var(--bg2); padding: 96px 4%; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1160px; margin: 0 auto;
}
.about-img {
  position: relative;
}
.about-img-frame {
  height: 540px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-img-frame img {
  filter: brightness(.8) saturate(1.1);
  transition: transform .7s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-pull {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--f-serif);
  font-size: 14px; font-style: italic; font-weight: 400;
  padding: 18px 24px; max-width: 210px; line-height: 1.65;
  border: 3px solid var(--bg2);
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.about-text p {
  margin: 0;
}

.about-text p + p {
  margin-top: 7px;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
  margin-bottom: 0;
}

.ach {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
  color: var(--warm);
  line-height: 1.55;
}
.ach::before {
  content: '✦'; color: var(--gold);
  font-size: 7px; flex-shrink: 0;
}

/* ── SERVICES ───────────────────────── */
.services { background: var(--bg3); padding: 96px 4%; }
.services-intro {
  text-align: center; max-width: 580px;
  margin: 0 auto 64px;
}
.services-intro .s-eyebrow { justify-content: center; }
.services-intro .s-eyebrow::before { display: none; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  max-width: 1160px; margin: 0 auto;
}
.svc {
  background: var(--bg3);
  padding: 44px 34px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.svc:hover { background: var(--bg4); }
.svc::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--gold);
  transition: width .45s ease;
}
.svc:hover::after { width: 70%; }
.svc-icon {
  font-size: 30px; margin-bottom: 18px; display: block;
}
.svc-title {
  font-family: var(--f-title);
  font-size: 13px; letter-spacing: .14em;
  color: var(--cream); margin-bottom: 14px; line-height: 1.5;
}
.svc-desc {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.85;
}

/* ── GALLERY ────────────────────────── */
.gallery { background: var(--bg); padding: 96px 4% 80px; }
.gallery-hd {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  max-width: 1160px; margin: 0 auto 48px;
  flex-wrap: wrap; gap: 20px;
}
.gl-link {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--border2);
  padding-bottom: 2px; transition: border-color .2s;
}
.gl-link:hover { border-color: var(--gold2); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 300px 220px 260px;
  gap: 4px;
  max-width: 1160px; margin: 0 auto;
}
.gi { overflow: hidden; position: relative; cursor: pointer; }
.gi img {
  filter: brightness(.78) saturate(1.08);
  transition: transform .7s ease, filter .45s ease;
}
.gi:hover img {
  transform: scale(1.08);
  filter: brightness(.9) saturate(1.15);
}
.gi:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gi:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.gi:nth-child(5) { grid-column: 1; grid-row: 3; }
.gi:nth-child(6) { grid-column: 2; grid-row: 3; }
.gi:nth-child(7) { grid-column: 3; grid-row: 3; }
/*.gi-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,11,7,.85) 0%, transparent 100%);
  padding: 20px 16px 14px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(4px);
  transition: opacity .35s, transform .35s;
}
.gi:hover .gi-cap { opacity: 1; transform: translateY(0); }

/* ── PACKAGES ───────────────────────── */
.packages { background: var(--bg2); padding: 96px 4%; }
.packages-intro {
  text-align: center; max-width: 580px;
  margin: 0 auto 64px;
}
.packages-intro .s-eyebrow { justify-content: center; }
.packages-intro .s-eyebrow::before { display: none; }
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  max-width: 1160px; margin: 0 auto;
}
.pkg {
  background: var(--bg2);
  padding: 48px 36px;
  position: relative;
  transition: background .3s;
}
.pkg:hover { background: var(--bg3); }
.pkg.star {
  background: var(--bg3);
  border-top: 1px solid var(--gold);
}
.pkg-badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold); color: var(--bg);
  font-size: 8px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; padding: 4px 16px; white-space: nowrap;
}
.pkg-num {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.pkg-name {
  font-family: var(--f-title);
  font-size: 20px; letter-spacing: .12em;
  color: var(--cream); margin-bottom: 5px;
}
.pkg-sub {
  font-family: var(--f-serif);
  font-size: 15px; font-style: italic; font-weight: 300;
  color: var(--gold); margin-bottom: 18px;
}
.pkg-desc {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.85; margin-bottom: 28px;
}
.pkg-price {
  font-family: var(--f-title);
  font-size: 40px; color: var(--gold); line-height: 1;
}
.pkg-price-lbl {
  font-size: 11px; color: var(--muted); margin: 4px 0 24px;
}
.pkg-hr { height: 1px; background: var(--border); margin-bottom: 20px; }
.pkg-items { display: flex; flex-direction: column; gap: 9px; }
.pi {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 13px; font-weight: 300; color: var(--warm);
}
.pi::before {
  content: '—'; color: var(--gold); font-size: 9px; flex-shrink: 0;
}
.pkg-note {
  text-align: center; margin-top: 28px;
  font-size: 13px; font-weight: 300;
  color: var(--muted); font-family: var(--f-serif); font-style: italic;
  max-width: 1160px; margin: 28px auto 0;
}
.pkg-note a { color: var(--gold); }

/* ── TESTIMONIALS ───────────────────── */
.testi { background: var(--bg); border-top: 1px solid var(--border); padding: 96px 4%; }
.testi-intro {
  text-align: center; max-width: 520px;
  margin: 0 auto 64px; padding-bottom: 8px;
}
.testi-intro .s-eyebrow { justify-content: center; }
.testi-intro .s-eyebrow::before { display: none; }
.tg {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  max-width: 1160px; margin: 0 auto;
}
.tc {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background .3s, border-color .3s;
}
.tc:hover {
  background: var(--bg3);
}
.tc-qm {
  font-family: var(--f-serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: .75;
  margin-bottom: 16px;
}
.tc-stars {
  color: var(--gold2);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tc-text {
  font-family: var(--f-title);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .035em;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 26px;
}
.tc-who {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
}

.tc-evt {
  font-size: 13px;
  font-weight: 400;
  color: var(--warm);
  margin-top: 5px;
}

/* ── INSTAGRAM ──────────────────────── */
.instagram { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 4%; }
.ig-hd {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin: 0 auto 36px;
  max-width: 1160px; flex-wrap: wrap; gap: 16px;
}
.ig-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300;
  color: var(--gold); border-bottom: 1px solid var(--border2);
  padding-bottom: 2px;
}
.ig-link svg { width: 16px; height: 16px; }
.ig-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 4px; max-width: 1160px; margin: 0 auto;
}
.igt {
  aspect-ratio: 1; overflow: hidden;
  background: var(--bg3); position: relative;
}
.igt img {
  filter: brightness(.72) saturate(1.05);
  transition: transform .55s ease, filter .4s;
}
.igt:hover img { transform: scale(1.1); filter: brightness(.9) saturate(1.1); }
.igt-ov {
  position: absolute; inset: 0;
  background: rgba(200,168,74,0); transition: background .3s;
  display: flex; align-items: center; justify-content: center;
}
.igt:hover .igt-ov { background: rgba(200,168,74,.3); }
.igt-ov svg { opacity: 0; fill: var(--cream); width: 20px; transition: opacity .3s; }
.igt:hover .igt-ov svg { opacity: 1; }

.instagram-widget-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  min-height: 320px;
}
.instagram-widget-wrap > div {
  width: 100%;
  min-height: 320px;
}
.instagram-widget-wrap iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 320px;
  margin: 0 auto !important;
  border: 0;
}

/* ── CONTACT ────────────────────────── */
.contact { background: var(--bg3); border-top: 1px solid var(--border); padding: 96px 4%; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; max-width: 1160px; margin: 0 auto; align-items: start;
}
.contact-desc {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.95; margin: 16px 0 36px; max-width: 380px;
}
.cdetails { display: flex; flex-direction: column; gap: 16px; }
.cd {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--warm); transition: color .2s;
}
.cd:hover { color: var(--gold); }
.cd-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: border-color .2s, background .2s;
}
.cd:hover .cd-ic { border-color: var(--gold); background: var(--gold-dim); }
.cf-box {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 40px;
}
.cf-box h3 {
  font-family: var(--f-title); font-size: 16px; letter-spacing: .14em;
  color: var(--cream); margin-bottom: 6px;
}
.cf-box > p {
  font-family: var(--f-serif); font-size: 14px; font-style: italic;
  color: var(--muted); margin-bottom: 26px;
}
.cform { display: flex; flex-direction: column; gap: 10px; }
.cform-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cform input, .cform select, .cform textarea {
  font-family: var(--f-body); font-size: 13px; font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,.03);
  border: none; border-bottom: 1px solid var(--border2);
  padding: 13px 4px; outline: none; appearance: none; width: 100%;
  transition: border-color .2s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  border-color: var(--gold);
}
.cform input::placeholder, .cform textarea::placeholder {
  color: rgba(200,184,138,.22);
}
.cform select option { background: var(--bg3); }
.cform textarea { min-height: 88px; resize: vertical; }

/* ── FOOTER ─────────────────────────── */
footer {
  background: var(--bg); padding: 60px 4% 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  margin: 0 auto 24px; max-width: 1160px;
}
.fb-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.fb-logo-img { height: 32px; width: 32px; object-fit: contain; border-radius: 2px; opacity: .82; }
.fb-logo-name {
  font-family: var(--f-title);
  font-size: 14px; letter-spacing: .2em; color: var(--warm);
}
.fb-tagline {
  font-size: 12px; font-weight: 300;
  color: var(--muted); line-height: 1.75; max-width: 210px;
  font-family: var(--f-serif); font-style: italic;
}
.fc h5 {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.fc a {
  display: block; font-size: 13px; font-weight: 300;
  color: var(--muted); margin-bottom: 9px; transition: color .2s;
}
.fc a:hover { color: var(--gold); }
.footer-btm {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted);
  flex-wrap: wrap; gap: 8px; letter-spacing: .06em;
  max-width: 1160px; margin: 0 auto;
}

/* ── FADE IN ─────────────────────────── */
.fi { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fi.in { opacity: 1; transform: none; }
body:not(.js-ready) .fi { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1060px) {
  .hero {
    min-height: 0;
    display: block;
  }

  .hero-main {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-right {
    order: -1;
    height: 380px;
    min-height: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }

  .hero-left {
    padding: 52px 6% 56px;
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .hero-eyebrow {
    margin-bottom: 28px;
  }

  .hero-logo-center {
    width: 90px;
    height: 90px;
    margin-bottom: 28px;
  }

  .hero-desc {
    margin-bottom: 34px;
  }

  .hero-stats {
    position: static;
    width: 100%;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-pull {
    right: 0;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gi:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gi:first-child {
    grid-column: 1 / 3;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .tg {
    grid-template-columns: 1fr;
  }

  .press-grid.press-count-1 {
  grid-template-columns: minmax(0, 380px);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.press-grid.press-count-2 {
  grid-template-columns: repeat(2, minmax(0, 380px));
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.press-grid.press-count-3 {
  grid-template-columns: repeat(3, minmax(0, 360px));
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.press-grid.press-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0 auto;
}

.press-hidden {
  display: none;
}

.press.show-all .press-hidden {
  display: flex;
}

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  section {
    padding: 64px 4%;
  }

  nav .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ── HERO MOBILE ─────────────────── */

  .hero-right {
    height: 250px;
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .hero-left {
    padding: 40px 6% 46px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .hero-logo-center {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
  }

  .hero-h1 {
    font-size: clamp(25px, 8vw, 31px);
    letter-spacing: .13em;
  }

  .hero-tagline {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 24px;
  }

  .hero-rule {
    margin-bottom: 22px;
  }

  .hero-desc {
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 30px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hstat {
    min-height: 78px;
    padding: 16px 12px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .hstat:nth-child(2n) {
    border-right: none;
  }

  .hstat:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .hstat:nth-child(2) {
    border-right: none;
  }

  .hstat-n {
    font-size: 24px;
    flex-shrink: 0;
  }

  .hstat-l {
    font-size: 8px;
    line-height: 1.55;
  }
    .instagram {
    padding: 64px 4%;
    min-height: 460px;
  }

  .instagram-widget-wrap {
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    margin: 0 auto;
    display: block;
  }

  .instagram-widget-wrap > div,
  .instagram-widget-wrap iframe {
    width: 100%;
    min-height: 360px;
  }
  /* ── TESTIMONALS MOBILE ─────────── */
  .tc {
    padding: 32px 24px;
  }

  .tc-text {
    font-size: 16px;
    line-height: 1.7;
  }

  /* ── PRESS / MEDIA MOBILE ─────────── */

  .press {
    padding: 64px 4%;
  }

  .press-intro {
    margin-bottom: 38px;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }
  .press-grid.press-count-1,
  .press-grid.press-count-2,
  .press-grid.press-count-3,
  .press-grid.press-count-4 {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .press-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .press-card::after {
    left: 22px;
    right: 22px;
  }

  .press-card-top {
    margin-bottom: 16px;
  }

  .press-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .press-desc {
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .press-more-wrap {
    margin-top: 26px;
  }
  @media (max-width: 680px) {
  .press-grid.press-count-1,
  .press-grid.press-count-2,
  .press-grid.press-count-3,
  .press-grid.press-count-4 {
    grid-template-columns: 1fr;
  }
}

  /* ── POZOSTAŁE SEKCJE MOBILE ─────── */

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .cform-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-img-frame {
    height: 320px;
  }

  .about-pull {
    display: none;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-cta {
  display: inline-block;
  margin-top: 26px;
}
/* ── PRESS / MEDIA ───────────────────── */
.press {
  background: var(--bg2);
  padding: 96px 4%;
  border-top: 1px solid var(--border);
}

.press-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.press-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.press-intro .s-eyebrow {
  justify-content: center;
}

.press-intro .s-eyebrow::before {
  display: none;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.press-card {
  background: var(--bg2);
  padding: 32px 26px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .25s;
}

.press-card:hover {
  background: var(--bg3);
  transform: translateY(-3px);
}

.press-card::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.press-card:hover::after {
  transform: scaleX(1);
}

.press-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.press-source {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-date {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--f-serif);
  font-style: italic;
}

.press-title {
  font-family: var(--f-title);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 14px;
}

.press-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 26px;
}

.press-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-arrow {
  transition: transform .25s ease;
}

.press-card:hover .press-arrow {
  transform: translateX(5px);
}

.press-hidden {
  display: none;
}

.press.show-all .press-hidden {
  display: flex;
}

.press-more-wrap {
  text-align: center;
  margin-top: 34px;
}

.press-more-btn {
  background: transparent;
  cursor: pointer;
}

.press-less-text {
  display: none;
}

.press.show-all .press-more-text {
  display: none;
}

.press.show-all .press-less-text {
  display: inline;
}
/* ── PRESS RESPONSIVE FIX ────────────── */
@media (max-width: 1060px) {
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .press-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
  }

  .press-card {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 26px 22px;
  }

  .press-title,
  .press-desc {
    overflow-wrap: break-word;
    word-break: normal;
  }
/* ── PRIVACY NOTE ────────────── */
}
.form-privacy-note {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin: 10px 0 8px;
}

.form-privacy-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--border2);
  transition: color .2s, border-color .2s;
}

.form-privacy-note a:hover {
  color: var(--gold2);
  border-color: var(--gold);
}

/* ── PRIVACY NOTICE ─────────────────── */
.privacy-page {
  background: var(--bg2);
  min-height: 100vh;
  padding: 72px 4% 96px;
}

.privacy-inner {
  max-width: 820px;
  margin: 0 auto;
}
/* ── PRIVACY PAGE ─────────────────── */
.privacy-back {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
  transition: color .2s;
}

.privacy-back:hover {
  color: var(--gold2);
}

.privacy-content {
  margin-top: 36px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm);
}

.privacy-content h2 {
  font-family: var(--f-title);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.5;
  color: var(--cream);
  margin: 38px 0 14px;
}

.privacy-content p {
  margin-bottom: 16px;
}

.privacy-content ul {
  margin: 0 0 20px 22px;
}

.privacy-content li {
  margin-bottom: 8px;
  padding-left: 5px;
}

.privacy-content strong {
  color: var(--cream);
  font-weight: 500;
}

@media (max-width: 680px) {
  .privacy-page {
    padding: 46px 6% 64px;
  }

  .privacy-back {
    margin-bottom: 38px;
  }

  .privacy-content {
    font-size: 14px;
    line-height: 1.75;
  }

  .privacy-content h2 {
    font-size: 15px;
    margin-top: 30px;
  }
}

.press-hidden {
  display: none;
}

.press.show-all .press-hidden {
  display: flex;
}

.press-grid.press-count-1 {
  grid-template-columns: minmax(0, 380px);
  justify-content: center;
}

.press-grid.press-count-2 {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}

.press-grid.press-count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.press-grid.press-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── PRESS FINAL OVERRIDE ─────────────────────
   Fixes empty background areas when fewer than 4 active articles are displayed.
   Keep this block at the very end of the file. */
.press-grid.press-count-1 {
  grid-template-columns: minmax(0, 380px) !important;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.press-grid.press-count-2 {
  grid-template-columns: repeat(2, minmax(0, 380px)) !important;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.press-grid.press-count-3 {
  grid-template-columns: repeat(3, minmax(0, 360px)) !important;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.press-grid.press-count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.press-hidden {
  display: none !important;
}

.press.show-all .press-hidden {
  display: flex !important;
}

@media (max-width: 1060px) {
  .press-grid.press-count-1,
  .press-grid.press-count-2,
  .press-grid.press-count-3,
  .press-grid.press-count-4 {
    width: 100%;
    max-width: 100%;
  }

  .press-grid.press-count-1,
  .press-grid.press-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .press-grid.press-count-3,
  .press-grid.press-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .press-grid.press-count-1,
  .press-grid.press-count-2,
  .press-grid.press-count-3,
  .press-grid.press-count-4 {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }
}
/* ── CONTACT WITHOUT FORM ───────────── */
.contact-inner-simple {
  display: block;
  max-width: 720px;
  text-align: center;
}

.contact-inner-simple .s-eyebrow {
  justify-content: center;
}

.contact-inner-simple .s-eyebrow::before {
  display: none;
}

.contact-inner-simple .s-rule {
  margin-left: auto;
  margin-right: auto;
}

.contact-inner-simple .contact-desc {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-inner-simple .cdetails {
  max-width: 430px;
  margin: 0 auto;
  text-align: left;
}