/* Horizon Technologies — main stylesheet
   Ported from the approved design mockup. Colors are derived from the real
   logo (dark green + orange) plus the lighter sage-green already used on the
   old site — see the comments in :root below for what each token is for. */

:root {
  --ink: #335150;          /* dark green — logo, headings, primary brand color */
  --hero-bg: #233837;      /* dark green, deepened — hero/dark section background */
  --hero-panel: #2d4847;   /* dark green, slightly lighter — cards/strips on dark */
  --hero-border: #506766;  /* border on dark */
  --sage: #768b8b;         /* lighter green from the logo/site — dividers, decoration */
  --muted-on-cream: #5e7070;
  --muted-on-dark: #a2b0b0;
  --accent: #f8a944;       /* orange — logo accent, CTAs, highlights */
  --accent-hover: #fc8f03;
  --accent-ink: #233837;   /* text color used on top of orange fills */
  --white: #ffffff;
  --tint: #eef0ef;         /* pale, cool sage tint — the rhythm color instead of cream */
  --cream: #f7f3ea;
  --cream-2: #f2ecdd;
  --border-light: #d9dedd;
  --glass-bg: oklch(1 0 0 / 0.06);
  --glass-bg-hover: oklch(1 0 0 / 0.1);
  --glass-border: oklch(1 0 0 / 0.14);
  --radius: 16px;
  /* legacy aliases so the rest of the sheet reads consistently */
  --bg-dark: var(--hero-bg);
  --bg-dark-2: var(--hero-panel);
  --fg-on-dark: var(--white);
  --fg-on-dark-muted: var(--muted-on-dark);
  --bg-light: var(--white);
  --bg-light-2: var(--tint);
  --fg-on-light: var(--ink);
  --fg-on-light-muted: var(--muted-on-cream);
  --accent-strong: var(--ink);
  --border-dark: var(--hero-border);
}
* { box-sizing: border-box; }
body { margin: 0; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { color: var(--accent); }
.page {
  width: 100%;
  background: var(--bg-light);
  color: var(--fg-on-light);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.display { font-family: 'Space Grotesk', system-ui, sans-serif; }
.mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; }
.eyebrow { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.wrap { max-width: 1240px; margin: 0 auto; padding-left: clamp(20px, 4vw, 48px); padding-right: clamp(20px, 4vw, 48px); }
.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; padding: 14px 26px; border-radius: 100px; cursor: pointer; white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn-primary { background: var(--accent); color: var(--accent-ink); border: 1px solid var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(248, 169, 68, 0.35); }
.btn-ghost-dark { background: var(--glass-bg); color: var(--fg-on-dark); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.btn-ghost-dark:hover { background: var(--glass-bg-hover); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--fg-on-light); border: 1px solid var(--border-light); }
.btn-ghost-light:hover { border-color: var(--fg-on-light-muted); }

/* progressive-enhancement scroll reveal (CSS scroll-driven animations) */
.reveal { opacity: 1; }
@supports (animation-timeline: view()) {
  .reveal { opacity: 0; animation: fade-rise linear both; animation-timeline: view(); animation-range: entry 0% cover 35%; }
}
@keyframes fade-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* header — kept light so the real logo (dark-green wordmark) stays legible */
.header { position: sticky; top: 0; z-index: 20; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--border-light); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--muted-on-cream); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 6px; font-family: 'IBM Plex Mono', monospace; font-size: 0.74rem; color: var(--muted-on-cream); }
.lang-switch a.active { color: var(--ink); font-weight: 600; }

/* hero */
.hero { position: relative; background: var(--bg-dark); color: var(--fg-on-dark); overflow: hidden; }
.mesh { position: absolute; inset: 0; pointer-events: none; opacity: 0.9; background:
  radial-gradient(760px 620px at 10% 6%, rgba(118, 139, 139, 0.24) 0%, rgba(118, 139, 139, 0.10) 45%, transparent 75%),
  radial-gradient(900px 760px at 96% 4%, rgba(248, 169, 68, 0.40) 0%, rgba(248, 169, 68, 0.16) 40%, transparent 78%);
  filter: blur(90px); }
.hero-inner { position: relative; padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(48px, 7vw, 88px); }
.hero-eyebrow { color: var(--accent); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 24px 0; max-width: 16ch; }
.hero p.lead { font-size: 1.12rem; color: var(--fg-on-dark-muted); max-width: 48ch; margin: 0 0 36px 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(48px, 6vw, 76px); }
.hero-inner .reveal { position: relative; z-index: 1; }

/* hero — optional background photos (set via the 3 "Hero — zdjęcia w tle"
   picker slots). Purely decorative (aria-hidden), so it never competes
   with the heading for attention: masked to a soft circular fade and
   blended into the dark hero background rather than shown as flat photos.
   0 photos = no change. 1 = shown static. 2–3 = slow looping crossfade. */
.hero-photos { position: absolute; z-index: 0; top: 50%; right: 0; transform: translateY(-50%); width: clamp(240px, 30vw, 420px); aspect-ratio: 1 / 1.05; pointer-events: none; }
.hero-photo { position: absolute; inset: 0; opacity: 0; -webkit-mask-image: radial-gradient(closest-side, #000 60%, transparent 100%); mask-image: radial-gradient(closest-side, #000 60%, transparent 100%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) brightness(0.92); mix-blend-mode: screen; }

.hero-photos-1 .hero-photo { opacity: 0.6; }

.hero-photos-2 .hero-photo { animation: heroPhotoCycle2 12s ease-in-out infinite; }
.hero-photos-2 .hero-photo:nth-child(1) { animation-delay: 0s; }
.hero-photos-2 .hero-photo:nth-child(2) { animation-delay: 6s; }
@keyframes heroPhotoCycle2 { 0% { opacity: 0; } 8% { opacity: 0.6; } 42% { opacity: 0.6; } 50%, 100% { opacity: 0; } }

.hero-photos-3 .hero-photo { animation: heroPhotoCycle3 18s ease-in-out infinite; }
.hero-photos-3 .hero-photo:nth-child(1) { animation-delay: 0s; }
.hero-photos-3 .hero-photo:nth-child(2) { animation-delay: 6s; }
.hero-photos-3 .hero-photo:nth-child(3) { animation-delay: 12s; }
@keyframes heroPhotoCycle3 { 0% { opacity: 0; } 6% { opacity: 0.6; } 28% { opacity: 0.6; } 34%, 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .hero-photos-2 .hero-photo, .hero-photos-3 .hero-photo { animation: none; opacity: 0; }
  .hero-photos-2 .hero-photo:first-child, .hero-photos-3 .hero-photo:first-child { opacity: 0.6; }
}

.illus { width: 100%; height: auto; display: block; }

/* value row */
.value-row { background: var(--bg-light); border-bottom: 1px solid var(--border-light); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; padding-top: 40px; padding-bottom: 40px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item .icon-chip { width: 44px; height: 44px; border-radius: 11px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex: none; }
.value-item .icon-chip .icon { color: var(--accent); width: 22px; height: 22px; }
.value-item strong { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--fg-on-light); margin-bottom: 4px; }
.value-item span { color: var(--fg-on-light-muted); font-size: 0.88rem; }

/* section shared */
section.light { background: var(--bg-light); }
.section-pad { padding-top: clamp(64px, 8vw, 108px); padding-bottom: clamp(64px, 8vw, 108px); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head .eyebrow { color: var(--accent-strong); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; margin: 0 0 16px 0; letter-spacing: -0.02em; line-height: 1.08; }
.section-head p { color: var(--fg-on-light-muted); margin: 0; font-size: 1.04rem; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-copy p { color: var(--fg-on-light-muted); margin: 0 0 16px 0; }
.about-copy p:last-child { margin-bottom: 0; }
.pull { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; margin: 0 0 22px 0; }
.pull span { color: var(--accent-strong); }
.placeholder-photo { aspect-ratio: 4 / 3; border: 1.5px dashed var(--border-light); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--fg-on-light-muted); background: var(--bg-light-2); overflow: hidden; }
.placeholder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.placeholder-photo .icon { width: 30px; height: 30px; }
.placeholder-photo span { font-size: 0.8rem; text-align: center; max-width: 24ch; }

/* offer — light bento grid, one dark "spotlight" tile for accent */
.offer-section { position: relative; background: var(--bg-light); color: var(--fg-on-light); overflow: hidden; }
.offer-bento { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 16px; grid-auto-flow: dense; }
.o-tile { position: relative; cursor: pointer; background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.45s ease, border-color 0.45s ease, color 0.45s ease, opacity 0.18s ease; }
.o-tile.o-dim { opacity: 0.4; }
.o-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(51, 81, 80, 0.10); }
.o-tile .icon { color: var(--accent-strong); transition: width 0.3s ease, height 0.3s ease, color 0.3s ease, filter 0.3s ease; }
.o-tile h3 { font-size: 0.98rem; font-weight: 600; margin: 0; letter-spacing: -0.005em; transition: font-size 0.3s ease, color 0.3s ease; }
.tile-desc { overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease; }
.tile-desc p { margin: 0; font-size: 0.85rem; color: var(--fg-on-light-muted); }
.expand-hint { position: absolute; top: 16px; right: 16px; width: 18px; height: 18px; color: var(--border-light); transition: opacity 0.25s ease; }
.o-featured { grid-column: span 2; grid-row: span 2; justify-content: flex-end; background: var(--hero-bg); border-color: var(--hero-bg); background-image: radial-gradient(var(--hero-border) 1.4px, transparent 1.4px); background-size: 16px 16px; background-position: -6px -6px; color: var(--white); }
/* desktop (4-column) only: anchor the featured tile to its own column band
   instead of always defaulting to columns 1–2. These are plain classes (not
   inline styles) specifically so the tablet/mobile media queries below can
   still override them — an inline style always wins over a media query and
   would silently break the responsive layout. */
.o-featured.gc-1 { grid-column: 1 / span 2; }
.o-featured.gc-2 { grid-column: 2 / span 2; }
.o-featured.gc-3 { grid-column: 3 / span 2; }
.o-featured .icon { width: 34px; height: 34px; color: var(--accent); filter: drop-shadow(0 0 6px rgba(248, 169, 68, 0.5)); }
.o-featured h3 { font-size: 1.25rem; color: var(--white); }
.o-featured .tile-desc p { color: var(--muted-on-dark); }
.o-featured .expand-hint { display: none; }

/* offer tiles — optional photo (set via the tile's Featured image in
   wp-admin). No photo = tile looks exactly as before (icon + flat bg).
   With a photo: darkened + dotted brand-color overlay while collapsed, so
   the icon/title stay readable over any photo; the overlay fades away the
   moment the tile is the expanded one, revealing the photo in full color -
   the "reveal" doubles as a reward for the click. */
.o-tile.has-photo { overflow: hidden; }
.tile-photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.tile-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		radial-gradient(rgba(255, 255, 255, 0.32) 1.2px, transparent 1.2px),
		linear-gradient(to top, rgba(35, 56, 55, 0.92) 0%, rgba(35, 56, 55, 0.45) 55%, rgba(35, 56, 55, 0.58) 100%);
	background-size: 16px 16px, auto;
	background-position: -6px -6px, 0 0;
	transition: opacity 0.4s ease;
}
.tile-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.o-tile.has-photo:not(.o-featured):hover .tile-photo { transform: scale(1.04); }
.o-tile.has-photo h3,
.o-tile.has-photo .tile-desc p { color: var(--white); }
.o-tile.has-photo .icon { color: var(--white); filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35)); }
.o-tile.has-photo .expand-hint { color: rgba(255, 255, 255, 0.7); }
.o-featured.has-photo .tile-overlay { opacity: 0; }
.o-featured.has-photo .tile-photo { transform: scale(1.03); }
.o-featured.has-photo h3,
.o-featured.has-photo .tile-desc p { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }

@keyframes tilePop { from { opacity: 0.5; transform: scale(0.99); } to { opacity: 1; transform: scale(1); } }
.tile-pop { animation: tilePop 0.5s ease-out; }

/* process */
.process-rail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-rail::before { content: ""; position: absolute; top: 16px; left: 4%; right: 4%; height: 1px; background: linear-gradient(90deg, var(--border-light), var(--accent), var(--border-light)); }
.step { position: relative; }
.step-num { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 100px; background: var(--ink); color: var(--white); font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; font-weight: 600; margin-bottom: 18px; box-shadow: 0 0 0 5px var(--bg-light); }
.step h3 { font-size: 1.02rem; font-weight: 600; margin: 0 0 8px 0; }
.step p { color: var(--fg-on-light-muted); font-size: 0.92rem; margin: 0; }

/* featured / nowości */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; border-radius: var(--radius); padding: 30px; background: var(--bg-light); border: 1px solid var(--border-light); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px oklch(0.2 0.02 253 / 0.12); }
.feature-card .icon-wrap { width: 50px; height: 50px; border-radius: 12px; background: var(--hero-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; overflow: hidden; }
.feature-card .icon-wrap .icon { color: var(--accent); width: 24px; height: 24px; }
.feature-card .icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-card .glass-illus { width: 88px; height: auto; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.06rem; font-weight: 600; margin: 0 0 10px 0; }
.feature-card p { color: var(--fg-on-light-muted); font-size: 0.92rem; margin: 0; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.blog-card { border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; background: var(--bg-light); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(51, 81, 80, 0.10); }
.blog-thumb { aspect-ratio: 16 / 10; background: var(--bg-light-2); border-bottom: 1px dashed var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--fg-on-light-muted); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb .icon { width: 26px; height: 26px; }
.blog-body { padding: 20px 22px 24px; }
.blog-date { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--fg-on-light-muted); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.02rem; font-weight: 600; margin: 0 0 8px 0; }
.blog-card p { color: var(--fg-on-light-muted); font-size: 0.9rem; margin: 0; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 4px 24px; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.faq-item:hover { border-color: var(--sage); }
.faq-open { border-color: var(--accent-strong); box-shadow: 0 10px 26px rgba(51, 81, 80, 0.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; background: none; border: none; padding: 20px 0; margin: 0; text-align: left; cursor: pointer; font-family: 'IBM Plex Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--fg-on-light); }
.faq-chevron { width: 20px; height: 20px; color: var(--accent-strong); transition: transform 0.3s ease; }
.faq-open .faq-chevron { transform: rotate(180deg); }
.faq-a { overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease; }
.faq-a p { margin: 0 0 20px 0; color: var(--fg-on-light-muted); font-size: 0.94rem; max-width: 68ch; }

/* cta — dark, mirrors the hero as the page's closing bookend */
.cta { position: relative; background: var(--bg-dark); color: var(--fg-on-dark); overflow: hidden; }
.cta-inner { position: relative; text-align: center; padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; margin: 0 0 18px 0; letter-spacing: -0.03em; line-height: 1.04; }
.cta p { color: var(--fg-on-dark-muted); max-width: 54ch; margin: 0 auto 34px auto; font-size: 1.05rem; }

/* footer — stays dark, continuing straight on from the CTA */
.footer { background: var(--bg-dark-2); color: var(--fg-on-dark-muted); border-top: 1px solid var(--border-dark); }
.footer-inner { padding-top: 60px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--fg-on-dark); margin-bottom: 16px; }
.footer-col h4 { font-family: 'IBM Plex Mono', monospace; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-on-dark-muted); margin: 0 0 16px 0; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--fg-on-dark-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--fg-on-dark); }
.footer-address p { margin: 0 0 4px 0; font-size: 0.92rem; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* generic page/post content (page.php, single.php fallback templates) */
.entry-content { max-width: 760px; }
.entry-content p { color: var(--fg-on-light-muted); }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.entry-header h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 16px 0; }
.entry-meta { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; color: var(--fg-on-light-muted); margin-bottom: 28px; }

@media (max-width: 900px) {
  .hero-photos { display: none; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .placeholder-photo { order: -1; }
  .offer-bento { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .o-featured, .o-featured.gc-1, .o-featured.gc-2, .o-featured.gc-3 { grid-column: span 2; grid-row: span 1; }
  .process-rail { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process-rail::before { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .offer-bento { grid-template-columns: 1fr; }
  .o-featured, .o-featured.gc-1, .o-featured.gc-2, .o-featured.gc-3 { grid-column: 1 / 2; }
  .process-rail { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .lang-switch { display: none; }
  .logo { font-size: 0.95rem; }
  .header .btn { padding: 10px 16px; font-size: 0.82rem; }
  .header-actions { gap: 0; }
}
