    /* ============================================================
       CSS CUSTOM PROPERTIES — Design Tokens
    ============================================================ */
    :root {
      --charcoal:      #1a1a1a;
      --charcoal-mid:  #242424;
      --charcoal-light:#2e2e2e;
      --nude:          #f0e8df;
      --nude-dark:     #e0d4c8;
      --nude-deeper:   #c9b8a8;
      --gold-start:    #c9a84c;
      --gold-mid:      #e8d48b;
      --gold-end:      #a87832;
      --gold-gradient: linear-gradient(105deg, #a87832 0%, #e8d48b 40%, #c9a84c 60%, #f0dc9a 80%, #a87832 100%);
      --text-light:    #f0e8df;
      --text-muted:    #9a8878;
      --ff-display:    'Playfair Display', Georgia, serif;
      --ff-body:       'Montserrat', sans-serif;
      --max-w:         1280px;
      --section-gap:   clamp(80px, 12vw, 140px);
      --transition:    0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body {
      background-color: var(--charcoal);
      color: var(--text-light);
      font-family: var(--ff-body);
      font-weight: 300;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    a { color: inherit; text-decoration: none; }

    /* ============================================================
       UTILITY CLASSES
    ============================================================ */
    .gold-text {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% auto;
      animation: shineText 6s linear infinite;
    }

    @keyframes shineText {
      0%   { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .gold-line {
      display: block;
      width: 60px;
      height: 1px;
      background: var(--gold-gradient);
      margin: 0 auto 2rem;
    }

    .section-label {
      font-family: var(--ff-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold-start);
      margin-bottom: 1rem;
    }

    /* ============================================================
       REVEAL ANIMATION (Intersection Observer)
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background var(--transition), padding var(--transition);
    }

    #nav.scrolled {
      background: rgba(26, 26, 26, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-logo {
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .nav-logo span { display: block; font-size: 0.55rem; letter-spacing: 0.4em; font-weight: 400; color: var(--nude-deeper); margin-top: 2px; }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--nude);
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold-gradient);
      transition: width 0.4s ease;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 0.65rem 1.6rem;
      border: 1px solid transparent;
      background: var(--gold-gradient);
      background-clip: padding-box;
      color: var(--charcoal);
      position: relative;
      transition: opacity 0.3s;
    }
    .nav-cta:hover { opacity: 0.85; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--nude);
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--charcoal);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--ff-display);
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--nude);
    }
    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      font-size: 1.8rem;
      background: none;
      border: none;
      color: var(--nude);
      cursor: pointer;
      font-family: var(--ff-display);
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-image-col {
      position: relative;
      overflow: hidden;
    }

    .hero-image-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.06);
      transition: transform 8s ease;
      filter: brightness(0.75);
    }

    #hero:hover .hero-image-col img {
      transform: scale(1);
    }

    /* Decorative overlay stripe */
    .hero-image-col::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--charcoal));
    }

    .hero-content-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(2rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
      position: relative;
    }

    .hero-eyebrow {
      font-size: 0.6rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--gold-start);
      font-weight: 600;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold-gradient);
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 400;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero-title em {
      font-style: italic;
      display: block;
    }

    .hero-subtitle {
      font-size: clamp(0.8rem, 1.2vw, 0.95rem);
      font-weight: 300;
      line-height: 1.9;
      color: var(--nude-deeper);
      max-width: 380px;
      margin-bottom: 3rem;
      letter-spacing: 0.03em;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 1rem 2.4rem;
      background: var(--gold-gradient);
      background-size: 200% auto;
      color: var(--charcoal);
      transition: background-position 0.5s ease, transform 0.3s ease;
      position: relative;
    }
    .btn-primary:hover {
      background-position: right center;
      transform: translateY(-2px);
    }

    .btn-ghost {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--nude);
      border-bottom: 1px solid rgba(240,232,223,0.35);
      padding-bottom: 4px;
      transition: color 0.3s, border-color 0.3s;
    }
    .btn-ghost:hover { color: #fff; border-color: var(--gold-start); }

    /* Vertical text label */
    .hero-vertical-text {
      position: absolute;
      bottom: 3rem;
      right: -2.5rem;
      transform: rotate(90deg);
      transform-origin: right center;
      font-size: 0.55rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.5rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .scroll-hint-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold-start), transparent);
      animation: scrollLine 1.8s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%, 100% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
    }

    /* ============================================================
       INTRO STRIP
    ============================================================ */
    #intro-strip {
      background: var(--charcoal-mid);
      border-top: 1px solid rgba(201,168,76,0.12);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      padding: 2rem 0;
      overflow: hidden;
    }

    .strip-ticker {
      display: flex;
      gap: 5rem;
      white-space: nowrap;
      animation: ticker 25s linear infinite;
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--nude-deeper);
    }
    .strip-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold-gradient);
      flex-shrink: 0;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ============================================================
       PORTFOLIO / GALLERY (Masonry)
    ============================================================ */
    #portfolio {
      padding: var(--section-gap) clamp(1.5rem, 5vw, 4rem);
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: clamp(3rem, 5vw, 5rem);
    }

    .section-title {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--nude);
    }
    .section-title em {
      font-style: italic;
      color: #fff;
    }
    .section-desc {
      margin-top: 1.2rem;
      font-size: 0.82rem;
      line-height: 1.9;
      color: var(--text-muted);
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      letter-spacing: 0.03em;
    }

    /* Masonry grid via CSS columns */
    .masonry-grid {
      columns: 3;
      column-gap: 1.2rem;
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 1.2rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .masonry-item img {
      width: 100%;
      display: block;
      transition: transform 0.7s var(--transition), filter 0.7s ease;
      filter: brightness(0.85) saturate(0.9);
    }
    .masonry-item:hover img {
      transform: scale(1.06);
      filter: brightness(1) saturate(1);
    }

    .masonry-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.5s ease;
      display: flex;
      align-items: flex-end;
      padding: 1.2rem;
    }
    .masonry-item:hover .masonry-item-overlay { opacity: 1; }

    .masonry-item-label {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--nude);
    }

    /* Alternating tall / short items */
    .masonry-item:nth-child(3n+1) img { aspect-ratio: 3 / 4; }
    .masonry-item:nth-child(3n+2) img { aspect-ratio: 4 / 5; }
    .masonry-item:nth-child(3n+3) img { aspect-ratio: 1 / 1; }

    /* ============================================================
       FEATURES / ATUTY
    ============================================================ */
    #features {
      padding: var(--section-gap) clamp(1.5rem, 5vw, 4rem);
      background: var(--charcoal-mid);
      position: relative;
      overflow: hidden;
    }

    #features::before {
      content: 'PRESTIGE';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--ff-display);
      font-size: clamp(6rem, 18vw, 18rem);
      font-weight: 700;
      color: rgba(255,255,255,0.02);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.2em;
    }

    .features-grid {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(2rem, 4vw, 4rem);
      position: relative;
      z-index: 1;
    }

    .feature-card {
      text-align: center;
      padding: clamp(2rem, 3vw, 3rem);
      border: 1px solid rgba(201,168,76,0.1);
      background: rgba(255,255,255,0.015);
      backdrop-filter: blur(4px);
      transition: border-color 0.4s, background 0.4s, transform 0.4s;
    }
    .feature-card:hover {
      border-color: rgba(201,168,76,0.35);
      background: rgba(201,168,76,0.04);
      transform: translateY(-6px);
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      margin: 0 auto 1.8rem;
      position: relative;
    }
    .feature-icon svg {
      width: 100%;
      height: 100%;
    }

    .feature-title {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--nude);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .feature-desc {
      font-size: 0.78rem;
      line-height: 1.9;
      color: var(--text-muted);
      letter-spacing: 0.03em;
    }

    /* ============================================================
       TESTIMONIALS / OPINIE
    ============================================================ */
    #testimonials {
      padding: var(--section-gap) clamp(1.5rem, 5vw, 4rem);
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: clamp(3rem, 5vw, 5rem);
    }

    .testimonial-card {
      padding: clamp(1.8rem, 3vw, 2.8rem);
      background: var(--charcoal-mid);
      border-top: 2px solid transparent;
      border-image: var(--gold-gradient) 1;
      position: relative;
    }

    .testimonial-quote-mark {
      font-family: var(--ff-display);
      font-size: 5rem;
      line-height: 0.6;
      color: rgba(201,168,76,0.15);
      display: block;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .testimonial-text {
      font-family: var(--ff-display);
      font-size: clamp(0.95rem, 1.4vw, 1.1rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.75;
      color: var(--nude);
      margin-bottom: 2rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(201,168,76,0.3);
    }
    .testimonial-avatar img { width: 100%; height: 100%; }

    .testimonial-name {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--nude);
      display: block;
    }
    .testimonial-role {
      font-size: 0.62rem;
      color: var(--text-muted);
      display: block;
      margin-top: 2px;
      letter-spacing: 0.05em;
    }

    .stars {
      display: flex;
      gap: 3px;
      margin-top: 0.8rem;
    }
    .star {
      width: 10px;
      height: 10px;
      fill: var(--gold-start);
    }

    /* ============================================================
       BOOKING / CTA SECTION
    ============================================================ */
    #booking {
      padding: var(--section-gap) clamp(1.5rem, 5vw, 4rem);
      background: var(--charcoal-mid);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #booking::before,
    #booking::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    #booking::before {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    .booking-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }

    .booking-title {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    .booking-sub {
      font-size: 0.82rem;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 3rem;
      letter-spacing: 0.04em;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: #111;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
      border-top: 1px solid rgba(201,168,76,0.12);
    }

    .footer-grid {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .footer-brand-name {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      font-weight: 400;
      color: #fff;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
    }
    .footer-brand-tagline {
      font-size: 0.72rem;
      line-height: 1.85;
      color: var(--text-muted);
      max-width: 240px;
      letter-spacing: 0.03em;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    .footer-social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201,168,76,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--nude-deeper);
      font-size: 0.75rem;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }
    .footer-social-link:hover {
      border-color: var(--gold-start);
      color: var(--gold-start);
      background: rgba(201,168,76,0.07);
    }

    .footer-col-title {
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold-start);
      margin-bottom: 1.5rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-col ul li a,
    .footer-col ul li {
      font-size: 0.78rem;
      color: var(--text-muted);
      transition: color 0.3s;
      line-height: 1.5;
      letter-spacing: 0.03em;
    }
    .footer-col ul li a:hover { color: var(--nude); }

    .hours-item {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }
    .hours-day { color: var(--nude-deeper) !important; font-size: 0.75rem !important; }
    .hours-time { color: var(--text-muted) !important; font-size: 0.73rem !important; }

    /* Map placeholder */
    .map-placeholder {
      margin-top: 1.5rem;
      width: 100%;
      aspect-ratio: 16/7;
      background: var(--charcoal-light);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(201,168,76,0.1);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      /* Replace with <iframe> Google Maps embed in production */
    }

    .footer-bottom {
      max-width: var(--max-w);
      margin: 2rem auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.65rem;
      color: rgba(154,136,120,0.5);
      letter-spacing: 0.06em;
    }

    /* ============================================================
       RESPONSIVE — TABLET
    ============================================================ */
    @media (max-width: 1024px) {
      .masonry-grid { columns: 2; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ============================================================
       RESPONSIVE — MOBILE
    ============================================================ */
    @media (max-width: 720px) {
      #hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh auto;
      }
      .hero-image-col::after { background: linear-gradient(to bottom, transparent 50%, var(--charcoal)); }
      .hero-content-col { padding: 2.5rem 1.5rem 4rem; }
      .hero-vertical-text { display: none; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .masonry-grid { columns: 2; }
      .features-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 440px) {
      .masonry-grid { columns: 1; }
    }
