:root {
    --violet-50:  #ede6e2;
    --violet-100: #e8dfd9;
    --violet-200: #dacdc5;
    --violet-300: #cfc0b7;
    --violet-400: #bba9a2;
    --violet-500: #a9958d;
    --violet-600: #8a7771;
    --violet-700: #6b5e59;
    --violet-800: #4a3f3b;
    --violet-900: #2e2624;
    --violet-950: #1a1614;
    --gold:       #a9958d;
    --gold-light: #dacdc5;
    --accent:     #a3885a;
	--accent-alt: #5f5441;
    --accent-dim: rgba(196,164,108,0.18);
    --cream:      #e8dfd9;
    --text-dark:  #221e1c;
    --text-mid:   #5a4d4a;
    --text-light: #a9958d;
    --white:      #ffffff;
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  14px;
    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'Nunito Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); overflow-x: hidden; font-weight: 400; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 4vw;
    background: linear-gradient(135deg,
      rgba(18, 14, 13, 0.97) 0%,
      rgba(28, 22, 20, 0.97) 40%,
      rgba(34, 28, 26, 0.97) 65%,
      rgba(22, 17, 15, 0.97) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(169, 149, 141, 0.3);
    box-shadow: 0 1px 0 rgba(169,149,141,0.08), 0 8px 32px rgba(0,0,0,0.4);
  }

  /* Subtle top shimmer line */
  nav::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(169, 149, 141, 0.4) 25%,
      rgba(187, 169, 162, 0.85) 50%,
      rgba(169, 149, 141, 0.4) 75%,
      transparent 100%);
  }

  .nav-left  { display: flex; gap: 1.4rem; align-items: center; justify-content: flex-end; padding-right: 2.5rem; }
  .nav-right { display: flex; gap: 1.4rem; align-items: center; justify-content: flex-start; padding-left: 2.5rem; }
  .nav-left a, .nav-right a {
    color: rgba(232, 210, 170, 0.92); text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
    transition: color 0.25s;
  }
  .nav-left a:hover, .nav-right a:hover { color: #fff; }

  .nav-cta {
    background: linear-gradient(135deg, rgba(169,149,141,0.25), rgba(138,119,113,0.2));
    border: 1px solid rgba(169, 149, 141, 0.6);
    color: rgba(196, 164, 108, 1) !important;
    padding: 0.58rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem !important;
    transition: all 0.25s !important;
  }
  .nav-cta:hover {
    background: linear-gradient(135deg, rgba(187,169,162,0.5), rgba(155,135,128,0.45)) !important;
    border-color: rgba(187,169,162,0.85) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(169,149,141,0.4);
  }

  /* ── LOGO pill ── */
  .nav-logo-wrap {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 0.2rem 1.8rem;
    border-radius: 30px;
    background: linear-gradient(135deg,
      rgba(169,149,141,0.12) 0%,
      rgba(187,169,162,0.06) 50%,
      rgba(169,149,141,0.10) 100%);
    border: 1px solid rgba(169,149,141,0.3);
    box-shadow:
      0 0 20px rgba(169,149,141,0.12),
      inset 0 1px 0 rgba(232,223,217,0.15);
    transition: box-shadow 0.4s, border-color 0.4s;
  }
  .nav-logo-wrap:hover {
    box-shadow: 0 0 32px rgba(169,149,141,0.22), inset 0 1px 0 rgba(232,223,217,0.2);
    border-color: rgba(169,149,141,0.55);
  }
  .nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    position: relative; z-index: 1;
    margin-top: 5px;
    filter: drop-shadow(0 2px 12px rgba(169,149,141,0.25));
    transition: filter 0.3s, transform 0.3s;
  }
  .nav-logo-img:hover {
    filter: drop-shadow(0 2px 20px rgba(169,149,141,0.5));
    transform: scale(1.03);
  }

  /* Glow halo behind logo */
  .nav-logo-wrap::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 36px;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(169,149,141,0.18) 0%, transparent 70%);
    filter: blur(6px);
    pointer-events: none;
    animation: logo-breathe 4s ease-in-out infinite;
  }
  @keyframes logo-breathe {
    0%,100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.06); }
  }



  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 5rem 8vw 2.5rem;
    background: radial-gradient(ellipse 120% 120% at 50% 40%, #16120f 0%, #0c0a08 55%, #040302 100%);
  }
  /* Photo layer as pseudo-element - no z-index conflicts */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.30;
    z-index: 1;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 2;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(40,20,5,0.4) 0%, transparent 70%),
      radial-gradient(ellipse 100% 50% at 50% 110%, rgba(10,5,0,0.88) 0%, transparent 100%);
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 25%, rgba(10,5,0,0.55) 100%);
    pointer-events: none;
  }
  .hero > * { position: relative; z-index: 3; }
  #hero-canvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
  .hero-tag {
    display: inline-block; margin-bottom: 0.5rem;
    font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold); font-weight: 800; font-family: var(--font-body);
  }
  .hero h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 600; color: var(--white); line-height: 1.1;
    max-width: 860px; margin: 0 auto 0.5rem;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero-subtitle {
    font-family: var(--font-display); font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,0.65); font-weight: 400; font-style: italic;
    margin-bottom: 0.6rem; letter-spacing: 0.05em;
  }
  .hero-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.72); max-width: 480px;
    margin: 0 auto 1.2rem; line-height: 1.75; font-weight: 400;
  }
  .hero-pills {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-bottom: 1.2rem; justify-content: center;
  }
  .pill {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.3rem 0.85rem; border: 1px solid rgba(169,149,141,0.28);
    color: rgba(169,149,141,0.75); border-radius: 2px; font-weight: 700;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #bba9a2 100%);
    color: var(--violet-950); padding: 0.85rem 2.4rem; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    border-radius: 2px; text-decoration: none; display: inline-block; transition: all 0.3s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(169,149,141,0.38); filter: brightness(1.08); }
  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.75);
    padding: 0.85rem 2.4rem; border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    border-radius: 2px; text-decoration: none; display: inline-block; transition: all 0.3s;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); color: var(--white); }



/* ── STATS ── */
  .stats {
    background: linear-gradient(160deg, #18140f 0%, #2a2220 50%, #221c1a 100%);
    padding: 4rem 5vw;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px;
    border-bottom: 1px solid rgba(169,149,141,0.12);
  }
  .stat-item { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(169,149,141,0.08); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; display: block; }
  .stat-label { font-size: 0.76rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 700; }

  /* ── SECTIONS ── */
  .section { padding: 8rem 5vw; }
  .section-label { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 1rem; display: block; }
  .section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-dark); }
  .section h2 em { font-style: italic; color: var(--accent); }
  .section-lead { font-size: 1.02rem; color: #5a4d4a; line-height: 1.85; max-width: 600px; font-weight: 400; margin-bottom: 2rem; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
  .check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.94rem; color: #5a4d4a; line-height: 1.55; font-weight: 600; }
  .check-list li::before {
    content: ''; width: 18px; height: 18px; flex-shrink: 0;
    background: var(--violet-100); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23c4a46c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; margin-top: 2px;
  }

  /* ── VISUAL CARD (akademia) ── */
  .visual-card {
    background: linear-gradient(145deg, #2a2220 0%, #3e3330 50%, #302826 100%);
    border-radius: var(--radius-lg); padding: 3rem 2.5rem; position: relative; overflow: hidden;
  }
  .visual-card::before { content: ''; position: absolute; top: -40%; right: -20%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(169,149,141,0.18) 0%, transparent 70%); }
  .visual-card::after  { content: ''; position: absolute; bottom: -30%; left: -10%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(150,130,125,0.15) 0%, transparent 70%); }
  .visual-card .quote { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; font-style: italic; color: var(--gold-light); line-height: 1.55; margin-bottom: 2rem; position: relative; z-index: 1; }
  .visual-card .author { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; position: relative; z-index: 1; }
  .visual-card .author span { color: var(--accent); }

  /* ── DLA KOGO ── */
  .target-section { background: linear-gradient(160deg, #e8dfd9 0%, #dacdc5 40%, #cfc0b7 100%); }
  .target-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .target-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid #cfc0b7; transition: all 0.3s; position: relative; overflow: hidden;
    box-shadow: 0 10px 28px rgba(90,77,74,0.08);
  }
  .target-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(196,164,108,0.3));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .target-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(169,149,141,0.22); }
  .target-card:hover::before { transform: scaleX(1); }
  .target-photo {
    width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
    display: block; filter: saturate(0.78) contrast(0.96);
  }
  .target-content { padding: 1.45rem 1.55rem 1.65rem; }
  .target-card h3 { font-size: 0.96rem; font-weight: 800; color: #221e1c; margin-bottom: 0.5rem; letter-spacing: 0.02em; }
  .target-card p  { font-size: 0.88rem; color: #6e6260; line-height: 1.65; font-weight: 400; }

  /* ── OFERTA ── */
  .offer-section { background: linear-gradient(145deg, #18140f 0%, #2a2220 25%, #342c2a 55%, #221c1a 100%); }
  .offer-section .section-label { color: var(--gold); }
  .offer-section h2 { color: var(--white); }
  .offer-section h2 em { color: var(--accent); }
  .offer-section .section-lead { color: rgba(255,255,255,0.68); }
  .offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; margin-top: 4rem; border: 1px solid rgba(169,149,141,0.12); border-radius: var(--radius-md); overflow: hidden; }
  .offer-card { background: rgba(255,255,255,0.03); padding: 2.5rem 2rem; border-right: 1px solid rgba(169,149,141,0.08); position: relative; overflow: hidden; transition: background 0.3s; }
  .offer-card:hover { background: rgba(169,149,141,0.1); }
  .offer-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(196,164,108,0.3)); opacity: 0; transition: opacity 0.3s; }
  .offer-card:hover::after { opacity: 1; }
  .offer-badge { display: inline-block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 0.8rem; border: 1px solid rgba(196,164,108,0.5); color: var(--accent); margin-bottom: 1.5rem; font-weight: 800; border-radius: var(--radius-sm); }
  .offer-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; line-height: 1.3; }
  .offer-card .tagline { font-size: 0.86rem; color: rgba(255,255,255,0.58); margin-bottom: 1.5rem; font-style: italic; font-family: var(--font-display); }
  .offer-price { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--accent); margin-bottom: 0.25rem; }
  .offer-price small { font-size: 0.84rem; color: rgba(255,255,255,0.52); font-family: var(--font-body); font-weight: 400; }
  .offer-divider { border: none; border-top: 1px solid rgba(169,149,141,0.12); margin: 1.5rem 0; }
  .offer-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .offer-features li { font-size: 0.86rem; color: rgba(255,255,255,0.68); display: flex; gap: 0.6rem; line-height: 1.5; font-weight: 400; }
  .offer-features li::before { content: '✦'; color: var(--accent); opacity: 0.85; flex-shrink: 0; font-size: 0.55rem; margin-top: 4px; }

  /* ── MENTOR ── */
  .mentor-section { background: linear-gradient(170deg, #e8dfd9 0%, #dacdc5 45%, #cfc0b7 100%); }
  .mentor-inner { display: grid; grid-template-columns: 360px 1fr; gap: 6rem; align-items: start; }
  .mentor-visual {
    border-radius: var(--radius-lg); position: relative;
    aspect-ratio: 3/4; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  .mentor-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .mentor-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem 2rem 1.75rem;
    background: linear-gradient(to top, rgba(20,10,2,0.92) 0%, rgba(20,10,2,0.6) 60%, transparent 100%);
  }
  .mentor-name { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--white); }
  .mentor-title { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 0.5rem; font-weight: 800; }
  .hero-signature {
    width: 270px; opacity: 0.75;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 2px 20px rgba(169,149,141,0.4));
    animation: fadeUp 0.7s 0.0s ease both;
  }
  .mentor-info h2 { margin-bottom: 1.5rem; }
  .mentor-info p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.9; font-weight: 400; margin-bottom: 1.5rem; }
  .mentor-info .big-quote { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; font-style: italic; color: #7a6b68; border-left: 2px solid var(--accent); padding-left: 1.5rem; margin: 2rem 0; line-height: 1.55; }

  /* ── LOKALIZACJA ── */
  .location-section {
    background: linear-gradient(135deg, #18140f 0%, #2a2220 30%, #342c2a 65%, #221c1a 100%);
    padding: 6rem 5vw; text-align: center;
  }
  .location-section .section-label { color: var(--gold); }
  .location-section h2 { color: var(--white); margin: 0 auto 1rem; max-width: 600px; }
  .location-section h2 em { color: var(--accent); }
  .location-section p { color: rgba(255,255,255,0.72); font-size: 0.9rem; max-width: 420px; margin: 0 auto 3rem; line-height: 1.85; font-weight: 400; }
  .location-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
  .loc-badge { padding: 0.6rem 1.5rem; border: 1px solid rgba(169,149,141,0.28); color: var(--gold-light); font-size: 0.73rem; letter-spacing: 0.11em; text-transform: uppercase; font-weight: 700; border-radius: var(--radius-md); }

  /* ── CTA FINAL ── */
  .cta-section { background: linear-gradient(150deg, #e8dfd9 0%, #dacdc5 40%, #cfc0b7 100%); padding: 8rem 5vw; text-align: center; }
  .cta-section .section-label { color: var(--accent); }
  .cta-section h2 { max-width: 700px; margin: 0 auto 1.5rem; }
  .cta-section p { color: var(--text-mid); font-size: 0.95rem; max-width: 500px; margin: 0 auto 3rem; line-height: 1.85; font-weight: 400; }
  .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
  .btn-primary-dark {
    background: linear-gradient(135deg, #b8906a 0%, var(--accent) 100%);
    color: var(--white); padding: 1rem 3rem; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
    border-radius: var(--radius-md); text-decoration: none; display: inline-block; transition: all 0.3s;
  }
  .btn-primary-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(169,149,141,0.45); filter: brightness(1.08); }
  .btn-outline-dark {
    background: transparent; color: var(--accent-alt); padding: 1rem 3rem;
    border: 1.5px solid rgba(196,164,108,0.6); cursor: pointer;
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
    border-radius: var(--radius-md); text-decoration: none; display: inline-block; transition: all 0.3s;
  }
  .btn-outline-dark:hover { border-color: var(--accent); background: rgba(196,164,108,0.08); }

  /* ── FOOTER ── */
  footer {
    background: linear-gradient(135deg, #141210 0%, #0e0c0b 50%, #141210 100%);
    padding: 3rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
    border-top: 1px solid rgba(169,149,141,0.12);
  }
  .footer-logo { font-family: var(--font-display); font-size: 1rem; color: var(--gold-light); font-weight: 500; }
  .footer-logo span { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-top: 2px; font-family: var(--font-body); font-weight: 700; }
  .footer-tagline { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.5); font-size: 0.9rem; font-weight: 400; }
  .footer-addr { text-align: right; font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.8; font-weight: 400; }
  .footer-addr strong { color: rgba(255,255,255,0.8); display: block; margin-bottom: 0.25rem; font-weight: 700; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
  .hero-tag      { animation: fadeUp 0.7s 0.0s ease both; }
  .hero h1       { animation: fadeUp 0.7s 0.1s ease both; }
  .hero-subtitle { animation: fadeUp 0.7s 0.2s ease both; }
  .hero-desc     { animation: fadeUp 0.7s 0.3s ease both; }
  .hero-pills    { animation: fadeUp 0.7s 0.4s ease both; }
  .hero-btns     { animation: fadeUp 0.7s 0.5s ease both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 3rem; }
    .mentor-inner { grid-template-columns: 1fr; gap: 3rem; }
    .mentor-visual { aspect-ratio: auto; padding: 2.5rem; min-height: 280px; }

    .offer-grid { grid-template-columns: 1fr; }
    nav {
      grid-template-columns: 1fr;
      gap: 0.45rem;
      padding: 0.55rem 4vw 0.65rem;
    }
    .nav-logo-wrap { order: 1; justify-self: center; padding: 0.16rem 1.1rem; }
    .nav-left,
    .nav-right {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem 0.95rem;
      padding: 0;
    }
    .nav-left { order: 2; }
    .nav-right { order: 3; }
    .nav-left a, .nav-right a {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      line-height: 1;
      padding: 0.24rem 0.16rem;
      white-space: nowrap;
    }
    .nav-cta { font-size: 0.7rem !important; }
    .nav-cta {
      padding: 0.24rem 0.12rem;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .nav-logo-img { height: 42px; }
    .hero { min-height: 100svh; padding: 8.5rem 6vw 2.5rem; }
    .hero::before {
      background-size: auto 100%;
      background-position: 76% center;
    }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.08); }
    footer { flex-direction: column; text-align: center; }
    .footer-addr { text-align: center; }
  }

  @media (max-width: 520px) {
    nav { padding-inline: 3vw; }
    .nav-left, .nav-right { gap: 0.5rem 0.78rem; }
    .nav-left a, .nav-right a { font-size: 0.66rem; letter-spacing: 0.06em; }
    .nav-cta { font-size: 0.66rem !important; }
    .nav-logo-img { height: 36px; }
    .hero { padding-top: 8.25rem; }
    .hero::before { background-position: 78% center; }
  }

