/* ──────────────────────────────────────────────────────────
   ARGENTUM BIŻUTERIA — stylesheet
   Paleta: grafit / off-white / złoto
   Typografia: Cormorant Garamond (display) + Inter (body)
   ────────────────────────────────────────────────────────── */

:root {
  /* color tokens */
  --c-bg:           #faf7f2;
  --c-bg-warm:     #f1ebe1;
  --c-bg-warm-2:  #f1ebe1;
  --c-bg-dark:    #241f1a;
  --c-bg-dark-2:  #241f1a;
  --c-bg-dark-3:  #241f1a;
  --c-text:        #241f1a;
  --c-text-muted: #5c554c;
  --c-text-light:  #faf7f2;
  --c-gold:        #a9885a;
  --c-gold-light:  #c2a577;
  --c-gold-dark:   #8a6f49;
  --c-gold-soft:   rgba(169, 136, 90, 0.15);
  --c-line:        rgba(0, 0, 0, 0.08);
  --c-line-light:  rgba(255, 255, 255, 0.12);
  --shadow-sm:     0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:     0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg:     0 30px 60px -12px rgba(0, 0, 0, 0.18), 0 18px 36px -18px rgba(0, 0, 0, 0.18);
  --shadow-gold:   0 20px 50px -15px rgba(169, 136, 90, 0.35);

  /* type */
  --f-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-body:    'Jost', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;

  /* spacing rhythm */
  --s-1:  4px;
  --s-2:  8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* layout */
  --max-w: 1240px;
  --radius: 4px;
  --radius-lg: 14px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ────────  RESET  ──────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* ────────  REUSABLE  ──────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.eyebrow--gold { color: var(--c-gold); }

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: var(--s-4);
}
.h2 em { font-style: italic; color: var(--c-gold-dark); }
.h2--light { color: var(--c-text-light); }
.h2--light em { color: var(--c-gold); }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-text-muted);
  max-width: 56ch;
  line-height: 1.65;
}
.lead--light { color: rgba(238, 234, 224, 0.7); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn--gold {
  background: var(--c-gold);
  color: #241f1a;
  box-shadow: 0 8px 20px -8px rgba(169, 136, 90, 0.5);
}
.btn--gold:hover {
  color: #241f1a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(169, 136, 90, 0.6);
}
.btn--gold:hover::after { opacity: 1; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-text-light);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.btn--block { width: 100%; padding: 17px; }

/* ────────  SCROLL PROGRESS BAR  ──────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(0,0,0,0);
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold-dark) 0%, var(--c-gold-light) 50%, var(--c-gold) 100%);
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(169,136,90,0.4);
}

/* ────────  NAV  ──────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--s-5);
  background: rgba(250, 250, 247, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--c-line);
  padding: 10px var(--s-5);
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.nav__wordmark-main {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.nav.is-scrolled .nav__wordmark-main { color: var(--c-text); }
.nav__wordmark-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-top: 2px;
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: var(--s-6);
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav.is-scrolled .nav__links a { color: var(--c-text); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--c-text); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ────────  LANGUAGE SWITCHER  ──────── */
.lang-switcher {
  position: relative;
  margin-left: 16px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  padding: 6px 10px 6px 12px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 14px;
  color: inherit;
  font-family: inherit;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lang-current:hover { background: rgba(255,255,255,0.08); }
.nav.is-scrolled .lang-current:hover { background: rgba(0,0,0,0.05); }
.lang-current-flag { font-size: 16px; line-height: 1; }
.lang-current-code {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s var(--ease);
}
.nav.is-scrolled .lang-current-code { color: var(--c-text); }
.lang-chevron {
  opacity: 0.7;
  transition: transform 0.3s var(--ease);
  color: rgba(255,255,255,0.85);
}
.nav.is-scrolled .lang-chevron { color: var(--c-text); }
.lang-switcher.is-open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  list-style: none;
  margin: 0; padding: 6px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 12px 36px -10px rgba(0,0,0,0.20);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
  z-index: 1000;
}
.lang-switcher.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lang-menu li { list-style: none; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--c-text);
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
  letter-spacing: -0.005em;
}
.lang-menu button:hover { background: rgba(0,0,0,0.04); }
.lang-menu button.is-active {
  background: rgba(169,136,90,0.1);
  color: var(--c-gold-dark);
  font-weight: 500;
}
.lang-menu-flag { font-size: 18px; line-height: 1; }
.lang-menu-name { flex: 1; }

@media (max-width: 1024px) {
  .lang-switcher { margin-left: auto; margin-right: 12px; }
  .lang-current-code { display: none; }
  .lang-chevron { display: none; }
  .lang-current { padding: 6px 8px; }
}

/* ────────  HERO  ──────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--c-bg-dark);
}
.hero__cinematic {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  will-change: transform, opacity;
}
.hero__cinematic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.22);
  transform-origin: center 45%;
  will-change: transform;
  filter: brightness(0.78) contrast(1.08) saturate(1.08);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: screen;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(10,10,10,0.35) 70%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.95) 100%);
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(169,136,90,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-4);
  width: 100%;
  padding-top: 80px;
  will-change: transform, opacity;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.6;
}
.hero__wordmark {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: var(--s-5);
  line-height: 1;
}
.hero__wordmark em {
  font-style: italic;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
  color: #fff;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
  background: linear-gradient(180deg, #c2a577 0%, #a9885a 50%, #8a6f49 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin-bottom: var(--s-6);
  font-weight: 300;
}

/* word-by-word text reveal */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-reveal .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.word-reveal.is-visible .word > span {
  transform: translateY(0);
}
.word-reveal.is-visible .word:nth-child(2)  > span { transition-delay: 0.05s; }
.word-reveal.is-visible .word:nth-child(3)  > span { transition-delay: 0.1s; }
.word-reveal.is-visible .word:nth-child(4)  > span { transition-delay: 0.15s; }
.word-reveal.is-visible .word:nth-child(5)  > span { transition-delay: 0.2s; }
.word-reveal.is-visible .word:nth-child(6)  > span { transition-delay: 0.25s; }
.word-reveal.is-visible .word:nth-child(7)  > span { transition-delay: 0.3s; }
.word-reveal.is-visible .word:nth-child(8)  > span { transition-delay: 0.35s; }
.word-reveal.is-visible .word:nth-child(9)  > span { transition-delay: 0.4s; }
.word-reveal.is-visible .word:nth-child(10) > span { transition-delay: 0.45s; }
.word-reveal.is-visible .word:nth-child(11) > span { transition-delay: 0.5s; }
.word-reveal.is-visible .word:nth-child(12) > span { transition-delay: 0.55s; }
.hero__cta {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: block;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scroll-dot 2s var(--ease) infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ────────  SECTIONS  ──────── */
.section {
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.section--light {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(169, 136, 90, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
}
.section--dark {
  background:
    radial-gradient(ellipse at 20% 100%, rgba(169, 136, 90, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-bg-dark) 0%, var(--c-bg-dark-3) 100%);
  color: var(--c-text-light);
}
.section--dark .eyebrow { color: rgba(238, 234, 224, 0.55); }
.section__num {
  position: absolute;
  top: var(--s-6);
  right: var(--s-5);
  font-family: var(--f-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-text);
  opacity: 0.04;
  pointer-events: none;
  letter-spacing: -0.04em;
  z-index: 1;
}
.section--dark .section__num { color: #fff; opacity: 0.05; }
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--s-8);
  position: relative;
  z-index: 2;
}
.section__head .lead { margin: 0 auto; }
.section__head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.section__head .eyebrow::before,
.section__head .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section__head .eyebrow--gold::before,
.section__head .eyebrow--gold::after { background: var(--c-gold); opacity: 0.7; }
.container { position: relative; z-index: 2; }

/* ────────  TWO-COLUMN  ──────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.two-col__text > p { margin-bottom: var(--s-3); }
.two-col__text > p.lead { margin-bottom: var(--s-4); color: var(--c-text-muted); }
.section--dark .two-col__text > p { color: rgba(238, 234, 224, 0.75); }
.two-col__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-warm);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s var(--ease);
}
.two-col__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.two-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.two-col__media:hover { transform: translateY(-4px); }
.two-col__media:hover img { transform: scale(1.05); }

.stats {
  display: flex;
  gap: var(--s-6);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 500;
  background: linear-gradient(135deg, var(--c-gold-dark) 0%, var(--c-gold) 50%, var(--c-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: var(--s-2);
  font-weight: 500;
}

/* ────────  OFFER  ──────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.offer {
  background: linear-gradient(180deg, var(--c-bg-dark-2) 0%, var(--c-bg-dark-3) 100%);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(169,136,90,0) 0%, rgba(169,136,90,0) 60%, rgba(169,136,90,0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.offer:hover {
  transform: translateY(-6px);
  border-color: rgba(169, 136, 90, 0.35);
  box-shadow: var(--shadow-gold);
}
.offer:hover::before { opacity: 1; }
.offer__img {
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.offer__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.offer:hover .offer__img::after { opacity: 1; }
.offer__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.offer:hover .offer__img img { transform: scale(1.08); }
.offer__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer__title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--s-3);
  line-height: 1.15;
}
.offer__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(238, 234, 224, 0.7);
  margin-bottom: var(--s-4);
  flex: 1;
}
.offer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
  display: inline-flex;
  gap: 6px;
}
.offer__link:hover {
  gap: 12px;
  color: #fff;
}

.offer-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-line-light);
}
.offer-extra__col h4 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-gold);
  margin-bottom: var(--s-2);
}
.offer-extra__col p {
  font-size: 15px;
  color: rgba(238, 234, 224, 0.65);
  line-height: 1.65;
}

/* ────────  HISTORY / TIMELINE  ──────── */
.history__head {
  text-align: center;
  max-width: 700px;
  margin: var(--s-9) auto var(--s-7);
}
.history__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-top: var(--s-3);
  text-wrap: balance;
}
.history__title em {
  font-style: italic;
  color: var(--c-gold-dark);
}
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  position: relative;
  counter-reset: timeline;
  padding-top: var(--s-5);
}
.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(169,136,90,0.5) 12%,
    rgba(169,136,90,0.5) 88%,
    transparent 100%);
}
.timeline__item {
  position: relative;
  text-align: center;
  padding: 0 var(--s-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}
.timeline__item::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-gold);
  margin-bottom: var(--s-3);
  box-shadow: 0 0 0 6px var(--c-bg), 0 0 0 7px rgba(169,136,90,0.15);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
  position: relative;
  z-index: 1;
}
.timeline__item:hover::before {
  background: var(--c-gold);
  transform: scale(1.2);
}
.timeline__year {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-gold-dark) 0%, var(--c-gold) 50%, var(--c-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--s-1);
}
.timeline__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.2;
  text-wrap: balance;
}
.timeline__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-text-muted);
  text-wrap: pretty;
  max-width: 28ch;
  margin: 0 auto;
}

/* ────────  PROCESS  ──────── */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  counter-reset: process;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(169,136,90,0.4) 20%, rgba(169,136,90,0.4) 80%, transparent 100%);
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.process__step:hover {
  transform: translateY(-6px);
  border-color: rgba(169, 136, 90, 0.5);
  box-shadow: var(--shadow-gold);
}
.process__num {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--c-gold-dark);
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(169, 136, 90, 0.4);
  border-radius: 999px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.process__icon {
  color: var(--c-gold-dark);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--s-2) 0 var(--s-1);
  transition: transform 0.6s var(--ease), color 0.6s var(--ease);
}
.process__icon svg { width: 100%; height: 100%; }
.process__step:hover .process__icon {
  transform: scale(1.08) rotate(-3deg);
  color: var(--c-gold);
}
.process__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-text);
  text-wrap: balance;
}
.process__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-muted);
  text-wrap: pretty;
}

/* ────────  ANIMATED DIVIDERS  ──────── */
.divider {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.divider--on-dark { background: var(--c-bg-dark); }
.divider__svg {
  width: 100%;
  max-width: 720px;
  height: 60px;
  display: block;
}
.divider__line {
  stroke: var(--c-gold-dark);
  stroke-width: 1;
  opacity: 0.45;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  transition: stroke-dashoffset 1.8s var(--ease-out);
}
.divider--on-dark .divider__line { stroke: var(--c-gold); opacity: 0.55; }
.divider__line--right { transition-delay: 0.1s; }
.divider__diamond {
  fill: var(--c-gold);
  opacity: 0;
  transform-origin: 300px 20px;
  transform: scale(0) rotate(-90deg);
  transition: opacity 0.8s var(--ease-out) 0.9s, transform 1s var(--ease-out) 0.9s;
}
.divider.is-visible .divider__line { stroke-dashoffset: 0; }
.divider.is-visible .divider__diamond {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ────────  GALLERY  ──────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: var(--s-3);
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--c-bg-warm);
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  box-shadow: var(--shadow-sm);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.gallery__item:nth-child(1)  { grid-column: span 3; grid-row: span 3; }
.gallery__item:nth-child(2)  { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(3)  { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(4)  { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(5)  { grid-column: span 2; grid-row: span 3; }
.gallery__item:nth-child(6)  { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(7)  { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(8)  { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(9)  { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(10) { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(11) { grid-column: span 2; grid-row: span 3; }
.gallery__item:nth-child(12) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(13) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(14) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(15) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(16) { grid-column: span 2; grid-row: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-4);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  z-index: 2;
  pointer-events: none;
  line-height: 1.3;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__item:hover img {
  transform: scale(1.07);
  filter: brightness(1.04);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}

/* ────────  CONTACT FORM  ──────── */
.contact {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-light);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.contact li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.45);
}
.contact__value {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--c-text-light);
  transition: color 0.3s var(--ease);
}
a.contact__value:hover { color: var(--c-gold); }

.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line-light);
  padding: var(--s-6);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.field span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.55);
}
.field input,
.field textarea {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line-light);
  padding: 10px 0;
  resize: vertical;
  transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
}
.field textarea { min-height: 80px; }
.form__note {
  font-size: 13px;
  color: var(--c-gold);
  min-height: 1.2em;
}

/* ────────  FOOTER  ──────── */
.footer {
  background: var(--c-bg-dark);
  border-top: 1px solid var(--c-line-light);
  padding: var(--s-6) 0;
  color: rgba(238, 234, 224, 0.5);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--s-2);
}
.footer__wordmark {
  font-family: var(--f-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.92);
  font-weight: 400;
  margin: var(--s-1) 0 var(--s-3);
  line-height: 1;
}
.footer__wordmark em {
  font-style: italic;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
}
.footer__copy { font-size: 13px; }
.footer__addr { font-size: 13px; letter-spacing: 0.05em; }

/* ────────  LIGHTBOX  ──────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.lightbox.is-open img {
  opacity: 1;
  transform: scale(1);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox__close { top: 24px; right: 28px; font-size: 28px; }
.lightbox__nav--prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255,255,255,0.3);
}
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* ────────  BLOG — reveal WYŁĄCZONY (treść od razu widoczna) ──────── */
/* Fallback: gdyby JS nie zdążył ustawić .is-visible na .reveal,
   na stronach blog treść i tak jest natychmiast widoczna. */
.blog-card,
.blog-card.reveal,
body:has(.blog-card) .reveal,
body:has(.article) .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ────────  BLOG ──────── */
.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card a { display: block; color: inherit; text-decoration: none; }
.blog-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--c-bg-warm);
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px 26px 28px; }
.blog-card__meta {
  font-size: 12px;
  color: var(--c-gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-card__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text-muted);
}

/* Blog article page */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  background: #faf7f2;
}
.article__meta {
  font-size: 13px;
  color: var(--c-gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.article__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-text);
  margin-bottom: 24px;
}
.article__lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--c-text-muted);
  margin-bottom: 40px;
  font-weight: 400;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
}
.article__hero {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body { font-size: 17px; line-height: 1.7; color: var(--c-text); }
.article__body h2 {
  font-family: var(--f-display);
  font-size: 30px; font-weight: 400;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 48px 0 16px;
}
.article__body h3 {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500;
  color: var(--c-text);
  margin: 32px 0 12px;
}
.article__body p { margin: 0 0 20px; }
.article__body ul, .article__body ol { margin: 0 0 24px 24px; }
.article__body li { margin-bottom: 8px; line-height: 1.6; }
.article__body strong { color: var(--c-text); font-weight: 500; }
.article__body a { color: var(--c-gold-dark); border-bottom: 1px solid var(--c-gold-soft); }
.article__body a:hover { color: var(--c-gold); }
.article__body blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.article__cta {
  margin-top: 56px;
  padding: 40px 32px;
  background: var(--c-bg-warm);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article__cta h3 {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 400;
  color: var(--c-text);
  margin-bottom: 12px;
}
.article__cta p { color: var(--c-text-muted); margin-bottom: 24px; }

/* ────────  FAQ ──────── */
.section--faq { background: var(--c-bg); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-3) 0;
  transition: background 0.3s var(--ease);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  padding: var(--s-3) 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--c-gold);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 {
  font-family: var(--f-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  flex: 1;
}
.faq-item summary:hover h3 { color: var(--c-gold-dark); }
.faq-answer {
  padding: 0 0 var(--s-3);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 780px;
}
.faq-answer p { margin: 0 0 var(--s-3); }
.faq-answer p:last-child { margin: 0; }
.faq-answer a { color: var(--c-gold-dark); border-bottom: 1px solid var(--c-gold-soft); }
.faq-answer a:hover { color: var(--c-gold); }
.faq-answer strong { color: var(--c-text); font-weight: 500; }

/* ────────  REVEAL ANIMATIONS — Apple-cinematic ──────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(6px);
  transition:
    opacity 1.2s var(--ease-out),
    transform 1.2s var(--ease-out),
    filter 1.2s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger: when multiple reveals follow each other, second/third gets slight delay */
.reveal.is-visible + .reveal.is-visible {
  transition-delay: 0.08s;
}

/* Subtle floating animation for decorative elements (diamond, icons) */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes goldShimmer {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

.divider__diamond {
  transform-origin: center;
  animation: floatGentle 6s ease-in-out infinite;
}
.hero__scroll {
  animation: floatGentle 3s ease-in-out infinite;
}

/* Premium hover on offer cards — bigger lift, smoother */
.offer { transition: transform 0.7s var(--ease-out), border-color 0.6s var(--ease), box-shadow 0.7s var(--ease-out); }
.offer:hover { transform: translateY(-10px) scale(1.005); }

/* Smooth scroll for everything */
html { scroll-behavior: smooth; }

/* Bigger generous spacing for sections on large screens */
@media (min-width: 1100px) {
  .section { padding: 140px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero__scroll span { animation: none; }
  .divider__diamond, .hero__scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* ────────  RESPONSIVE  ──────── */
@media (max-width: 1100px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .timeline::before { display: none; }
}
@media (max-width: 1024px) {
  .section { padding: var(--s-8) 0; }
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .two-col__media { aspect-ratio: 16 / 10; }
  .offer-extra { grid-template-columns: 1fr; gap: var(--s-4); }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
  }
  .gallery__item,
  .gallery__item:nth-child(n) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .stats { gap: var(--s-4); flex-wrap: wrap; }
  .section__num { display: none; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 18px; }

  .nav { padding: 12px var(--s-3); }
  .nav__toggle { display: flex !important; margin-left: auto; }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    gap: var(--s-5);
    padding: 100px var(--s-5) var(--s-5);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { color: #fff !important; font-size: 18px; }

  .hero__title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .form { padding: var(--s-4); }
}
@media (max-width: 600px) {
  .nav__wordmark-main { font-size: 22px; }
  .nav__wordmark-sub { font-size: 11px; }
}
@media (max-width: 600px) {
  .offer-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: var(--s-5); }
  .divider__svg { height: 40px; }
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery__item,
  .gallery__item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
  }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; min-width: 140px; }
  .nav__wordmark-main { font-size: 20px; }
  .nav__wordmark-sub { font-size: 10px; }
  .footer__wordmark { font-size: 1.3rem; }
  .hero__eyebrow::before,
  .hero__eyebrow::after { width: 18px; }
}
