/* ============ PERŁA — warm editorial / refined luxury ============ */
:root {
  --paper:      #f4f0eb;
  --paper-2:    #ece5da;
  --paper-3:    #e3dacd;
  --ink:        #232322;
  --ink-soft:   #44423d;
  --taupe:      #a79e8f;
  --taupe-deep: #857c6c;
  --gold:       #9a7b4f;
  --line:       rgba(35,35,34,.14);
  --line-soft:  rgba(35,35,34,.08);
  --shadow-lg:  0 30px 70px -30px rgba(35,35,34,.45);
  --shadow-sm:  0 14px 36px -22px rgba(35,35,34,.5);
  --nav-h: 76px;
  --maxw: 1200px;
}

*,*::before,*::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; margin: 0; }
em { font-style: italic; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Grain texture overlay */
body::before {
  content:""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-size: .76rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; color: var(--taupe-deep); margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.eyebrow::before { content:""; width: 34px; height: 1px; background: var(--taupe); display: inline-block; }

.section-title {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  line-height: 1.04; letter-spacing: -0.015em; font-weight: 300;
}
.section-title em { font-weight: 500; }

.section-head { max-width: var(--maxw); margin: 0 auto 3.2rem; padding: 0 clamp(1.2rem,5vw,3rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

section { position: relative; }
#about, #services, #gallery, #reviews, #contact {
  padding: clamp(4.5rem, 8vh, 6.5rem) 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600;
  font-size: .92rem; letter-spacing: .02em;
  padding: 1rem 1.9rem; border-radius: 2px; cursor: pointer;
  text-decoration: none; transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: var(--nav-h);
  padding: 0 clamp(1.2rem,5vw,3rem);
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--paper); transition: color .4s; }
.brand-mark {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  border: 1px solid currentColor; border-radius: 50%;
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-style: italic;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: 'Fraunces', serif; font-size: 1.4rem; }
.brand-text small { font-family: 'Schibsted Grotesk', sans-serif; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; margin-top: .35rem; opacity: .85; }

.nav-links { margin-left: auto; display: flex; gap: 2rem; }
.nav-links a {
  color: var(--paper); text-decoration: none; font-size: .9rem; font-weight: 500;
  letter-spacing: .01em; position: relative; padding: .3rem 0; transition: color .4s, opacity .3s;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.nav-links a::after { content:""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: currentColor; transition: width .3s ease; }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: .55rem; color: var(--paper);
  text-decoration: none; font-weight: 600; font-size: .9rem; padding: .6rem 1.05rem;
  border: 1px solid rgba(244,240,235,.45); border-radius: 2px;
  text-shadow: 0 1px 12px rgba(0,0,0,.45); transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); text-shadow: none; }

/* scrolled state */
.nav.scrolled {
  background: rgba(244,240,235,.88);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav.scrolled .brand,
.nav.scrolled .nav-links a,
.nav.scrolled .nav-cta { color: var(--ink); text-shadow: none; }
.nav.scrolled .nav-cta { border-color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav.scrolled .nav-burger span { background: var(--ink); }

.nav-burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 26px; height: 2px; background: var(--paper); display: block; transition: background .3s; }

.nav-mobile { display: none; }

/* ---------- HERO ---------- */
#hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: calc(var(--nav-h) + 2rem) clamp(1.2rem,5vw,3rem) 4rem;
  overflow: hidden;
}
.hero-stage { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.3s ease; transform: scale(1.06);
}
.hero-slide.is-active { opacity: 1; animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,19,17,.82) 0%, rgba(20,19,17,.5) 45%, rgba(20,19,17,.25) 100%),
    linear-gradient(180deg, rgba(20,19,17,.4) 0%, transparent 30%, rgba(20,19,17,.55) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
  color: var(--paper); font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; margin: 0 0 1.6rem; text-shadow: 0 1px 16px rgba(0,0,0,.6);
}
.hero-title {
  color: var(--paper); font-weight: 300;
  font-size: clamp(2.7rem, 1.4rem + 6vw, 6rem); line-height: 1.02; letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,.5), 0 1px 10px rgba(0,0,0,.35);
}
.hero-title em { font-weight: 500; }
.hero-lead {
  color: rgba(244,240,235,.93); max-width: 560px; margin: 1.8rem 0 2.4rem;
  font-size: clamp(1rem, .95rem + .3vw, 1.18rem); line-height: 1.6;
  text-shadow: 0 1px 18px rgba(0,0,0,.6);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions .btn-ghost { color: var(--paper); border-color: rgba(244,240,235,.6); }
.hero-actions .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.hero-labels {
  position: absolute; z-index: 2; right: clamp(1.2rem,5vw,3rem); bottom: 3rem;
  display: flex; flex-direction: column; gap: .2rem; align-items: flex-end;
}
.hero-label {
  display: grid; grid-template-columns: auto auto; column-gap: .7rem; align-items: baseline;
  padding: .5rem .9rem; opacity: .4; transition: opacity .5s ease;
  text-align: right; background: rgba(20,19,17,.34); backdrop-filter: blur(4px);
  border-right: 2px solid transparent; border-radius: 2px;
}
.hero-label.is-active { opacity: 1; border-right-color: var(--paper); }
.hero-label-no { font-family: 'Fraunces', serif; font-style: italic; color: rgba(244,240,235,.7); font-size: .9rem; grid-row: span 2; }
.hero-label-key { color: var(--paper); font-weight: 600; font-size: 1rem; letter-spacing: .02em; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.hero-label-sub { grid-column: 2; color: rgba(244,240,235,.8); font-size: .76rem; text-shadow: 0 1px 10px rgba(0,0,0,.6); }

.hero-scroll {
  position: absolute; z-index: 2; left: clamp(1.2rem,5vw,3rem); bottom: 2.4rem;
  display: inline-flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--paper); text-decoration: none; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.hero-scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ---------- ABOUT ---------- */
.about-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,3rem);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center;
}
.about-text { color: var(--ink-soft); margin: 1.4rem 0 0; max-width: 46ch; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; margin-top: 2.6rem; }
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-no { font-family: 'Fraunces', serif; font-size: clamp(1.9rem,1.3rem+1.6vw,2.7rem); font-weight: 400; line-height: 1; }
.stat-label { font-size: .76rem; letter-spacing: .04em; color: var(--taupe-deep); text-transform: uppercase; }

.about-figure { position: relative; margin: 0; }
.about-figure img { width: 100%; height: 100%; max-height: 70vh; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow-lg); }
.about-figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem; display: flex; flex-direction: column;
  background: rgba(20,19,17,.6); color: var(--paper); padding: .55rem .9rem; border-radius: 2px;
  font-size: .82rem; backdrop-filter: blur(6px);
}
.about-figure figcaption span { font-size: .66rem; opacity: .75; letter-spacing: .08em; text-transform: uppercase; margin-top: .15rem; }

/* ---------- SERVICES ---------- */
#services { background: var(--paper-2); }
.services-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,3rem);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
}
.svc-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 3px;
  padding: 2.2rem 1.9rem; transition: transform .4s ease, box-shadow .4s ease, border-color .4s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--line); }
.svc-ico {
  width: 56px; height: 56px; color: var(--gold); margin-bottom: 1.4rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--paper-3); border: 1px solid var(--line-soft);
  transition: background .4s ease, color .4s ease;
}
.svc-ico svg { width: 28px; height: 28px; stroke-width: 1.75; }
.svc-card:hover .svc-ico { background: var(--ink); color: var(--paper); }
.svc-card h3 { font-size: 1.45rem; font-weight: 400; margin-bottom: .6rem; letter-spacing: -0.01em; }
.svc-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

.rate-band {
  max-width: var(--maxw); margin: 3rem auto 0; padding: 2.4rem clamp(1.6rem,4vw,3rem);
  background: var(--ink); color: var(--paper); border-radius: 4px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: center;
}
.rate-head h3 { font-size: 1.8rem; font-weight: 400; margin-bottom: .6rem; }
.rate-head p { color: rgba(244,240,235,.72); font-size: .92rem; margin: 0; max-width: 38ch; }
.rate-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 2.5rem; }
.rate-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(244,240,235,.16); }
.rate-list span { color: rgba(244,240,235,.85); font-size: .95rem; }
.rate-list b { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.35rem; color: var(--paper); }

/* ---------- GALLERY ---------- */
.masonry {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,3rem);
  column-count: 3; column-gap: 1.1rem;
}
.ph { position: relative; margin: 0 0 1.1rem; break-inside: avoid; overflow: hidden; border-radius: 3px; cursor: zoom-in; }
.ph img { width: 100%; height: auto; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.ph::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,19,17,.72) 100%); opacity: 0; transition: opacity .4s; }
.ph figcaption {
  position: absolute; left: 1rem; bottom: .9rem; z-index: 2; color: var(--paper);
  font-size: .85rem; font-weight: 500; opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s; text-shadow: 0 1px 16px rgba(0,0,0,.8);
}
.ph:hover img { transform: scale(1.06); }
.ph:hover::after, .ph:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- REVIEWS ---------- */
#reviews { background: var(--paper-3); }
.reviews-grid {
  max-width: 980px; margin: 0 auto; padding: 0 clamp(1.2rem,5vw,3rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
}
.review { margin: 0; background: var(--paper); padding: 2.4rem; border-radius: 3px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: .15em; font-size: 1.05rem; margin-bottom: 1.2rem; }
.star-dim { color: var(--taupe); opacity: .4; }
.review blockquote { margin: 0 0 1.4rem; font-family: 'Fraunces', serif; font-size: 1.3rem; line-height: 1.4; font-weight: 300; }
.review figcaption { font-weight: 600; font-size: .95rem; }
.review figcaption span { display: block; font-weight: 400; color: var(--taupe-deep); font-size: .8rem; margin-top: .2rem; }

/* ---------- CONTACT ---------- */
.contact-banner { max-width: var(--maxw); margin: 0 auto 3rem; padding: 0 clamp(1.2rem,5vw,3rem); }
.contact-banner img { width: 100%; max-height: 38vh; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-sm); }
.contact-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,3rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: stretch;
}
.contact-intro { color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 40ch; }
.contact-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.contact-list li { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.ci-key { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe-deep); font-weight: 600; padding-top: .15rem; }
.ci-val { color: var(--ink); }
.ci-val a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .3s; }
.ci-val a:hover { border-color: var(--ink); }

.contact-map {
  position: relative; min-height: 340px; max-height: 50vh;
  background: var(--paper-3); border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.contact-map::before {
  content:"Mapa dojazdu"; position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--taupe-deep); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
}
.contact-map iframe { position: relative; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- FOOTER ---------- */
#footer { background: var(--ink); color: var(--paper); padding: clamp(3rem,6vh,4rem) 0 2rem; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,3rem);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand .brand-mark { color: var(--paper); width: 46px; height: 46px; }
.footer-brand strong { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 400; }
.footer-brand p { margin: .2rem 0 0; font-size: .8rem; color: rgba(244,240,235,.65); }
.footer-nav { display: flex; gap: 1.6rem; justify-self: center; }
.footer-nav a { color: rgba(244,240,235,.85); text-decoration: none; font-size: .9rem; transition: color .3s; }
.footer-nav a:hover { color: var(--paper); }
.footer-meta { justify-self: end; text-align: right; font-size: .82rem; color: rgba(244,240,235,.6); }
.footer-meta p { margin: 0 0 .3rem; }
.footer-copy { margin-top: 1rem !important; font-size: .76rem; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999; display: none;
  background: rgba(15,14,12,.94); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 84vh; object-fit: contain; border-radius: 3px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close, .lb-nav {
  position: absolute; background: rgba(244,240,235,.1); color: var(--paper); border: 1px solid rgba(244,240,235,.25);
  cursor: pointer; display: grid; place-items: center; border-radius: 50%; transition: background .3s, transform .3s;
}
.lb-close { top: 1.4rem; right: 1.4rem; width: 48px; height: 48px; font-size: 1.7rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 1.4rem; } .lb-next { right: 1.4rem; }
.lb-close:hover, .lb-nav:hover { background: rgba(244,240,235,.25); }
.lb-caption { position: absolute; bottom: 1.6rem; left: 0; right: 0; text-align: center; color: rgba(244,240,235,.85); font-size: .9rem; }

/* ---------- REVEAL (state set by JS only) ---------- */
.js-reveal { opacity: 0; transform: translateY(28px); }
.js-reveal.in { opacity: 1; transform: none; transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* visual styling only — visibility is controlled by Alpine x-show (inline display) */
  .nav-mobile {
    display: block; background: rgba(244,240,235,.97); backdrop-filter: blur(14px);
    padding: 1rem clamp(1.2rem,5vw,3rem) 1.6rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
  }
  .nav-mobile a { display: block; padding: .85rem 0; text-decoration: none; color: var(--ink); font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-mobile-call { font-weight: 600; color: var(--gold) !important; border-bottom: 0 !important; }
  .nav:not(.scrolled) { background: rgba(20,19,17,.3); backdrop-filter: blur(8px); }

  .about-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-figure { order: -1; }
  .about-figure img { max-height: 50vh; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .rate-band { grid-template-columns: 1fr; gap: 1.6rem; }
  .masonry { column-count: 2; }
  .reviews-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-nav { justify-self: start; }
  .footer-meta { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .rate-list { grid-template-columns: 1fr; }
  /* labels out of absolute flow on mobile so they never overlap the CTAs */
  .hero-labels {
    position: static; margin-top: 2.2rem; left: auto; right: auto; bottom: auto;
    flex-direction: row; flex-wrap: wrap; gap: .5rem; align-items: stretch;
  }
  .hero-label { text-align: left; opacity: .85; padding: .45rem .7rem; }
  .hero-label-no { grid-row: span 2; }
  .hero-scroll { display: none; }
  .contact-list li { grid-template-columns: 1fr; gap: .3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; }
  .js-reveal { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto; }
}

/* ============ SUBPAGES (uslugi / o-nas) ============ */
.subhead {
  padding: calc(var(--nav-h) + 4rem) clamp(1.2rem,5vw,3rem) clamp(3rem,6vh,4.5rem);
  background: var(--paper-2); text-align: center; border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.subhead .eyebrow { justify-content: center; }
.subhead h1 {
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.9rem); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.02em;
}
.subhead h1 em { font-weight: 500; }
.subhead-lead { max-width: 58ch; margin: 1.5rem auto 0; color: var(--ink-soft); }

.offer-list {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem,7vh,5.5rem) clamp(1.2rem,5vw,3rem) clamp(2rem,4vh,3rem);
  display: flex; flex-direction: column; gap: clamp(3rem,6vh,5rem);
}
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.offer:nth-child(even) .offer-media { order: -1; }
.offer-media { margin: 0; }
.offer-media img { width: 100%; height: 100%; max-height: 58vh; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow-sm); }
.offer-no { font-family: 'Fraunces', serif; font-style: italic; color: var(--taupe-deep); font-size: 1.15rem; display: block; margin-bottom: .7rem; }
.offer h2 { font-size: clamp(1.7rem,1.2rem+1.6vw,2.5rem); font-weight: 300; letter-spacing: -0.01em; line-height: 1.08; }
.offer h2 em { font-weight: 500; }
.offer p { color: var(--ink-soft); margin: 1.1rem 0 0; }
.offer .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.offer .tag { font-size: .78rem; letter-spacing: .03em; padding: .4rem .85rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); }

.offer-cards {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(1.2rem,5vw,3rem) clamp(3.5rem,7vh,5.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.offer-card { background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: 3px; padding: 2.4rem; transition: transform .4s ease, box-shadow .4s ease; }
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.offer-card .svc-ico { margin-bottom: 1.3rem; }
.offer-card h2 { font-size: 1.7rem; font-weight: 400; letter-spacing: -0.01em; }
.offer-card p { color: var(--ink-soft); margin-top: .9rem; }

.subcta { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(3.2rem,7vh,5rem) clamp(1.2rem,5vw,3rem); }
.subcta h2 { font-size: clamp(1.8rem,1.3rem+1.6vw,2.6rem); font-weight: 300; color: var(--paper); line-height: 1.1; }
.subcta h2 em { font-weight: 500; }
.subcta p { color: rgba(244,240,235,.75); max-width: 48ch; margin: 1.1rem auto 1.9rem; }
.subcta .btn-primary { background: var(--paper); color: var(--ink); }
.subcta .btn-primary:hover { background: var(--gold); color: var(--paper); }

@media (max-width: 760px) {
  .offer { grid-template-columns: 1fr; gap: 1.6rem; }
  .offer:nth-child(even) .offer-media { order: 0; }
  .offer-media { order: -1; }
  .offer-media img { max-height: 42vh; }
  .offer-cards { grid-template-columns: 1fr; }
}
