.lang-switcher { display: flex; gap: var(--space-2); align-items: center; }
.lang-switcher a { font-size: 0.7rem; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-full); border: 1px solid var(--color-border); color: var(--color-text-muted); text-decoration: none; letter-spacing: 0.05em; transition: all var(--transition); }
.lang-switcher a:hover, .lang-switcher a[aria-current="page"] { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.site-nav { position: sticky; top: 0; z-index: 100; background: oklch(from var(--color-bg) l c h / 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); }
.nav-inner { max-width: var(--content-wide); margin-inline: auto; padding: var(--space-3) var(--space-6); display: flex; align-items: center; justify-content: space-between; position: relative; }
.nav-logo { display: flex; align-items: center; gap: var(--space-2); text-decoration: none; color: var(--color-text); }
.nav-logo-text { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: var(--space-3); list-style: none; align-items: center; flex-wrap: nowrap; }
.nav-links a { text-decoration: none; color: var(--color-text-muted); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.01em; white-space: nowrap; }
.nav-links a:hover { color: var(--color-primary); }
.nav-right { display: flex; align-items: center; gap: var(--space-4); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: calc(100% + 1px); left: 0; right: 0; background: var(--color-bg); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); padding: var(--space-4) var(--space-6); z-index: 9999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: var(--text-base); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-divider); display: block; }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }
}
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(in oklab, oklch(0.18 0.06 220) 0%, oklch(0.28 0.08 210) 40%, oklch(0.42 0.09 195) 70%, oklch(0.55 0.08 185) 100%); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.12 0.05 220 / 0.9) 0%, oklch(0.12 0.05 220 / 0.3) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--content-wide); margin-inline: auto; padding: var(--space-24) var(--space-6) var(--space-20); }
.hero-eyebrow { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--space-4); }
.hero h1 { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 900; color: #fff; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: var(--space-6); max-width: 12ch; }
.hero h1 em { font-style: italic; color: var(--color-accent); }
.hero-sub { font-size: var(--text-lg); color: oklch(1 0 0 / 0.8); max-width: 52ch; margin-bottom: var(--space-8); font-weight: 300; }
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.btn-hero { background: var(--color-accent); color: #fff; padding: var(--space-3) var(--space-8); border-radius: var(--radius-full); font-size: var(--text-base); font-weight: 600; text-decoration: none; min-height: 52px; display: flex; align-items: center; }
.btn-hero:hover { background: var(--color-accent-hover); }
.btn-hero-ghost { background: oklch(1 0 0 / 0.12); color: #fff; border: 1px solid oklch(1 0 0 / 0.3); padding: var(--space-3) var(--space-8); border-radius: var(--radius-full); font-size: var(--text-base); font-weight: 500; text-decoration: none; min-height: 52px; display: flex; align-items: center; }
.btn-hero-ghost:hover { background: oklch(1 0 0 / 0.2); }
.hero-stats { display: flex; gap: var(--space-8); margin-top: var(--space-10); padding-top: var(--space-8); border-top: 1px solid oklch(1 0 0 / 0.15); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-label { font-size: var(--text-xs); color: oklch(1 0 0 / 0.6); margin-top: var(--space-1); letter-spacing: 0.05em; }
.section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }
.section-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--space-3); }
.section-title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--color-text); margin-bottom: var(--space-6); }
.section-lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 62ch; line-height: 1.6; margin-bottom: var(--space-10); }
.section p { margin-bottom: var(--space-4); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12) var(--space-16); align-items: start; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.75; }
.fact-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-8); }
.fact-item { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-4); background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.fact-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--color-primary-highlight); border-radius: var(--radius-md); color: var(--color-primary); font-size: 1.2rem; }
.fact-content h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--space-1); }
.fact-content p { font-size: var(--text-xs); color: var(--color-text-muted); max-width: none; margin: 0; }
.port-section { background: var(--color-navy); color: var(--color-text-inverse); }
.port-section .section-title { color: #fff; }
.port-section .section-label { color: var(--color-accent); }
.port-section .section-lead { color: oklch(1 0 0 / 0.7); }
.port-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-4); margin-top: var(--space-10); }
@media (max-width: 768px) { .port-grid { grid-template-columns: 1fr; } }
.port-card { background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.1); border-radius: var(--radius-xl); padding: var(--space-6); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.port-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.port-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: #fff; margin-bottom: var(--space-2); }
.port-card p { font-size: var(--text-sm); color: oklch(1 0 0 / 0.65); max-width: none; margin: 0; }
.port-big-stat { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-6); }
@media (max-width: 480px) { .port-big-stat { grid-template-columns: 1fr; } }
.port-stat-box { background: oklch(1 0 0 / 0.05); border: 1px solid oklch(1 0 0 / 0.1); border-radius: var(--radius-xl); padding: var(--space-6); text-align: center; }
.port-stat-box .num { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 900; color: var(--color-accent); line-height: 1; }
.port-stat-box .desc { font-size: var(--text-xs); color: oklch(1 0 0 / 0.55); margin-top: var(--space-2); letter-spacing: 0.05em; text-transform: uppercase; }
.attractions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px,100%), 1fr)); gap: var(--space-5); margin-top: var(--space-10); }
.attraction-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.attraction-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.attraction-img { width: 100%; height: 200px; object-fit: cover; }
.attraction-body { padding: var(--space-5); }
.attraction-tag { display: inline-block; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--color-primary-highlight); color: var(--color-primary); padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); margin-bottom: var(--space-3); }
.attraction-body h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.attraction-body p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; margin: 0; }
.full-bleed-img { width: 100%; height: clamp(280px, 40vw, 520px); object-fit: cover; display: block; }
#domena-na-sprzedaz { background: var(--color-primary); color: var(--color-text-inverse); padding: var(--space-12) var(--space-6); text-align: center; }
#domena-na-sprzedaz h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-4); color: #fff; }
#domena-na-sprzedaz p { color: oklch(1 0 0 / 0.82); margin-bottom: var(--space-3); max-width: 50ch; margin-inline: auto; }
#domena-na-sprzedaz a { color: #fff; font-weight: 700; text-decoration: underline; }
.sale-badge { display: inline-block; background: var(--color-accent); color: #fff; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: var(--space-1) var(--space-4); border-radius: var(--radius-full); margin-bottom: var(--space-4); }
footer { background: var(--color-navy); color: oklch(1 0 0 / 0.55); padding: var(--space-10) var(--space-6) var(--space-6); }
.footer-inner { max-width: var(--content-wide); margin-inline: auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-8); flex-wrap: wrap; margin-bottom: var(--space-8); }
.footer-brand { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: #fff; margin-bottom: var(--space-2); }
.footer-links-group h4 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: var(--space-3); }
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links-group a { text-decoration: none; color: oklch(1 0 0 / 0.5); font-size: var(--text-sm); }
.footer-links-group a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / 0.1); padding-top: var(--space-5); font-size: var(--text-xs); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); }
.footer-copy a { color: oklch(1 0 0 / 0.4); text-decoration: none; }
