  :root {
    --navy: #0B1E3A;
    --gold: #C9A84C;
    --gold-light: #DFC27A;
    --linen: #F7F4EE;
    --linen-dark: #EDE9E0;
    --ink: #1A1A1A;
    --ink-light: #4A4A4A;
    --border: rgba(10,30,58,0.15);
    --border-gold: rgba(201,168,76,0.4);
    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-sans: 'Jost', Helvetica, sans-serif;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--ff-sans);
    background: var(--linen);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }
  body.lightbox-open { overflow: hidden; }

  /* ── UTILITY ─────────────────────────────────────────── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
  @media (max-width: 768px) { .container { padding: 0 20px; } }

  .label {
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .rule {
    width: 40px;
    height: 0.5px;
    background: var(--gold);
    margin: 20px 0;
  }

  /* ── NAV ──────────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--linen);
    border-bottom: 0.5px solid var(--border);
    transition: background 0.3s;
  }

  nav.scrolled {
    background: rgba(247,244,238,0.97);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--navy);
  }

  .nav-logo-img {
    display: block;
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 50%;
    overflow: hidden;
  }

  .nav-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-wordmark-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--navy);
    line-height: 1;
  }

  .nav-wordmark-sub {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }

  .nav-cta {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--linen) !important;
    background: var(--navy);
    padding: 10px 22px;
    text-decoration: none;
    border: 0.5px solid var(--navy);
    transition: background 0.2s, color 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy) !important;
  }

  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 0.5px;
    background: var(--navy);
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  .nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--linen);
    border-top: 0.5px solid var(--border);
    padding: 24px 20px;
    gap: 20px;
  }

  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-mobile .nav-cta {
    text-align: center;
    padding: 14px;
    color: var(--linen) !important;
  }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }

  @media (max-width: 768px) {
    .nav-logo { gap: 10px; }
    .nav-logo-img { height: 60px; width: 60px; }
    .nav-wordmark-name { font-size: 19px; }
    .nav-wordmark-sub { font-size: 8px; letter-spacing: 0.16em; }
  }

  /* ── HERO ─────────────────────────────────────────────── */
  #hero {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .hero-top {
    flex: 1;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    padding: 80px 40px 64px;
    position: relative;
    overflow: hidden;
  }

  /* Hero background photo layer */
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center right;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .hero-bg.image-loaded img { opacity: 1; }

  /* Gradient overlay: granat zakrywa ~60% od lewej, zdjęcie widoczne na reszcie */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      #0B1E3A 0%,
      #0B1E3A 30%,
      rgba(11,30,58,0.7) 45%,
      rgba(11,30,58,0.05) 55%,
      transparent 65%
    );
  }

  /* Photo placeholder hint — visible until real photo is added */
  .hero-bg-hint {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
  }

  .hero-bg-hint .ph-icon {
    width: 48px; height: 48px;
    border-color: rgba(201,168,76,0.5);
  }

  .hero-bg-hint .ph-label {
    max-width: 160px;
    line-height: 1.7;
  }

  .hero-bg.image-loaded + .hero-bg-hint,
  .hero-bg.image-loaded ~ .hero-bg-hint { display: none; }

  .hero-top > *:not(.hero-bg):not(.hero-bg-hint) { position: relative; z-index: 2; }

  .hero-bg {
    position: absolute !important;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: right center;
  }

  .hero-top::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--linen);
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
    z-index: 3;
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }

  .hero-text .label { color: var(--gold); }

  .hero-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
    color: var(--linen);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-top: 16px;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-family: var(--ff-sans);
    font-size: 15px;
    font-weight: 300;
    color: rgba(247,244,238,0.65);
    margin-top: 20px;
    max-width: 420px;
    line-height: 1.8;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
  }

  .hero-stat-num {
    font-family: var(--ff-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
  }

  .hero-stat-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247,244,238,0.5);
    margin-top: 6px;
  }

  .hero-cards {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border: 0.5px solid rgba(201,168,76,0.3);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
    z-index: 0;
  }

  .hero-card:hover::before { width: 3px; }

  .hero-card:hover {
    border-color: rgba(201,168,76,0.7);
    background: rgba(201,168,76,0.06);
  }

  .hero-card-content { position: relative; z-index: 1; }

  .hero-card-type {
    font-family: var(--ff-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .hero-card-title {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--linen);
    letter-spacing: 0.01em;
  }

  .hero-card-desc {
    font-size: 12px;
    color: rgba(247,244,238,0.5);
    margin-top: 4px;
    font-weight: 300;
  }

  .hero-card-arrow {
    font-size: 20px;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: transform 0.25s;
  }

  .hero-card:hover .hero-card-arrow { transform: translateX(6px); }

  .hero-bottom { padding: 0 40px 48px; background: var(--linen); }

  @media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-top { padding: 48px 20px 52px; }
    .hero-bottom { padding: 0 20px 32px; }
    .hero-stats { gap: 24px; }
  }

  /* ── SECTION COMMON ───────────────────────────────────── */
  .section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 56px;
  }

  .section-title {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-top: 12px;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-body {
    font-size: 15px;
    color: var(--ink-light);
    max-width: 520px;
    margin-top: 16px;
    line-height: 1.85;
  }

  /* ── JACHTY ───────────────────────────────────────────── */
  #jachty {
    background: var(--navy);
    padding: 100px 0;
  }

  #jachty .label { color: var(--gold); }
  #jachty .section-title { color: var(--linen); }
  #jachty .section-body { color: rgba(247,244,238,0.6); }
  #jachty .rule { background: var(--gold); }

  .yacht-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
  }

  .photo-placeholder {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(201,168,76,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    text-align: center;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .photo-placeholder > img,
  .onas-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1;
  }

  #jachty .photo-grid .photo-placeholder > img,
  #meble .photo-grid .photo-placeholder > img {
    cursor: pointer;
  }

  .photo-placeholder.image-loaded > img,
  .onas-photo.image-loaded > img {
    opacity: 1;
  }

  .photo-placeholder.image-loaded > .ph-icon,
  .photo-placeholder.image-loaded > .ph-label,
  .photo-placeholder.image-loaded > .galeria-item-ph,
  .onas-photo.image-loaded > .ph-icon,
  .onas-photo.image-loaded > .ph-label-dark {
    display: none;
  }

  .photo-placeholder:hover {
    border-color: rgba(201,168,76,0.5);
    background: rgba(255,255,255,0.07);
  }

  .photo-placeholder.large {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
  }

  .ph-icon {
    width: 32px; height: 32px;
    border: 0.5px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
  }

  .ph-icon svg { width: 16px; height: 16px; opacity: 0.4; fill: var(--gold); }

  .ph-label {
    font-family: var(--ff-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.5);
    line-height: 1.6;
  }

  /* Linen sections */
  .ph-label-dark { color: rgba(10,30,58,0.35) !important; }
  .photo-placeholder.linen-ph {
    background: rgba(10,30,58,0.04);
    border-color: rgba(10,30,58,0.12);
  }
  .photo-placeholder.linen-ph:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.05);
  }
  .photo-placeholder.linen-ph .ph-icon { border-color: rgba(10,30,58,0.15); }
  .photo-placeholder.linen-ph .ph-icon svg { fill: var(--navy); opacity: 0.25; }

  .yacht-services { padding-top: 8px; }

  .services-list {
    list-style: none;
    border-top: 0.5px solid rgba(201,168,76,0.2);
  }

  .services-list li {
    padding: 16px 0;
    border-bottom: 0.5px solid rgba(201,168,76,0.12);
    display: flex;
    align-items: baseline;
    gap: 16px;
  }

  .services-list li .svc-dot {
    width: 4px; height: 4px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
  }

  .svc-name {
    font-family: var(--ff-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--linen);
    display: block;
    line-height: 1.3;
    margin: 0;
  }

  .svc-desc {
    font-size: 12px;
    color: rgba(247,244,238,0.45);
    display: block;
    margin-top: 3px;
    font-weight: 300;
  }

  .yacht-note {
    margin-top: 36px;
    padding: 24px;
    border: 0.5px solid rgba(201,168,76,0.25);
    border-left: 2px solid var(--gold);
  }

  .yacht-note p {
    font-family: var(--ff-serif);
    font-size: 16px;
    font-style: italic;
    color: rgba(247,244,238,0.7);
    line-height: 1.7;
  }

  @media (max-width: 900px) {
    .yacht-layout { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ── MEBLE ────────────────────────────────────────────── */
  #meble { padding: 100px 0; background: var(--linen); }

  .meble-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .meble-layout { grid-template-columns: 1fr; gap: 48px; }
    .meble-left { order: 2; }
    .meble-right { order: 1; }
  }

  .meble-services { border-top: 0.5px solid var(--border); }

  .meble-services li {
    padding: 16px 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 16px;
    list-style: none;
  }

  .meble-services .svc-dot { background: var(--navy); }

  .meble-services .svc-name { color: var(--navy); }
  .meble-services .svc-desc { color: var(--ink-light); }

  /* ── GALERIA ──────────────────────────────────────────── */
  #galeria {
    background: var(--navy);
    padding: 100px 0;
  }

  #galeria .label { color: var(--gold); }
  #galeria .section-title { color: var(--linen); }
  #galeria .rule { background: var(--gold); }

  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .galeria-item {
    aspect-ratio: 3/4;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    cursor: default;
    transition: border-color 0.2s;
    position: relative;
    overflow: hidden;
  }

  .galeria-item:hover { border-color: rgba(201,168,76,0.45); }

  .galeria-item > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 0;
    cursor: pointer;
  }

  .galeria-item.image-loaded > img {
    opacity: 1;
  }

  .galeria-item.image-loaded .galeria-item-ph {
    display: none;
  }

  .galeria-item-label {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.5);
    font-weight: 400;
    position: relative;
    z-index: 1;
  }

  .galeria-item-ph {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .galeria-item-ph .ph-icon { margin: 0; }

  @media (max-width: 900px) { .galeria-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .galeria-grid { grid-template-columns: 1fr; } }

  /* ── LIGHTBOX ─────────────────────────────────────────── */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: rgba(10, 16, 28, 0.88);
  }

  .lightbox.open {
    display: flex;
  }

  .lightbox-content {
    max-width: min(92vw, 1080px);
    max-height: min(88vh, 920px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(88vh - 56px);
    width: auto;
    height: auto;
    border: 1px solid rgba(201,168,76,0.28);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  }

  .lightbox-caption {
    margin: 0;
    color: rgba(247,244,238,0.9);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.45);
    background: rgba(11,30,58,0.65);
    color: var(--linen);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .lightbox-close:hover {
    background: rgba(201,168,76,0.2);
  }

  /* ── O NAS ────────────────────────────────────────────── */
  #onas { padding: 100px 0; background: var(--linen-dark); }

  .onas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  @media (max-width: 900px) { .onas-layout { grid-template-columns: 1fr; gap: 48px; } }

  .onas-photo {
    aspect-ratio: 4/5;
    background: rgba(10,30,58,0.06);
    border: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 32px;
  }

  .onas-photo .ph-label-dark {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10,30,58,0.3);
  }

  .onas-text p {
    font-size: 15px;
    color: var(--ink-light);
    line-height: 1.85;
    margin-bottom: 18px;
  }

  .onas-text p:first-of-type {
    font-family: var(--ff-serif);
    font-size: 18px;
    color: var(--navy);
    font-style: italic;
    line-height: 1.65;
  }

  .onas-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 0.5px solid var(--border);
    border-left: 0.5px solid var(--border);
  }

  .onas-stat {
    padding: 24px 20px;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }

  .onas-stat-num {
    font-family: var(--ff-serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
  }

  .onas-stat-num sup {
    font-size: 18px;
    vertical-align: super;
    color: var(--gold);
  }

  .onas-stat-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-top: 8px;
  }

  /* ── KONTAKT ──────────────────────────────────────────── */
  #kontakt { padding: 100px 0; background: var(--linen); }

  .kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  @media (max-width: 900px) { .kontakt-layout { grid-template-columns: 1fr; gap: 48px; } }

  .kontakt-info .section-title { font-size: clamp(24px, 3vw, 40px); }

  .kontakt-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 0.5px solid var(--border);
  }

  .kontakt-detail {
    padding: 18px 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 24px;
  }

  .kontakt-detail-key {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 80px;
    flex-shrink: 0;
  }

  .kontakt-detail-val {
    font-family: var(--ff-serif);
    font-size: 16px;
    color: var(--navy);
    line-height: 1.5;
  }

  .kontakt-detail-val a {
    color: inherit;
    text-decoration: none;
  }
  .kontakt-detail-val a:hover { color: var(--gold); }

  /* Form */
  .wycena-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--border);
  }

  .form-title {
    padding: 24px 28px;
    border-bottom: 0.5px solid var(--border);
    font-family: var(--ff-serif);
    font-size: 20px;
    color: var(--navy);
    background: var(--linen-dark);
  }

  .form-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-field label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--ink);
    background: var(--linen);
    border: 0.5px solid var(--border);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--gold);
  }

  .form-field input.error,
  .form-field select.error,
  .form-field textarea.error {
    border-color: #c0392b;
  }

  .form-field textarea { resize: vertical; min-height: 100px; }

  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='0.8' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }

  .form-submit {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--linen);
    background: var(--navy);
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--gold); color: var(--navy); }

  .form-message {
    display: none;
    padding: 20px 28px;
    background: rgba(201,168,76,0.08);
    border-top: 0.5px solid var(--border-gold);
    font-family: var(--ff-serif);
    font-size: 16px;
    font-style: italic;
    color: var(--navy);
  }

  .form-message.visible { display: block; }

  .form-message.error {
    background: rgba(192,57,43,0.08);
    border-top-color: rgba(192,57,43,0.35);
    color: #7A1F16;
  }

  /* ── FOOTER ───────────────────────────────────────────── */
  footer {
    background: var(--navy);
    padding: 64px 0 40px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 0.5px solid rgba(201,168,76,0.15);
  }

  @media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  }

  .footer-brand {}

  .footer-logo-name {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--linen);
    letter-spacing: 0.03em;
  }

  .footer-logo-sub {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
  }

  .footer-tagline {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(247,244,238,0.45);
    line-height: 1.75;
    max-width: 260px;
    font-style: italic;
    font-family: var(--ff-serif);
  }

  .footer-col-title {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(247,244,238,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
  }

  .footer-contact-key {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
  }

  .footer-contact-val {
    font-size: 13px;
    color: rgba(247,244,238,0.65);
    overflow-wrap: anywhere;
  }

  .footer-contact-val a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contact-val a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(247,244,238,0.3);
    letter-spacing: 0.05em;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
  }

  .footer-bottom-links a {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247,244,238,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* ── COOKIES BAR ─────────────────────────────────────── */
  .cookies-bar {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 180;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    background: rgba(247,244,238,0.98);
    border: 0.5px solid var(--border-gold);
    box-shadow: 0 18px 50px rgba(11,30,58,0.16);
  }

  .cookies-bar.visible {
    display: flex;
  }

  .cookies-bar p {
    margin: 0;
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.65;
  }

  .cookies-bar a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 0.5px solid var(--gold);
  }

  .cookies-bar a:hover {
    color: var(--gold);
  }

  .cookies-button {
    flex-shrink: 0;
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--linen);
    background: var(--navy);
    border: 0.5px solid var(--navy);
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .cookies-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }

  /* ── RESPONSIVE REFINEMENTS ──────────────────────────── */
  @media (max-width: 768px) {
    #jachty,
    #meble,
    #galeria,
    #onas,
    #kontakt {
      padding: 72px 0;
    }

    .section-header {
      margin-bottom: 40px;
    }

    .hero-stats {
      flex-wrap: wrap;
      row-gap: 18px;
    }

    .footer-bottom {
      align-items: flex-start;
    }

    .cookies-bar {
      left: 16px;
      right: 16px;
      bottom: 16px;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .cookies-button {
      width: 100%;
    }
  }

  @media (max-width: 600px) {
    .footer-bottom {
      flex-direction: column;
    }

    .footer-bottom-links {
      gap: 14px 20px;
    }
  }

  @media (max-width: 480px) {
    #jachty,
    #meble,
    #galeria,
    #onas,
    #kontakt {
      padding: 64px 0;
    }

    .hero-top {
      padding: 44px 20px 48px;
    }

    .hero-h1 {
      font-size: clamp(34px, 12vw, 44px);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .hero-stat-label {
      font-size: 9px;
      letter-spacing: 0.12em;
    }

    .hero-card {
      padding: 22px 20px;
    }

    .hero-card-title {
      font-size: 20px;
    }

    .galeria-item {
      aspect-ratio: 4/3;
    }

    .kontakt-detail {
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
    }

    .kontakt-detail-key {
      min-width: 0;
    }

    .kontakt-detail-val,
    .kontakt-detail-val a {
      overflow-wrap: anywhere;
    }

    .form-title,
    .form-body,
    .form-message {
      padding-left: 22px;
      padding-right: 22px;
    }

    .form-submit {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }

    .onas-stats {
      grid-template-columns: 1fr;
    }
  }

  /* ── PAGE LOAD ANIMATION ──────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── POLICY PAGE ─────────────────────────────────────── */
  .page-header {
    padding-top: 70px;
    background: var(--navy);
  }

  .page-header-inner {
    padding: 72px 0 64px;
  }

  .page-header h1 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: var(--linen);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .page-header .page-header-meta {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(247,244,238,0.45);
    margin-top: 16px;
    letter-spacing: 0.05em;
  }

  .policy-content {
    padding: 80px 0 100px;
    max-width: 760px;
  }

  .policy-section {
    margin-bottom: 52px;
  }

  .policy-section:last-child {
    margin-bottom: 0;
  }

  .policy-section h2 {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .policy-section p {
    font-size: 15px;
    color: var(--ink-light);
    line-height: 1.85;
    margin-bottom: 14px;
  }

  .policy-section p:last-child { margin-bottom: 0; }

  .policy-section ul {
    list-style: none;
    margin-top: 4px;
    border-top: 0.5px solid var(--border);
  }

  .policy-section ul li {
    font-size: 15px;
    color: var(--ink-light);
    line-height: 1.75;
    padding: 10px 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 14px;
  }

  .policy-section ul li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .policy-highlight {
    padding: 24px 28px;
    border: 0.5px solid var(--border);
    border-left: 2px solid var(--gold);
    background: var(--linen-dark);
    margin-top: 8px;
  }

  .policy-highlight p {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.8;
    margin: 0;
  }

  .policy-highlight strong {
    font-family: var(--ff-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--navy);
    display: block;
    margin-bottom: 12px;
  }

  .policy-divider {
    width: 100%;
    height: 0.5px;
    background: var(--border);
    margin: 52px 0;
  }

  body.policy-page footer {
    padding: 60px 0 0;
  }

  body.policy-page .footer-inner {
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 0.5px solid rgba(247,244,238,0.1);
  }

  @media (max-width: 768px) {
    body.policy-page .footer-inner { gap: 40px; }
  }

  body.policy-page .footer-logo-name {
    font-size: 24px;
  }

  body.policy-page .footer-logo-sub {
    font-family: var(--ff-sans);
  }

  body.policy-page .footer-tagline {
    color: rgba(247,244,238,0.4);
    margin-top: 16px;
    line-height: 1.7;
    font-weight: 300;
    font-style: normal;
    font-family: var(--ff-sans);
    max-width: none;
  }

  body.policy-page .footer-links {
    display: block;
  }

  body.policy-page .footer-links li {
    margin-bottom: 10px;
  }

  body.policy-page .footer-links a {
    font-weight: 300;
  }

  body.policy-page .footer-contact-item {
    margin-bottom: 16px;
  }

  body.policy-page .footer-contact-key {
    letter-spacing: 0.2em;
    color: var(--gold);
  }

  body.policy-page .footer-contact-val {
    font-family: var(--ff-serif);
    font-size: 15px;
    color: rgba(247,244,238,0.75);
  }

  body.policy-page .footer-bottom {
    padding: 24px 0;
  }

  @media (max-width: 600px) {
    body.policy-page .footer-bottom {
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }
  }

  body.policy-page .footer-copy {
    letter-spacing: 0.1em;
  }

  body.policy-page .footer-bottom-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: none;
  }
