/* ==========================================================
   NM BAU – shared stylesheet for sub-pages (package pages)
   Mirrors the design tokens, nav, footer and motion of index.html
   so every page feels like one site. Page-specific blocks live
   inline in each HTML file.
   ========================================================== */

/* ==========================================================
   CSS VARIABLES – light warm luxury palette
   ========================================================== */
:root {
  --bg:            #FAFAF7;
  --bg-cream:      #F0EAD8;
  --bg-dark:       #1C1917;
  --bg-dark2:      #252220;
  --bg-card:       #FFFFFF;
  --border:        #DDD8CA;
  --border-subtle: #EDEAE2;
  --accent:        #B8860B;
  --accent-h:      #D4A017;
  --accent-dim:    rgba(184,134,11,0.12);
  --text:          #1C1917;
  --text-2:        #57534E;
  --text-3:        #9C9690;
  --on-dark:       #F5F0E8;
  --on-dark-2:     rgba(245,240,232,0.65);
  --on-dark-3:     rgba(245,240,232,0.38);
  --nav-h:         92px;
  --max-w:         1240px;
  --pad-x:         clamp(1.25rem, 5vw, 3.25rem);
  --section-py:    clamp(5rem, 10vw, 8.5rem);
  --pill:          50px;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;
  --font-brand:    'Montserrat', system-ui, sans-serif;
}

/* ==========================================================
   RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ==========================================================
   LAYOUT UTILITIES
   ========================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { padding: var(--section-py) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text);
  margin-bottom: 1.125rem;
}
.section-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
}

/* ==========================================================
   BUTTONS – pill shape
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-radius: var(--pill);
  transition: all 0.26s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.22s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #FAFAF7;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(184,134,11,0.22);
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184,134,11,0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.btn-outline-light {
  background: transparent;
  color: var(--on-dark);
  border: 1.5px solid rgba(245,240,232,0.35);
  border-radius: var(--pill);
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 500;
  cursor: pointer; transition: all 0.26s ease; white-space: nowrap; line-height: 1;
}
.btn-outline-light svg { width:16px; height:16px; flex-shrink:0; transition: transform 0.22s ease; }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); background: rgba(184,134,11,0.08); }
.btn-outline-light:hover svg { transform: translateX(3px); }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(1.5deg); }
  66%       { transform: translateY(6px) rotate(-1deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%       { transform: translateY(-14px) rotate(-2deg) scale(1.03); }
}
@keyframes gold-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; }
}

/* ==========================================================
   NAVIGATION – frosted, hides on scroll-down
   ========================================================== */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(240,234,216,0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(28,25,23,0.05);
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1),
              background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
#nav.nav-hidden { transform: translateY(-110%); }
#nav.scrolled {
  background: rgba(236,228,208,0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(28,25,23,0.09);
}

.nav-inner {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0 clamp(1.25rem, 2.5vw, 2.25rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 2vw, 2.25rem);
}

/* 3-zone nav: logo zone (flex:1 left) · links (natural width, truly centred) · actions zone (flex:1 right) */
.nav-logo { flex: 1 0 auto; display: block; line-height: 0; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: clamp(1.4rem, 2.4vw, 2.5rem);
  list-style: none;
  margin: 0;
}

/* Right-hand action cluster: city · phone · CTA · language, pinned to the far right. */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 1.5vw, 1.6rem);
  flex: 1 0 auto;
}

/* City / service-area badge in the nav right zone */
.nav-city {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.nav-city svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

/* Szolgáltatások dropdown */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 0.32rem; }
.nav-caret { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.28s ease; }
.has-dropdown:hover > a .nav-caret,
.has-dropdown:focus-within > a .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -0.9rem;
  margin-top: 0;
  padding: 0.4rem;
  min-width: 230px;
  list-style: none;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(28, 25, 23, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 120;
}
/* invisible hover bridge so the menu doesn't close in the gap */
.has-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 0.9rem; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover,
.nav-dropdown a.current { background: var(--accent-dim); color: var(--accent); }
/* "Összes szolgáltatás" overview link – flagged so it's clearly clickable */
.nav-dropdown a.nav-dd-all {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  color: var(--accent); font-weight: 600;
  margin-bottom: 0.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border); border-radius: 8px 8px 0 0;
}
.nav-dropdown a.nav-dd-all svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown a.nav-dd-all:hover svg { transform: translateX(3px); }

/* ---- Scroll progress bar (sticky, top of viewport) ---- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; background: transparent; }
.scroll-progress-fill { height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--gold, #c8a96e), var(--accent)); transition: transform 0.08s linear; }

/* ---- Back-to-top button (appears after scrolling) ---- */
.to-top {
  position: fixed; left: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 46px; height: 46px; border-radius: 50%; z-index: 140;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card, #fff); color: var(--text); border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(28,25,23,0.18); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s, background 0.2s, color 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.to-top svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) { .scroll-progress-fill, .to-top { transition: none; } }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.current { color: var(--text); }
.nav-links a.current::after { transform: scaleX(1); }

.nav-cta { font-size: 0.8125rem; padding: 0.625rem 1.25rem; flex-shrink: 0; }

/* Click-to-call in the header (always visible) */
.nav-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--text); white-space: nowrap; flex-shrink: 0; transition: color 0.2s; }
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.nav-phone:hover { color: var(--accent); }
/* Two stacked, tappable numbers (HU + AT) in the header chip */
.nav-phone .np-text { display: flex; flex-direction: column; line-height: 1.3; font-size: 0.8rem; }
.nav-phone .np-text a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nav-phone .np-text a:hover { color: var(--accent); }
/* Country-code label for the dual HU/AT phone numbers */
.cc { font-size: 0.72em; font-weight: 700; letter-spacing: 0.03em; color: var(--accent); margin-right: 0.12em; }
.nav-mobile-phone { font-size: 1.5rem !important; font-weight: 600; color: var(--accent) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.34s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease, width 0.34s cubic-bezier(0.16,1,0.3,1);
}
/* middle bar is a touch shorter for a tidier resting state */
.nav-burger span:nth-child(2) { width: 18px; align-self: center; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { width: 24px; opacity: 0; transform: scaleX(0.2); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Compact dropdown panel anchored under the nav – not a full-screen takeover */
.nav-mobile {
  position: fixed;
  top: calc(var(--nav-h) - 10px);
  right: var(--pad-x);
  left: auto;
  z-index: 199;
  width: min(300px, calc(100vw - 2 * var(--pad-x)));
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(28,25,23,0.20);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.32s;
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.16,1,0.3,1), visibility 0s;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  padding: 0.8rem 0.95rem;
  border-radius: 9px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-mobile a:not(:last-child) {
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.nav-mobile a:hover { color: var(--accent); background: var(--accent-dim); }
.nav-mobile-phone { font-size: 1.1rem !important; margin-top: 0.2rem; }
@media (prefers-reduced-motion: reduce) {
  .nav-mobile, .nav-burger span { transition-duration: 0.01ms; }
}

/* ---------- Language switcher (HU / EN / DE) ---------- */
.lang-switch {
  display: inline-flex; align-items: stretch; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: var(--pill);
  padding: 3px; background: var(--bg-card);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  /* a hair of extra separation + a faint rule groups it as its own control */
  margin-left: 0.35rem;
  position: relative;
}
.lang-switch::before {
  content: ''; position: absolute; left: -0.55rem; top: 50%;
  transform: translateY(-50%); width: 1px; height: 20px;
  background: var(--border);
}
@media (max-width: 1200px) { .lang-switch::before { display: none; } }
.lang-btn {
  font-family: inherit; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  line-height: 1; text-transform: uppercase; color: var(--text-3);
  padding: 0.36rem 0.6rem; border: none; background: none; border-radius: calc(var(--pill) - 3px);
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 4px rgba(184, 134, 11, 0.35);
}

/* Tablet / narrow desktop: keep the whole nav cluster on one line before the
   hamburger kicks in, so the (longest, Hungarian) CTA never clips. */
@media (max-width: 1300px) {
  .nav-links { gap: clamp(1.1rem, 1.8vw, 1.75rem); }
  .nav-inner { gap: clamp(0.75rem, 1.4vw, 1.3rem); }
  .nav-cta { padding: 0.6rem 1rem; }
  .nav-phone { font-size: 0.82rem; }
}

/* Narrow desktop: free up space by dropping the phone label and the big CTA
   button, but KEEP the menu links (incl. Karrier) visible as long as possible. */
@media (max-width: 1180px) {
  .nav-phone .np-text { display: none; }
  .nav-phone svg { width: 18px; height: 18px; }
  .nav-cta { display: none; }
  .nav-links { gap: clamp(0.85rem, 1.5vw, 1.35rem); }
  .nav-inner { gap: 0.7rem; }
}

@media (max-width: 940px) {
  /* genuinely small: collapse everything into the hamburger */
  .nav-links, .nav-cta, .nav-city { display: none; }
  .nav-burger { display: flex; }
  /* tap-to-call stays in the header; icon-only to save room next to the burger */
  .nav-actions { gap: 0.55rem; }
  .nav-phone { margin: 0; }
  .nav-phone .np-text { display: none; }
  .nav-phone svg { width: 20px; height: 20px; }
  /* keep the language switch reachable, just a touch tighter */
  .nav-inner { gap: 0.6rem; }
  .lang-btn { padding: 0.32rem 0.42rem; font-size: 0.66rem; }
}


/* ==========================================================
   FOOTER – dark charcoal
   ========================================================== */
#footer {
  background: var(--bg-dark);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ft-logo { display: inline-block; margin-bottom: 0.875rem; }
.ft-tagline {
  font-size: 0.875rem;
  color: var(--on-dark-2);
  line-height: 1.7;
  max-width: 250px;
  margin-bottom: 1.625rem;
}
.ft-social { display: flex; gap: 0.625rem; }
.ft-social-a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ft-social-a:hover { border-color: var(--accent-h); color: var(--accent-h); background: rgba(212,160,23,0.1); }
.ft-social-a svg { width: 15px; height: 15px; }
.ft-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 1.125rem;
}
.ft-links { list-style: none; display: grid; gap: 0.75rem; }
.ft-links a {
  font-size: 0.875rem;
  color: var(--on-dark-2);
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--on-dark); }
.ft-links li.plain {
  font-size: 0.875rem;
  color: var(--on-dark-2);
}
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ft-copy { font-size: 0.8125rem; color: var(--on-dark-3); }
.ft-legal { display: flex; gap: 1.5rem; }
.ft-legal a {
  font-size: 0.8125rem;
  color: var(--on-dark-3);
  transition: color 0.2s;
}
.ft-legal a:hover { color: var(--on-dark-2); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   PACKAGE PAGE – shared header / breadcrumb
   ========================================================== */
.pkg-page { padding-top: var(--nav-h); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  padding: 1.5rem 0 0;
}
.breadcrumb a { color: var(--text-2); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 13px; height: 13px; opacity: 0.6; }
.breadcrumb .current { color: var(--text); }

/* Package hero */
#pkg-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.pkg-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 78% 30%, rgba(184,134,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(184,134,11,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.pkg-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.pkg-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(184,134,11,0.25);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--pill);
  margin-bottom: 1.375rem;
}
.pkg-tier-badge.is-popular {
  background: var(--accent);
  color: #FAFAF7;
  border-color: var(--accent);
}
.pkg-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.pkg-h1 em { font-style: italic; color: var(--accent); }
.pkg-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}
.pkg-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Price / quick facts card */
.pkg-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 12px 44px rgba(28,25,23,0.09);
}
.pkg-price-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pkg-price small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0;
}
.pkg-quote-divider { height: 1px; background: var(--border-subtle); margin: 1.5rem 0; }
.pkg-facts { display: grid; gap: 0.95rem; }
.pkg-fact { display: flex; align-items: flex-start; gap: 0.75rem; }
.pkg-fact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pkg-fact-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.pkg-fact-val { font-size: 0.95rem; color: var(--text); }
.pkg-quote-card .btn { width: 100%; justify-content: center; margin-top: 1.75rem; }

@media (max-width: 880px) {
  .pkg-hero-inner { grid-template-columns: 1fr; }
  .pkg-hero-actions { width: 100%; }
}

/* ==========================================================
   PACKAGE – "what's included" + scope
   ========================================================== */
#pkg-includes { background: var(--bg-cream); }
.pkg-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.pkg-include-list { list-style: none; display: grid; gap: 0.95rem; margin-top: 1.75rem; }
.pkg-include-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.975rem;
  color: var(--text);
  line-height: 1.6;
}
.pkg-include-list li svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-include-list li.muted { color: var(--text-3); }
.pkg-include-list li.muted svg { color: var(--text-3); opacity: 0.5; }
.pkg-include-list li.muted .x { text-decoration: line-through; }

.pkg-note-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2rem);
}
.pkg-note-card h4 { font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--text); }
.pkg-note-card p { font-size: 0.925rem; color: var(--text-2); line-height: 1.75; margin-bottom: 0.85rem; }
.pkg-note-card p:last-child { margin-bottom: 0; }

/* Materials / spec rows */
#pkg-spec { background: var(--bg); }
.pkg-spec-list { margin-top: 2.5rem; border-top: 1px solid var(--border-subtle); }
.pkg-spec-row {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 1.5rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.pkg-spec-key {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 3px;
}
.pkg-spec-val { font-size: 0.975rem; color: var(--text-2); line-height: 1.7; }
.pkg-spec-val strong { color: var(--text); font-weight: 600; }
@media (max-width: 640px) {
  .pkg-spec-row { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* Ideal-for chips */
.pkg-chips { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.75rem; }
.pkg-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-2);
}
.pkg-chip svg { width: 14px; height: 14px; color: var(--accent); }

/* ==========================================================
   PACKAGE – compare / other options
   ========================================================== */
#pkg-compare { background: var(--bg-cream); }
.pkg-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pkg-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s, border-color 0.25s;
}
.pkg-compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(28,25,23,0.1);
  border-color: var(--border);
}
.pkg-compare-card.is-current {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(184,134,11,0.14);
}
.pkg-compare-tier {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
}
.pkg-compare-card.is-current .pkg-compare-tier::after {
  content: ' · Ön ezt nézi';
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.pkg-compare-name { font-size: 1.375rem; color: var(--text); margin-bottom: 0.5rem; }
.pkg-compare-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.pkg-compare-price small { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; color: var(--text-3); }
.pkg-compare-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.5rem; flex-grow: 1; }
.pkg-compare-card .btn { width: 100%; justify-content: center; }
.pkg-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.22s;
}
.pkg-compare-card:hover .pkg-compare-link { gap: 0.85rem; }
.pkg-compare-link svg { width: 13px; height: 13px; }
@media (max-width: 800px) {
  .pkg-compare-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   PACKAGE – closing CTA (gold band, reused from index)
   ========================================================== */
#pkg-cta {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #6B4A00 0%, #B8860B 40%, #D4A017 70%, #B8860B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pkg-cta-glow {
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.pkg-cta-inner { position: relative; z-index: 1; }
.pkg-cta-inner .eyebrow { color: rgba(255,255,255,0.7); justify-content: center; }
.pkg-cta-inner .eyebrow::before { background: rgba(255,255,255,0.5); }
.pkg-cta-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.03em;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  color: #FAFAF7;
}
.pkg-cta-title em { font-style: italic; color: rgba(255,255,255,0.85); }
.pkg-cta-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin: 0 auto 2.25rem;
  line-height: 1.78;
}
.pkg-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.pkg-cta-actions .btn { font-size: 1rem; padding: 1rem 2.25rem; }
.pkg-cta-actions .btn-primary {
  background: rgba(255,255,255,0.95);
  color: #6B4A00;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.pkg-cta-actions .btn-primary:hover { background: #FFFFFF; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }

@media (max-width: 700px) {
  .pkg-includes-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   LEAD / CONTACT PAGES – shared header + layout
   (kapcsolat.html, ingyenes-felmeres.html)
   ========================================================== */
.lead-page { padding-top: var(--nav-h); }

.lead-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.lead-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 80% 15%, rgba(184,134,11,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.lead-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.lead-h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.125rem;
}
.lead-h1 em { font-style: italic; color: var(--accent); }
.lead-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 600px;
}

/* Subpage hero – compact split: a little text with a small image
   beside it. Deliberately smaller than the home page's tall, full-bleed
   split hero, so a subpage always reads as a subpage. Shared by every
   subpage for consistency. */
.lead-hero-inner.lead-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.lead-hero-copy { min-width: 0; }
.lead-hero-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-3);
  box-shadow: 0 18px 50px rgba(28,25,23,0.10);
}
.lead-hero-media svg { width: 30px; height: 30px; opacity: 0.32; }
.lead-hero-media .lhm-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.lead-hero-media .lhm-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--accent); color: #FAFAF7;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; border-radius: 50px;
}
.lead-hero-media.has-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,25,23,0.22) 0%, transparent 45%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .lead-hero-inner.lead-hero-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .lead-hero-media { aspect-ratio: 16 / 10; max-width: 460px; }
}

#lead-body { background: var(--bg-cream); }
.lead-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .lead-grid { grid-template-columns: 1fr; } }

/* Contact info / side column */
.ci-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); box-shadow: 0 2px 8px rgba(28,25,23,0.05);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.2rem; }
.ci-val { font-size: 1.0625rem; color: var(--text); line-height: 1.4; }
.ci-val a { color: var(--text); transition: color 0.2s; }
.ci-val a:hover { color: var(--accent); }
.ci-val.big { font-family: var(--font-serif); font-size: 1.5rem; }

/* Reassurance / steps card */
.lead-aside-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2rem); margin-top: 2rem;
  box-shadow: 0 4px 24px rgba(28,25,23,0.06);
}
.lead-aside-card h3 { font-size: 1.1875rem; margin-bottom: 1.25rem; color: var(--text); }
.lead-steps { list-style: none; display: grid; gap: 1.25rem; counter-reset: step; }
.lead-steps li { display: grid; grid-template-columns: 30px 1fr; gap: 0.875rem; align-items: start; }
.lead-steps li::before {
  counter-increment: step; content: counter(step);
  width: 30px; height: 30px;
  background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.3); color: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 0.85rem;
}
.lead-step-t { font-weight: 600; color: var(--text); font-size: 0.95rem; margin-bottom: 0.15rem; }
.lead-step-d { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

.lead-badges { display: grid; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.lead-badge { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9rem; color: var(--text-2); }
.lead-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ==========================================================
   FORMS – shared (used by lead/contact pages)
   ========================================================== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 8px 40px rgba(28,25,23,0.08);
}
.form-h { font-size: 1.5rem; margin-bottom: 0.375rem; color: var(--text); }
.form-sub { font-size: 0.9rem; color: var(--text-2); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.f-group { display: flex; flex-direction: column; gap: 0.4375rem; margin-bottom: 1.125rem; }
.f-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.f-label .opt { color: var(--text-3); font-weight: 500; letter-spacing: 0; text-transform: none; }
.f-input, .f-select, .f-textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  appearance: none;
}
.f-input::placeholder, .f-textarea::placeholder { color: var(--text-3); }
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.f-textarea { resize: vertical; min-height: 120px; }
.f-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C9690' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
.f-select option { background: #fff; color: var(--text); }

/* File upload dropzone */
.f-upload {
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  background: var(--bg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  position: relative;
}
.f-upload:hover, .f-upload.dragover { border-color: var(--accent); background: var(--accent-dim); }
.f-upload-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-dim); display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.f-upload-icon svg { width: 20px; height: 20px; }
.f-upload-text { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.f-upload-text span { color: var(--accent); text-decoration: underline; }
.f-upload-hint { font-size: 0.75rem; color: var(--text-3); }
/* Visually hidden but still present/clickable — display:none can stop the file
   picker from opening on mobile/Safari, so clip it instead of removing it. */
.f-upload input[type="file"] {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; opacity: 0;
}

/* Thumbnails */
.f-previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 0.625rem; margin-top: 1rem; }
.f-previews:empty { margin-top: 0; }
.f-preview {
  position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-cream);
}
.f-preview img { width: 100%; height: 100%; object-fit: cover; }
.f-preview-doc {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 0.6rem; padding: 0.4rem; text-align: center; word-break: break-word; line-height: 1.3;
}
.f-preview-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border: none; border-radius: 50%;
  background: rgba(28,25,23,0.72); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: background 0.2s;
}
.f-preview-remove svg { width: 12px; height: 12px; }
.f-preview-remove:hover { background: rgba(28,25,23,0.92); }

.f-submit { margin-top: 1.5rem; width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 0.9375rem; }
.f-note { margin-top: 0.875rem; font-size: 0.8rem; color: var(--text-3); text-align: center; line-height: 1.6; }
.f-note a { color: var(--accent); text-decoration: underline; }

/* Success state (shown after submit, since there's no backend yet) */
.form-success { display: none; text-align: center; padding: 1.5rem 0.5rem; }
.form-success.show { display: block; animation: float2 0.01s; }
.form-success .fs-check {
  width: 60px; height: 60px; margin: 0 auto 1.25rem;
  border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.form-success .fs-check svg { width: 26px; height: 26px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.625rem; color: var(--text); }
.form-success p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; max-width: 360px; margin: 0 auto; }

/* ==========================================================
   SUBPAGE SECTION COMPONENTS
   (services, packages, about, values, process, portfolio)
   Mirrors the homepage inline styles so standalone pages match.
   ========================================================== */
.s-white { background: var(--bg); }
.s-cream { background: var(--bg-cream); }
.s-dark  { background: var(--bg-dark); }
.s-dark .eyebrow { color: var(--accent-h); }
.s-dark .eyebrow::before { background: var(--accent-h); }
.s-dark .section-title { color: var(--on-dark); }
.s-dark .section-sub { color: var(--on-dark-2); }

.sec-hd { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-hd-center { text-align: center; max-width: 660px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.sec-hd-center .eyebrow { justify-content: center; }
.sec-hd-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 1.5rem; }
.svc-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px;
  overflow: hidden; transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s ease, border-color 0.25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(28,25,23,0.1); border-color: var(--border); }
.svc-card.featured { border-color: var(--border); box-shadow: 0 2px 18px rgba(28,25,23,0.07); }
.svc-featured-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; background: var(--accent); color: #FAFAF7;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 50px; margin-bottom: 1rem;
}
.svc-card-body { padding: clamp(1.5rem, 3vw, 2.25rem); position: relative; }
.svc-card-body::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover .svc-card-body::after { transform: scaleX(1); }
.svc-img {
  width: 100%; aspect-ratio: 16 / 9; background: var(--bg-cream);
  display: flex; align-items: center; justify-content: center; color: var(--text-3);
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; overflow: hidden;
}
.svc-icon {
  width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  margin-bottom: 1.25rem; background: var(--accent-dim); transition: background 0.2s, border-color 0.2s;
}
.svc-card:hover .svc-icon { background: var(--accent); border-color: var(--accent); color: #FAFAF7; }
.svc-icon svg { width: 20px; height: 20px; }
.svc-num { font-size: 0.8125rem; color: var(--text-3); font-family: var(--font-serif); margin-bottom: 0.625rem; }
.svc-title { font-size: 1.3125rem; margin-bottom: 0.75rem; color: var(--text); }
.svc-desc { font-size: 0.9375rem; color: var(--text-2); line-height: 1.72; }
.svc-more {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.375rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transition: gap 0.22s;
}
.svc-card:hover .svc-more { gap: 0.875rem; }
.svc-more svg { width: 13px; height: 13px; }
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Services detail rows (alternating) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.svc-detail + .svc-detail { margin-top: clamp(3.5rem, 7vw, 6rem); }
.svc-detail.flip .svc-detail-media { order: 2; }
.svc-detail-media {
  aspect-ratio: 4/3; background: var(--bg-cream); border: 1px solid var(--border); border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; color: var(--text-3);
}
.svc-detail-media svg { width: 30px; height: 30px; opacity: 0.3; }
.svc-detail-media span { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.svc-detail h2, .svc-detail h3 { font-size: clamp(1.5rem, 3vw, 2.125rem); color: var(--text); margin-bottom: 1rem; }
.svc-detail p { font-size: 0.975rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1.25rem; }
.svc-detail-list { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.5rem; }
.svc-detail-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: var(--text); }
.svc-detail-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 820px) {
  .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail.flip .svc-detail-media { order: 0; }
}

/* ---------- Packages / tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier-card {
  display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 8px; padding: clamp(1.75rem, 3vw, 2.5rem); color: var(--text); position: relative;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s ease, border-color 0.25s;
}
.tier-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(28,25,23,0.12); border-color: var(--border); }
.tier-card.featured { border-color: var(--accent); box-shadow: 0 10px 38px rgba(184,134,11,0.16); }
.tier-popular {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
  background: var(--accent); color: #FAFAF7; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: var(--pill); white-space: nowrap;
  box-shadow: 0 4px 14px rgba(184,134,11,0.3);
}
.tier-name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.875rem; }
.tier-name { font-size: 1.5rem; color: var(--text); }
.tier-letter {
  font-family: var(--font-serif); font-size: 0.8125rem; color: var(--accent);
  border: 1px solid var(--border); background: var(--accent-dim); border-radius: 50%;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tier-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.5rem; min-height: 2.6em; }
.tier-price-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.35rem; }
.tier-price { font-family: var(--font-serif); font-size: 2rem; color: var(--text); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.tier-price small { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; color: var(--text-3); }
.tier-list { list-style: none; display: grid; gap: 0.7rem; margin: 0 0 1.875rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.tier-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9rem; color: var(--text-2); line-height: 1.5; }
.tier-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tier-cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); padding-top: 0.5rem;
}
.tier-cta svg { width: 15px; height: 15px; transition: transform 0.22s ease; }
.tier-card:hover .tier-cta svg { transform: translateX(4px); }
.tier-foot { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); font-size: 0.95rem; color: var(--text-2); }
.tier-foot a { color: var(--accent); text-decoration: underline; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } .tier-card.featured { order: -1; } }

/* ---------- About / story ---------- */
.about-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.about-lead { font-size: clamp(1.0625rem, 1.7vw, 1.25rem); color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 500; }
.about-lead strong { color: var(--accent); font-weight: 600; }
.about-body { font-size: 0.9688rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1.5rem; }
.about-team-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin: 2rem 0 1rem; display: flex; align-items: center; gap: 0.75rem; }
.about-team-label::before { content: ''; width: 24px; height: 1px; background: var(--border); }
.about-trades { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 1.75rem; }
.trade-chip { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-cream); border: 1px solid var(--border-subtle); border-radius: var(--pill); padding: 0.5rem 1rem; font-size: 0.8438rem; font-weight: 500; color: var(--text); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.trade-chip:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(28,25,23,0.07); }
.trade-chip svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.trade-chip.sub { background: transparent; color: var(--text-2); border-style: dashed; }
.trade-chip.sub svg { color: var(--text-3); }
.about-sign { display: flex; align-items: center; gap: 0.875rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.about-sign-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.375rem; color: var(--accent); line-height: 1.2; }
.about-imgs { position: relative; padding-bottom: 2.75rem; padding-left: 2rem; }
.about-main { width: 100%; aspect-ratio: 4 / 5; background: var(--bg-cream); border: 1px solid var(--border); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--text-3); }
.about-main svg { width: 30px; height: 30px; opacity: 0.3; }
.about-main span { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.about-credential { position: absolute; bottom: 0; left: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 1.125rem 1.375rem; box-shadow: 0 12px 40px rgba(28,25,23,0.12); display: flex; align-items: center; gap: 0.875rem; max-width: 84%; }
.about-cred-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--accent-dim); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.about-cred-icon svg { width: 18px; height: 18px; }
.about-cred-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.15rem; }
.about-cred-val { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.about-est { position: absolute; top: 1.25rem; left: -0.5rem; background: var(--accent); color: #FAFAF7; font-family: var(--font-serif); padding: 0.625rem 0.875rem; border-radius: 4px; box-shadow: 0 8px 24px rgba(184,134,11,0.28); text-align: center; line-height: 1; }
.about-est strong { display: block; font-size: 1.375rem; }
.about-est span { font-size: 0.5625rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-sans); }
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; } .about-imgs { max-width: 420px; padding-left: 1.5rem; order: -1; } }

/* ---------- Values (why-feat) ---------- */
.why-features { display: grid; gap: 1.5rem; }
.why-feat { display: grid; grid-template-columns: 44px 1fr; gap: 1.125rem; align-items: center; }
.why-feat-icon { width: 44px; height: 44px; background: #fff; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; margin-top: 2px; transition: background 0.2s, border-color 0.2s, transform 0.22s; box-shadow: 0 2px 8px rgba(28,25,23,0.06); }
.why-feat:hover .why-feat-icon { background: var(--accent); border-color: var(--accent); color: #FAFAF7; transform: scale(1.08); }
.why-feat-icon svg { width: 17px; height: 17px; }
.why-feat-title { font-size: 0.9375rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.why-feat-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.68; }

/* ---------- Process timeline ---------- */
.process-hd { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.process-timeline { position: relative; max-width: 820px; }
.pt-spine { position: absolute; left: 21px; top: 21px; bottom: 21px; width: 1px; pointer-events: none; z-index: 0; }
.pt-spine-track { position: absolute; inset: 0; background: rgba(245,240,232,0.07); }
.pt-spine-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(to bottom, var(--accent) 0%, rgba(184,134,11,0.4) 100%); transition: height 1.8s cubic-bezier(0.16,1,0.3,1); }
.process-timeline.draw .pt-spine-fill { height: 100%; }
.pt-item { display: grid; grid-template-columns: 42px 1fr; gap: 1.75rem; position: relative; z-index: 1; }
.pt-marker { padding-top: 0.75rem; }
.pt-node { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(245,240,232,0.18); background: var(--bg-dark2); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; opacity: 0; transform: scale(0.65); transition: border-color 0.38s ease, box-shadow 0.38s ease, background 0.38s ease, opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.34,1.2,0.64,1); }
.process-timeline.draw .pt-node { opacity: 1; transform: scale(1); }
.pt-node-num { font-family: var(--font-serif); font-size: 0.75rem; color: rgba(245,240,232,0.5); line-height: 1; position: relative; z-index: 1; transition: color 0.3s; }
.pt-node-ring { position: absolute; inset: -5px; border-radius: 50%; border: 1px solid transparent; transition: border-color 0.38s ease, transform 0.38s cubic-bezier(0.34,1.56,0.64,1); }
.pt-item.active .pt-node { border-color: var(--accent); background: linear-gradient(rgba(184,134,11,0.14), rgba(184,134,11,0.14)) var(--bg-dark2); box-shadow: 0 0 0 4px rgba(184,134,11,0.1), 0 0 22px rgba(184,134,11,0.18); }
.pt-item.active .pt-node-num { color: var(--accent); }
.pt-item.active .pt-node-ring { border-color: rgba(184,134,11,0.28); transform: scale(1.22); }
.pt-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.875rem 0; background: none; border: none; border-bottom: 1px solid rgba(245,240,232,0.07); cursor: pointer; text-align: left; transition: border-color 0.25s; }
.pt-item.active .pt-btn { border-color: rgba(184,134,11,0.22); }
.pt-title { font-family: var(--font-serif); font-size: 1.1875rem; color: rgba(245,240,232,0.45); line-height: 1.25; transition: color 0.25s; }
.pt-item.active .pt-title { color: var(--on-dark); }
.pt-btn:hover .pt-title { color: rgba(245,240,232,0.75); }
.pt-chevron { color: rgba(245,240,232,0.22); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), color 0.25s; }
.pt-chevron svg { width: 17px; height: 17px; display: block; }
.pt-item.active .pt-chevron { transform: rotate(180deg); color: var(--accent); }
.pt-body { overflow: hidden; max-height: 0; transition: max-height 0.52s cubic-bezier(0.16,1,0.3,1); }
.pt-body.open { max-height: 720px; }
.pt-body-inner { padding: 1.125rem 0 1.875rem; }
.pt-intro { font-size: 0.9375rem; color: var(--on-dark-2); line-height: 1.78; margin-bottom: 0.875rem; }
.pt-list { list-style: none; padding: 0; margin: 0 0 0.875rem; display: grid; gap: 0.5rem; }
.pt-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--on-dark-2); line-height: 1.7; }
.pt-list li::before { content: ''; width: 16px; height: 16px; border: 1px solid rgba(202,138,4,0.4); border-radius: 50%; flex-shrink: 0; margin-top: 0.2rem; background: radial-gradient(circle, var(--accent) 35%, transparent 36%); }
.pt-note { border-left: 2px solid rgba(212,160,23,0.38); padding-left: 1rem; font-size: 0.875rem; color: rgba(245,240,232,0.62); line-height: 1.72; font-style: italic; }
.why-choose-box { margin-top: 3rem; background: rgba(245,240,232,0.04); border: 1px solid rgba(245,240,232,0.1); padding: clamp(1.5rem, 3vw, 2.5rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.why-choose-box .eyebrow { color: var(--accent-h); }
.why-choose-box .eyebrow::before { background: var(--accent-h); }
.why-choose-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; margin-top: 0.75rem; }
.wc-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: var(--on-dark-2); }
.wc-item svg { width: 15px; height: 15px; color: var(--accent-h); flex-shrink: 0; }
@media (max-width: 640px) { .pt-item { gap: 1.125rem; } .pt-node { width: 34px; height: 34px; } .pt-spine { left: 17px; top: 17px; bottom: 17px; } .pt-marker { padding-top: 0.875rem; } .why-choose-box { grid-template-columns: 1fr; } }

/* ---------- Portfolio grid ---------- */
.portfolio-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); flex-wrap: wrap; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 270px; gap: clamp(0.625rem, 1.25vw, 1rem); }
.portfolio-grid.featured-first > :nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.port-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 3px; }
.port-ph { width: 100%; height: 100%; background: var(--bg-cream); border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.625rem; color: var(--text-3); transition: background 0.3s; }
.port-ph svg { width: 24px; height: 24px; opacity: 0.25; }
.port-ph span { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.port-item:hover .port-ph { background: #E5DFD2; }
.port-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0); display: flex; align-items: flex-end; padding: 1.5rem; transition: background 0.32s ease; }
.port-item:hover .port-overlay { background: rgba(28,25,23,0.55); }
.port-info { opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.port-item:hover .port-info { opacity: 1; transform: none; }
.port-info h3 { font-size: 0.9375rem; color: #FAFAF7; margin-bottom: 0.2rem; }
.port-info p { font-size: 0.8rem; color: rgba(245,240,232,0.7); }
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } .portfolio-grid.featured-first > :nth-child(1) { grid-column: 1 / 3; grid-row: auto; } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; } .portfolio-grid.featured-first > :nth-child(1) { grid-column: auto; } }

/* ---------- Compact process preview (homepage teaser) ---------- */
.proc-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: clamp(2rem, 4vw, 3rem); }
.proc-mini-step { background: rgba(245,240,232,0.04); border: 1px solid rgba(245,240,232,0.1); border-radius: 8px; padding: 1.5rem 1.375rem; transition: border-color 0.25s, transform 0.25s; }
.proc-mini-step:hover { border-color: rgba(184,134,11,0.4); transform: translateY(-4px); }
.proc-mini-num { font-family: var(--font-serif); font-size: 1.75rem; color: var(--accent-h); line-height: 1; margin-bottom: 0.75rem; }
.proc-mini-t { font-size: 1rem; font-weight: 600; color: var(--on-dark); margin-bottom: 0.4rem; }
.proc-mini-d { font-size: 0.85rem; color: var(--on-dark-2); line-height: 1.6; }
@media (max-width: 820px) { .proc-mini { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .proc-mini { grid-template-columns: 1fr; } }

/* ---------- Generic split teaser (homepage about teaser) ---------- */
.teaser-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.teaser-media { aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; color: var(--text-3); box-shadow: 0 8px 30px rgba(28,25,23,0.06); }
.teaser-media svg { width: 30px; height: 30px; opacity: 0.3; }
.teaser-media span { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 820px) { .teaser-split { grid-template-columns: 1fr; } }

/* ==========================================================
   EDITORIAL LAYER – richer, less "template" pages
   ========================================================== */
/* Grain / paper texture overlay (add class .grain to a section) */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 1; }
.s-dark.grain::after { opacity: 0.06; }

/* Subpage hero sizing – compact split (text + small image beside it),
   noticeably smaller than the home page's tall full-bleed hero. */
.lead-hero { padding: clamp(2rem, 3.5vw, 3.25rem) 0 clamp(2.25rem, 4vw, 3.5rem); }
.lead-hero-inner { max-width: 1080px; }
.lead-h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.02; letter-spacing: -0.03em; }

/* Kicker row (index • label • rule) */
.kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.kicker-idx { font-family: var(--font-serif); font-size: 1.05rem; color: var(--accent); line-height: 1; }
.kicker-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; }
.kicker-rule { flex: 1; height: 1px; background: linear-gradient(to right, var(--border), transparent); max-width: 280px; }
.s-dark .kicker-label { color: var(--on-dark-3); }
.s-dark .kicker-rule { background: linear-gradient(to right, rgba(245,240,232,0.25), transparent); }

/* Oversized faded background word */
.bgword { position: absolute; right: -1%; bottom: -7%; font-family: var(--font-serif);
  font-size: clamp(6rem, 20vw, 18rem); line-height: 1; color: rgba(28,25,23,0.035);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0; letter-spacing: -0.04em; }
.s-dark .bgword { color: rgba(245,240,232,0.045); }

/* Section heading with big faded numeral */
.ed-head { position: relative; margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.ed-num { display: block; font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.8; color: var(--accent-dim); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.s-dark .ed-num { color: rgba(212,160,23,0.2); }

/* Drop cap for a lead paragraph */
.dropcap::first-letter { font-family: var(--font-serif); font-size: 3.6em; line-height: 0.78;
  float: left; margin: 0.04em 0.14em 0 0; color: var(--accent); }

/* Pull-quote */
.ed-quote { position: relative; font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.25; color: var(--text);
  padding-left: 1.5rem; border-left: 3px solid var(--accent); }
.s-dark .ed-quote { color: var(--on-dark); }
.ed-quote cite { display: block; font-style: normal; font-family: var(--font-sans); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-top: 1.25rem; }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: 10px; overflow: hidden; }
.s-dark .stat-band { background: rgba(245,240,232,0.1); border-color: rgba(245,240,232,0.1); }
.stat-cell { background: var(--bg-card); padding: clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.s-dark .stat-cell { background: var(--bg-dark2); }
.stat-num { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.s-dark .stat-num { color: var(--accent-h); }
.stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-top: 0.5rem; }
.s-dark .stat-label { color: var(--on-dark-3); }
@media (max-width: 680px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* Asymmetric numbered feature row */
.feature-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(3.5rem, 7vw, 6rem); }
.feature-row.flip .feature-media { order: 2; }
.feature-num { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); color: var(--accent); line-height: 1; margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.feature-num::after { content: ''; height: 1px; width: 64px; background: var(--accent); opacity: 0.4; }
.feature-media { position: relative; aspect-ratio: 4/3; background: var(--bg-cream); border: 1px solid var(--border);
  border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  color: var(--text-3); overflow: hidden; box-shadow: 0 16px 50px rgba(28,25,23,0.09); }
.feature-media svg { width: 32px; height: 32px; opacity: 0.3; }
.feature-media span { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.feature-media .fm-tag { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: #FAFAF7;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 50px; }
@media (max-width: 820px) { .feature-row { grid-template-columns: 1fr; } .feature-row.flip .feature-media { order: 0; } }

/* ==========================================================
   ===========  2026 REDESIGN LAYER  ========================
   New components: bigger brand, split hero, sticky quote bar,
   before/after slider, testimonials, trust marquee.
   Playfair tuning. Bathroom-only.
   ========================================================== */

/* Playfair runs a touch tighter than DM Serif – relax tracking */
h1, h2, h3, h4 { letter-spacing: -0.015em; }

/* ---------- Brand / logo (bigger, crisp SVG lockup) ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--text); }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; display: block; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-brand); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 0.02em; color: var(--text); line-height: 0.95;
}
.brand-tag {
  font-family: var(--font-sans); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-top: 5px;
  white-space: nowrap;
}
#nav .brand-mark { color: var(--text); }
.nav-logo { line-height: 0; }
/* footer brand: white version */
.ft-brand .brand-mark, .ft-brand .brand-name { color: var(--on-dark); }
.ft-brand .brand-tag { color: var(--accent-h); }
@media (max-width: 480px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 1.3rem; }
}

/* ---------- HERO – editorial split ---------- */
#hero { position: relative; padding-top: var(--nav-h); background: var(--bg); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch;
  min-height: calc(100vh - var(--nav-h)); min-height: calc(100svh - var(--nav-h));
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 5rem) var(--pad-x);
  position: relative; z-index: 2;
}
.hero-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.6rem, 5.6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.1875rem); color: var(--text-2); line-height: 1.75; max-width: 460px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-actions .btn { padding: 1rem 2rem; font-size: 0.975rem; }
.hero-mini { display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); flex-wrap: wrap; }
.hero-mini-item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-mini-num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text); line-height: 1; }
.hero-mini-num span { color: var(--accent); }
.hero-mini-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.hero-mini-divider { width: 1px; align-self: stretch; background: var(--border); }

.hero-media { position: relative; overflow: hidden; background: var(--bg-cream); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(28,25,23,0.18) 0%, transparent 38%); pointer-events: none; }
/* floating credential card on the photo */
.hero-credential {
  position: absolute; left: -2.5rem; bottom: clamp(2rem, 5vw, 3.5rem); z-index: 3;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.1rem 1.4rem; box-shadow: 0 18px 50px rgba(28,25,23,0.18);
  display: flex; align-items: center; gap: 0.9rem; max-width: 290px;
}
.hero-credential .hc-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.3); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.hero-credential .hc-icon svg { width: 20px; height: 20px; }
.hero-credential .hc-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.15rem; }
.hero-credential .hc-val { font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.25; }
.hero-photo-tag {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 3;
  background: rgba(28,25,23,0.55); backdrop-filter: blur(6px); color: var(--on-dark);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border-radius: var(--pill); border: 1px solid rgba(245,240,232,0.18);
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: clamp(1.75rem,5vw,3rem) var(--pad-x) clamp(1.5rem,4vw,2.25rem); }
  .hero-media { min-height: 0; }
  .hero-credential { left: var(--pad-x); right: var(--pad-x); max-width: none; bottom: 1.25rem; }
}

/* ---------- STICKY QUOTE BAR ---------- */
.quote-bar {
  position: fixed; z-index: 150; transform: translateY(140%); opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1), opacity 0.42s ease;
}
.quote-bar.show { transform: none; opacity: 1; }
/* Retired: the chat-widget launcher now owns the bottom-right CTA role.
   Delete this line to bring the sticky quote pill back. */
.quote-bar { display: none !important; }
/* desktop: floating pill bottom-right */
.quote-bar {
  right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  background: var(--bg-dark); border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--pill); padding: 0.6rem 0.7rem 0.6rem 1.4rem;
  display: flex; align-items: center; gap: 1rem; box-shadow: 0 18px 50px rgba(28,25,23,0.3);
}
.quote-bar-text { display: flex; flex-direction: column; line-height: 1.2; }
.quote-bar-text strong { font-size: 0.9rem; color: var(--on-dark); font-weight: 600; }
.quote-bar-text span { font-size: 0.72rem; color: var(--on-dark-2); }
.quote-bar .btn { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
@media (max-width: 600px) {
  .quote-bar { left: 0; right: 0; bottom: 0; border-radius: 0; justify-content: space-between;
    padding: 0.7rem 1rem; border-left: none; border-right: none; }
  .quote-bar-text strong { font-size: 0.82rem; }
}

/* ---------- BEFORE / AFTER SLIDER ---------- */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden;
  border-radius: 8px; cursor: ew-resize; touch-action: none; user-select: none;
  --pos: 50%; box-shadow: 0 16px 50px rgba(28,25,23,0.12); border: 1px solid var(--border);
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
/* placeholder panels (until Phase-2 before/after photos) */
.ba-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.ba-ph.is-before { background: linear-gradient(135deg, #2b2724, #3a3530); color: rgba(245,240,232,0.55); }
.ba-ph.is-after { background: linear-gradient(135deg, var(--bg-cream), #E3DAC2); color: var(--text-3); }
.ba-ph svg { width: 26px; height: 26px; opacity: 0.5; }
.ba-ph span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff;
  transform: translateX(-1px); z-index: 4; box-shadow: 0 0 0 1px rgba(28,25,23,0.1);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; border: none;
  box-shadow: 0 4px 16px rgba(28,25,23,0.3); cursor: ew-resize;
  display: flex; align-items: center; justify-content: center; gap: 2px; color: var(--text);
}
.ba-grip svg { width: 16px; height: 16px; }
.ba-grip svg:first-child { transform: rotate(180deg); }
.ba-tag {
  position: absolute; top: 1rem; z-index: 3; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: var(--pill);
  background: rgba(28,25,23,0.55); backdrop-filter: blur(6px); color: #fff;
}
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; background: var(--accent); }

/* ---------- TESTIMONIALS ---------- */
/* Auto-scrolling review carousel: overflow-clipped track with edge fade. */
.tm-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.tm-track { display: flex; gap: 1.25rem; padding: 0.5rem 0.25rem; }
/* JS adds .is-ready once the track is cloned, so the -50% loop is seamless. */
.tm-track.is-ready { width: max-content; animation: tm-scroll 70s linear infinite; }
.tm-marquee:hover .tm-track.is-ready { animation-play-state: paused; }
.tm-track .tm-card { width: 350px; flex-shrink: 0; }
@keyframes tm-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tm-track.is-ready { animation: none; } }
/* "Read all reviews" link below the carousel */
.tm-more { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.tm-more-link { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.6rem; border: 1px solid var(--border); border-radius: 50px; background: var(--bg-card, #fff); font-size: 0.9rem; font-weight: 600; color: var(--text); box-shadow: 0 6px 18px rgba(28,25,23,0.06); transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, border-color 0.25s; }
.tm-more-link:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(28,25,23,0.1); border-color: var(--accent); }
.tm-more-link .tm-g { width: 17px; height: 17px; }
.tm-more-link > svg:last-child { width: 15px; height: 15px; color: var(--accent); transition: transform 0.22s; }
.tm-more-link:hover > svg:last-child { transform: translateX(3px); }
.tm-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.85rem; }
.tm-top .tm-stars { margin: 0; }
.tm-g { flex-shrink: 0; width: 18px; height: 18px; }
/* Google rating summary badge under the section heading */
.tm-rating-wrap { text-align: center; margin-top: 1.1rem; }
.tm-rating { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.5rem 1.05rem; border: 1px solid var(--border); border-radius: 50px; background: var(--bg-card, #fff); box-shadow: 0 6px 18px rgba(28,25,23,0.06); }
.tm-rating-score { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.tm-rating-stars { display: inline-flex; color: #F5B400; }
.tm-rating-stars svg { width: 15px; height: 15px; }
.tm-rating-meta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; color: var(--text-2); }

/* Related-services grid (shared across service pages) */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: clamp(2rem, 4vw, 3rem); }
.rel-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; align-items: flex-start; transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s, border-color 0.25s; }
.rel-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(28,25,23,0.1); border-color: var(--border); }
.rel-ico { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.22); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.125rem; transition: background 0.25s, color 0.25s; }
.rel-card:hover .rel-ico { background: var(--accent); color: #FAFAF7; }
.rel-ico svg { width: 21px; height: 21px; }
.rel-name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--text); margin-bottom: 0.5rem; line-height: 1.2; }
.rel-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.25rem; flex-grow: 1; }
.rel-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); transition: gap 0.22s; }
.rel-card:hover .rel-link { gap: 0.85rem; }
.rel-link svg { width: 13px; height: 13px; }
@media (max-width: 800px) { .rel-grid { grid-template-columns: 1fr; } }

/* Flagship service cards (shared: szolgáltatások + service-page footers) */
.flag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: clamp(2rem, 4vw, 3rem); }
.flag-card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: clamp(1.75rem, 3.5vw, 2.5rem); display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s, border-color 0.25s; }
.flag-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.flag-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(28,25,23,0.12); border-color: var(--border); }
.flag-card:hover::before { transform: scaleY(1); }
.flag-badge { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.22); padding: 0.35rem 0.75rem; border-radius: 50px; margin-bottom: 1.25rem; }
.flag-ico { width: 54px; height: 54px; border-radius: 50%; background: var(--bg-cream); border: 1px solid var(--border); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.125rem; transition: background 0.25s, color 0.25s; }
.flag-card:hover .flag-ico { background: var(--accent); color: #FAFAF7; }
.flag-ico svg { width: 25px; height: 25px; }
.flag-name { font-size: clamp(1.3rem, 2.4vw, 1.65rem); color: var(--text); margin-bottom: 0.65rem; line-height: 1.12; }
.flag-desc { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }
.flag-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); transition: gap 0.22s; }
.flag-card:hover .flag-link { gap: 0.9rem; }
.flag-link svg { width: 13px; height: 13px; }
@media (max-width: 720px) { .flag-grid { grid-template-columns: 1fr; } }

.tm-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.25s;
}
.tm-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(28,25,23,0.1); border-color: var(--border); }
.tm-stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 1rem; }
.tm-stars svg { width: 16px; height: 16px; }
.tm-quote { font-family: var(--font-serif); font-size: 1.0625rem; line-height: 1.55; color: var(--text); margin-bottom: 1.5rem; flex-grow: 1; }
.tm-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border-subtle); }
.tm-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.25); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 0.95rem; flex-shrink: 0; }
.tm-name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.tm-meta { display: block; margin-top: 0.15rem; font-size: 0.78rem; color: var(--text-3); }
@media (max-width: 880px) {
  .tm-track .tm-card { width: 300px; scroll-snap-align: center; }
  /* Finger-swipe instead of auto-scroll on touch / small screens */
  .tm-marquee {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    -webkit-mask-image: none; mask-image: none;
    scrollbar-width: none;
  }
  .tm-marquee::-webkit-scrollbar { display: none; }
  .tm-track {
    gap: 1rem; width: max-content; animation: none !important;
    padding-left: var(--pad-x); padding-right: var(--pad-x);
  }
}

/* ---------- TRUST MARQUEE (trades strip) ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; font-weight: 500; color: var(--text-2); white-space: nowrap; }
.marquee-item svg { width: 17px; height: 17px; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Big CTA band (gold) reused as #cta ---------- */
#cta-band { padding: clamp(4.5rem, 10vw, 8rem) 0; background: linear-gradient(135deg, #6B4A00 0%, #B8860B 42%, #D4A017 72%, #B8860B 100%); text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: rgba(255,255,255,0.07); border-radius: 50%; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { color: rgba(255,255,255,0.72); justify-content: center; }
.cta-inner .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.75rem); letter-spacing: -0.02em; max-width: 760px; margin: 0 auto 1.25rem; color: #FAFAF7; }
.cta-title em { font-style: italic; color: rgba(255,255,255,0.85); }
.cta-sub { font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.78; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-actions .btn { font-size: 1rem; padding: 1rem 2.25rem; }
.cta-actions .btn-primary { background: rgba(255,255,255,0.96); color: #6B4A00; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.cta-actions .btn-primary:hover { background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.22); }
.cta-actions .btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.cta-actions .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ---------- Real-photo helper for placeholder media slots ---------- */
.has-photo { background: none !important; }
.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-media.has-photo, .teaser-media.has-photo, .about-main.has-photo, .svc-detail-media.has-photo { padding: 0; }

/* ==========================================================
   ===========  HOMEPAGE v2 LAYER  ==========================
   Hero rating/chips + rotating word, scope grid, strengths,
   comparison table.
   ========================================================== */

/* ---------- Hero: rating badge, trust chips, rotating word ---------- */
.hero-rating { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.6rem; }
.hero-rating .hr-stars { display: inline-flex; gap: 1px; color: var(--accent); }
.hero-rating .hr-stars svg { width: 16px; height: 16px; }
.hero-rating .hr-text { font-size: 0.82rem; color: var(--text-2); }
.hero-rating .hr-text strong { color: var(--text); font-weight: 600; }

.rotate-word { display: inline-block; color: var(--accent); font-style: italic; position: relative; min-height: 1em; }
.rotate-word .rw-item { transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.rotate-word .rw-item.rw-out { opacity: 0; transform: translateY(-0.25em); position: absolute; left: 0; top: 0; }
@media (prefers-reduced-motion: reduce) { .rotate-word .rw-item { transition: none; } }

.hero-chips { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 0.5rem; }
.hero-chip { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--pill); padding: 0.5rem 0.95rem; font-size: 0.82rem; font-weight: 500; color: var(--text); }
.hero-chip svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* ---------- Scope grid (redesigned "Amivel foglalkozunk") ---------- */
.scope-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.scope-head .section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 15ch; }
.scope-statement { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-2); line-height: 1.7; max-width: 38ch; }
.scope-statement strong { color: var(--accent); font-weight: 600; }
.scope-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.scope-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.5rem 1.375rem 1.625rem; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s, border-color 0.25s; }
.scope-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.scope-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(28,25,23,0.1); border-color: var(--border); }
.scope-card:hover::before { transform: scaleX(1); }
.scope-num { font-family: var(--font-serif); font-size: 0.8rem; color: var(--text-3); margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.scope-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.22); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1rem; transition: background 0.25s, color 0.25s, border-color 0.25s; }
.scope-card:hover .scope-icon { background: var(--accent); border-color: var(--accent); color: #FAFAF7; }
.scope-icon svg { width: 21px; height: 21px; }
.scope-t { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text); margin-bottom: 0.45rem; line-height: 1.15; }
.scope-d { font-size: 0.84rem; color: var(--text-2); line-height: 1.6; }
@media (max-width: 1080px) { .scope-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .scope-head { grid-template-columns: 1fr; align-items: start; } }
@media (max-width: 620px) { .scope-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } .scope-num { margin-bottom: 1rem; } }
@media (max-width: 400px) { .scope-grid { grid-template-columns: 1fr; } }

/* ---------- Strengths band ---------- */
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(245,240,232,0.1); border: 1px solid rgba(245,240,232,0.1); border-radius: 14px; overflow: hidden; }
.strength-cell { background: var(--bg-dark2); padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: 0.7rem; }
.strength-cell .st-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(184,134,11,0.14); border: 1px solid rgba(212,160,23,0.28); display: flex; align-items: center; justify-content: center; color: var(--accent-h); }
.strength-cell .st-icon svg { width: 22px; height: 22px; }
.strength-cell h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--on-dark); }
.strength-cell p { font-size: 0.9rem; color: var(--on-dark-2); line-height: 1.65; }
@media (max-width: 820px) { .strength-grid { grid-template-columns: 1fr; } }

/* ---------- Comparison table ---------- */
.compare { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--bg-card); box-shadow: 0 18px 56px rgba(28,25,23,0.09); position: relative; }
.compare-row { display: grid; grid-template-columns: 1.5fr 1.1fr 1.1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--border-subtle); }
.compare-c { padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--text); line-height: 1.4; }
.compare-c .cmp-label { display: none; }
/* criterion column */
.compare-c.crit { font-weight: 600; color: var(--text); background: var(--bg); }
/* our (highlighted) column – continuous gold strip */
.compare-c.us { background: var(--accent-dim); color: var(--text); font-weight: 500; position: relative; }
.compare-c.us svg { color: #2e7d32; }
/* competitor column */
.compare-c.them { color: var(--text-2); }
.compare-c.them svg { color: var(--text-3); }
.compare-c svg { width: 19px; height: 19px; flex-shrink: 0; }
/* header row */
.compare-head .compare-c { padding-top: 1.35rem; padding-bottom: 1.35rem; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; }
.compare-head .crit { background: var(--bg); color: var(--text-3); font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.compare-head .us { background: var(--accent); color: #FAFAF7; justify-content: center; gap: 0.5rem; }
.compare-head .us .cmp-brandtag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(255,255,255,0.22); padding: 0.2rem 0.5rem; border-radius: var(--pill); font-family: var(--font-sans); }
.compare-head .them { background: var(--bg-cream); color: var(--text-2); justify-content: center; }
.compare-foot { display: grid; grid-template-columns: 1.5fr 2.2fr; border-top: 1px solid var(--border); }
.compare-foot .cf-spacer { background: var(--bg); }
.compare-foot .cf-cta { padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; background: var(--accent-dim); }
.compare-foot .cf-cta span { font-size: 0.95rem; color: var(--text); font-weight: 500; }
@media (max-width: 760px) {
  .compare { border-radius: 14px; }
  .compare-head { display: none; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row + .compare-row { border-top: 8px solid var(--bg-cream); }
  .compare-c { padding: 0.85rem 1.15rem; }
  .compare-c.crit { font-family: var(--font-serif); font-size: 1.05rem; padding-top: 1.1rem; padding-bottom: 0.6rem; }
  .compare-c .cmp-label { display: inline-flex; align-items: center; min-width: 88px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
  .compare-c.us .cmp-label { color: var(--accent); }
  .compare-foot { grid-template-columns: 1fr; }
  .compare-foot .cf-spacer { display: none; }
}

/* ---------- Anatomy hotspot diagram ---------- */
.anatomy-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.anatomy-grid.flip .anatomy-stage { order: 2; }
.anatomy-stage { position: relative; }
.anatomy-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--border); box-shadow: 0 20px 56px rgba(28,25,23,0.14); }
.anatomy-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hs-dot {
  position: absolute; transform: translate(-50%, -50%); width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; border: 2px solid #fff; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  animation: hspulse 2.4s ease-out infinite;
}
.hs-dot svg { width: 16px; height: 16px; transition: transform 0.28s cubic-bezier(0.16,1,0.3,1); }
.hs-dot:hover, .hs-dot.active { animation: none; background: var(--accent-h); transform: translate(-50%, -50%) scale(1.12); }
.hs-dot.active svg { transform: rotate(45deg); }
@keyframes hspulse { 0% { box-shadow: 0 0 0 0 rgba(184,134,11,0.5); } 70% { box-shadow: 0 0 0 13px rgba(184,134,11,0); } 100% { box-shadow: 0 0 0 0 rgba(184,134,11,0); } }
.hs-pop {
  position: absolute; z-index: 6; width: 232px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.95rem 1.05rem; box-shadow: 0 18px 44px rgba(28,25,23,0.24);
  opacity: 0; visibility: hidden; transform: translateY(6px) scale(0.97); transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  pointer-events: none; text-align: left; cursor: default;
}
.hs-dot:hover .hs-pop, .hs-dot.active .hs-pop { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.hs-pop .hs-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.3rem; }
.hs-pop h4 { font-family: var(--font-serif); font-size: 1.02rem; color: var(--text); margin-bottom: 0.3rem; line-height: 1.2; }
.hs-pop p { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }
/* popup directions */
.pop-down .hs-pop { top: 150%; left: 50%; transform: translateX(-50%) translateY(6px); }
.pop-down:hover .hs-pop, .pop-down.active .hs-pop { transform: translateX(-50%); }
.pop-up .hs-pop { bottom: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); }
.pop-up:hover .hs-pop, .pop-up.active .hs-pop { transform: translateX(-50%); }
.pop-left .hs-pop { right: 150%; top: 50%; transform: translateY(-50%) translateX(-6px); }
.pop-left:hover .hs-pop, .pop-left.active .hs-pop { transform: translateY(-50%); }
.pop-right .hs-pop { left: 150%; top: 50%; transform: translateY(-50%) translateX(6px); }
.pop-right:hover .hs-pop, .pop-right.active .hs-pop { transform: translateY(-50%); }
/* legend on the copy side */
.anatomy-legend { list-style: none; display: grid; gap: 0.6rem; margin-top: 1.75rem; }
.anatomy-legend li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--text-2); line-height: 1.5; }
.anatomy-legend .lg-n { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(184,134,11,0.3); color: var(--accent); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.anatomy-legend li strong { color: var(--text); font-weight: 600; }
.anatomy-hint { margin-top: 1.5rem; font-size: 0.78rem; color: var(--text-3); display: inline-flex; align-items: center; gap: 0.5rem; }
.anatomy-hint svg { width: 15px; height: 15px; color: var(--accent); }
@media (max-width: 860px) {
  .anatomy-grid { grid-template-columns: 1fr; }
  .anatomy-grid.flip .anatomy-stage { order: 0; }
  .anatomy-img { aspect-ratio: 4/3; max-height: 70vh; }
  /* on small screens force popups to a safe centered position */
  .hs-pop { width: min(232px, 70vw); }
}

/* ---------- Hero: Ken Burns zoom + scroll cue ---------- */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-media img { animation: kenburns 20s ease-in-out infinite alternate; }
.hero-scroll {
  position: absolute; left: var(--pad-x); bottom: 1.6rem; z-index: 4;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3);
}
.hero-scroll .hs-line { width: 46px; height: 1px; background: var(--border); position: relative; overflow: hidden; }
.hero-scroll .hs-line::after { content: ''; position: absolute; top: 0; left: -40%; width: 40%; height: 100%; background: var(--accent); animation: scrollcue 2s cubic-bezier(0.65,0,0.35,1) infinite; }
@keyframes scrollcue { 0% { left: -40%; } 60%,100% { left: 100%; } }
@media (max-width: 920px) { .hero-scroll { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; } .hero-scroll .hs-line::after { animation: none; } }

/* ---------- FAQ accordion ---------- */
.faq-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq-aside .section-title { margin-bottom: 1rem; }
.faq-aside-cta { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.faq-aside-note { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; max-width: 30ch; }
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); line-height: 1.3; transition: color 0.2s; }
.faq-q:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: transform 0.38s cubic-bezier(0.16,1,0.3,1), background 0.25s, color 0.25s, border-color 0.25s; }
.faq-icon svg { width: 13px; height: 13px; }
.faq-item.open .faq-icon { transform: rotate(135deg); background: var(--accent); color: #FAFAF7; border-color: var(--accent); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.42s cubic-bezier(0.16,1,0.3,1); }
.faq-a.open { max-height: 360px; }
.faq-a-inner { padding: 0 0 1.5rem; font-size: 0.95rem; color: var(--text-2); line-height: 1.75; max-width: 62ch; }
.faq-a-inner a { color: var(--accent); text-decoration: underline; }
@media (max-width: 820px) { .faq-split { grid-template-columns: 1fr; } .faq-aside { position: static; } }

/* ---------- Homepage inline-grid responsive collapse ---------- */
@media (max-width: 820px) {
  .focus-split, .why-split, .svc-hero-grid { grid-template-columns: 1fr !important; }
  .svc-hero-grid .feature-media { aspect-ratio: 4/3 !important; }
}
@media (max-width: 640px) {
  .why-features[style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 680px) {
  .portfolio-hd { align-items: flex-start; }
  .portfolio-hd .section-sub { align-self: flex-start !important; }
}

/* ==========================================================
   HERO FIXES + SECTION COHESION  (overrides – keep at end)
   ========================================================== */
/* Hero fits the viewport instead of overflowing / looking huge */
.hero-inner { grid-template-columns: 1.05fr 0.95fr; min-height: clamp(540px, calc(100svh - var(--nav-h)), 760px); max-height: calc(100svh - var(--nav-h)); }
/* Trim the copy's vertical rhythm so it never out-grows the viewport (which
   would stretch the photo column past the fold and clip the CTAs). */
.hero-copy { padding-top: clamp(1.75rem, 4vw, 3rem); padding-bottom: clamp(1.75rem, 4vw, 3rem); }
.hero-title { font-size: clamp(2.4rem, 4.8vw, 4.2rem); margin-bottom: 1.15rem; }
.hero-sub { margin-bottom: 1.75rem; }
.hero-actions { margin-bottom: 0; }
.hero-media img { object-position: center 32%; animation-duration: 26s; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.045); } }
/* darker, readable overlay so the photo tag + credential pop */
.hero-media::after { background: linear-gradient(115deg, rgba(28,25,23,0.12) 0%, transparent 32%), linear-gradient(0deg, rgba(28,25,23,0.42) 0%, transparent 26%); }
.hero-credential { left: 1.5rem; bottom: 1.5rem; }
@media (max-width: 920px) { .hero-credential { left: var(--pad-x); right: var(--pad-x); bottom: 1.25rem; } }
/* Mobile hero: stack into one column and fit the WHOLE hero in a single
   viewport. The copy keeps its natural height; the photo flex-shrinks to fill
   only the leftover space, so text + image are visible without scrolling.
   Must come AFTER the desktop override above (equal specificity, later wins). */
@media (max-width: 920px) {
  /* Let the stacked hero grow with its content instead of being squeezed into
     one viewport – that cram was what made the copy + photo look squished. */
  .hero-inner {
    display: flex; flex-direction: column;
    min-height: 0; max-height: none;
  }
  .hero-copy {
    flex: 0 0 auto;
    padding-top: clamp(2rem, 7vw, 3rem);
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }
  .hero-title { font-size: clamp(2.3rem, 8vw, 3.4rem); margin-bottom: 1.1rem; }
  .hero-sub { margin-bottom: 1.75rem; max-width: 52ch; }
  /* photo gets a real, consistent height of its own rather than fighting for
     leftover flex space (which is what collapsed it before) */
  .hero-media {
    flex: 0 0 auto; position: relative;
    aspect-ratio: 4 / 3; min-height: 0;
  }
}
@media (max-width: 480px) {
  .hero-rating { margin-bottom: 1.25rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero-sub { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .hero-actions { width: 100%; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-media { aspect-ratio: 3 / 4; }
}

/* Hero entrance – eases in on load (independent of scroll-reveal) */
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroReveal { from { opacity: 0; transform: translateX(34px) scale(1.03); } to { opacity: 1; transform: none; } }
#hero .hero-copy > * { opacity: 0; animation: heroUp 0.85s cubic-bezier(0.16,1,0.3,1) forwards; }
#hero .hero-copy > .kicker { animation-delay: 0.10s; }
#hero .hero-copy > .hero-rating { animation-delay: 0.20s; }
#hero .hero-copy > .hero-title { animation-delay: 0.30s; }
#hero .hero-copy > .hero-sub { animation-delay: 0.42s; }
#hero .hero-copy > .hero-actions { animation-delay: 0.54s; }
#hero .hero-copy > .hero-chips { animation-delay: 0.66s; }
#hero .hero-media { opacity: 0; animation: heroReveal 1.05s cubic-bezier(0.16,1,0.3,1) 0.12s forwards; }
#hero .hero-scroll { opacity: 0; animation: heroUp 0.7s ease 1s forwards; }
@media (prefers-reduced-motion: reduce) {
  #hero .hero-copy > *, #hero .hero-media, #hero .hero-scroll { animation: none; opacity: 1; }
  .hero-media img { animation: none; }
}

/* Rotating word – single element, clean fade swap (fixes the overlap/ghost bug) */
.rotate-word { display: inline-block; position: static; min-height: 0; white-space: nowrap; color: var(--accent); font-style: italic;
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }

/* Consistent centered section intros (cohesion) */
.sec-hd-center .kicker { justify-content: center; margin-bottom: 1.25rem; }
.sec-hd-center .kicker .kicker-label { white-space: normal; }

/* ==========================================================
   SERVICE-AREA MAP (contact page)
   ========================================================== */
.map-section { background: var(--bg-cream); }
.map-head { max-width: 56ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.map-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.map-sub { color: var(--text-2); font-size: 1.0625rem; line-height: 1.7; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6.5;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(28,25,23,0.09);
  background: var(--bg-card);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }
@media (max-width: 760px) { .map-frame { aspect-ratio: 4 / 3; border-radius: 14px; } }
@media (max-width: 460px) { .map-frame { aspect-ratio: 3 / 4; } }

/* ===== Süti / adatkezelési sáv (cookie consent bar) ===== */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2147483000;
  max-width: 720px; margin-inline: auto;
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--bg-dark); color: var(--on-dark);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(28,25,23,0.30);
  transform: translateY(140%); opacity: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}
.cookie-bar.is-in { transform: translateY(0); opacity: 1; }
.cookie-bar-text { margin: 0; font-size: .88rem; line-height: 1.55; color: rgba(245,240,232,0.82); }
.cookie-bar-text a { color: var(--accent-h); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar-actions { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.cookie-bar-link { color: rgba(245,240,232,0.70); font-size: .85rem; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cookie-bar-link:hover { color: var(--on-dark); }
.cookie-bar-accept { padding: .6rem 1.4rem; font-size: .85rem; white-space: nowrap; }
@media (max-width: 620px) {
  .cookie-bar { flex-direction: column; align-items: stretch; gap: .9rem; bottom: .75rem; padding: 1rem; }
  .cookie-bar-actions { justify-content: space-between; }
  .cookie-bar-accept { flex: 1; }
}
