    /* =====================================================
       DESIGN TOKENS / CSS CUSTOM PROPERTIES
    ===================================================== */
    :root {
      --gold: #C9A96E;
      --gold-light: rgba(201,169,110,0.3);
      --background: hsl(42, 30%, 97%);   /* cream */
      --cream: hsl(42, 30%, 97%);
      --foreground: hsl(0, 0%, 8%);       /* near black */
      --dark: #0D0D0D;
      --card: hsl(42, 20%, 96%);
      --muted: hsl(42, 20%, 93%);
      --muted-foreground: hsl(0, 0%, 45%);
      --border: hsl(36, 18%, 87%);
      --font-sans: 'Montserrat', sans-serif;
      --font-serif: 'Cormorant Garamond', serif;
      --container: 1200px;
      --section-py: 5rem;
    }
    @media (min-width: 768px) {
      :root { --section-py: 7rem; }
    }

    /* =====================================================
       RESET & BASE
    ===================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      background-color: var(--background);
      color: var(--foreground);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; background: none; border: none; font-family: inherit; padding: 0; }

    /* Custom scrollbar */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--background); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }

    /* =====================================================
       UTILITIES
    ===================================================== */
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .section-padding { padding-top: var(--section-py); padding-bottom: var(--section-py); }
    .font-serif { font-family: var(--font-serif); }
    .text-gold { color: var(--gold); }
    .bg-gold { background-color: var(--gold); }
    .bg-cream { background-color: var(--cream); }
    .bg-dark { background-color: var(--dark); }
    .bg-white { background-color: #ffffff; }

    /* Gold divider */
    .divider-gold {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto;
    }

    /* Section label */
    .section-label {
      color: var(--gold);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      font-family: var(--font-sans);
    }

    /* Reveal animation (IntersectionObserver driven) */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.from-left  { transform: translateX(-36px); }
    .reveal.from-right { transform: translateX(36px); }
    .reveal.visible    { opacity: 1; transform: translate(0,0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    .reveal-d4 { transition-delay: 0.45s; }
    .reveal-d5 { transition-delay: 0.6s; }

    /* =====================================================
       NAVBAR
    ===================================================== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background 0.5s, box-shadow 0.5s;
    }
    #navbar.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(6px);
      box-shadow: 0 1px 20px rgba(0,0,0,0.07);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      max-width: var(--container);
      margin: 0 auto;
    }
    .nav-logo img { height: 2.5rem; width: auto; }
    .nav-links {
      display: none;
      align-items: center;
      gap: 2rem;
    }
    @media (min-width: 768px) { .nav-links { display: flex; } }
    .nav-link {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      font-weight: 500;
      color: white;
      transition: color 0.3s;
      text-transform: uppercase;
    }
    #navbar.scrolled .nav-link { color: var(--foreground); }
    .nav-link:hover { color: var(--gold) !important; }
    .nav-hamburger {
      display: flex;
      color: white;
      padding: 0.5rem;
      transition: color 0.3s;
    }
    #navbar.scrolled .nav-hamburger { color: var(--foreground); }
    @media (min-width: 768px) { .nav-hamburger { display: none; } }
    .nav-hamburger svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

    /* Mobile menu */
    .nav-mobile {
      display: none;
      flex-direction: column;
      background: white;
      border-top: 1px solid var(--border);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease, opacity 0.3s;
      opacity: 0;
    }
    .nav-mobile.open {
      display: flex;
      max-height: 400px;
      opacity: 1;
    }
    .nav-mobile a {
      display: block;
      padding: 1rem 1.5rem;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      font-weight: 500;
      color: var(--foreground);
      text-transform: uppercase;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: color 0.3s;
    }
    .nav-mobile a:hover { color: var(--gold); }

    /* =====================================================
       HERO SECTION
    ===================================================== */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.4s ease-in-out;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.05);
      transition: transform 6s ease-out;
    }
    .hero-slide.active img { transform: scale(1.0); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.50);
    }
    .hero-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1.5rem;
    }
    .hero-eyebrow {
      color: var(--gold);
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      font-family: var(--font-sans);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-h1 {
      font-family: var(--font-serif);
      color: white;
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 300;
      line-height: 1;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1.2s 0.5s forwards;
    }
    .hero-line {
      width: 5rem;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 1.5rem;
      transform: scaleX(0);
      animation: scaleIn 1s 0.9s forwards;
    }
    .hero-caption {
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2.5rem;
      overflow: hidden;
    }
    .hero-caption-text {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      font-weight: 300;
      color: rgba(255,255,255,0.80);
      max-width: 30rem;
      transition: opacity 0.7s, transform 0.7s;
    }
    .hero-location {
      height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
    }
    .hero-location-text {
      color: rgba(201,169,110,0.80);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      transition: opacity 0.5s, transform 0.5s;
    }
    .hero-cta {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.70);
      color: white;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      font-family: var(--font-sans);
      transition: background 0.5s, color 0.5s;
      opacity: 0;
      animation: fadeUp 1s 1.3s forwards;
    }
    .hero-cta:hover { background: white; color: var(--foreground); }

    /* Slide dots */
    .hero-dots {
      position: absolute;
      bottom: 5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 0.5rem;
    }
    .hero-dot {
      border-radius: 99px;
      height: 6px;
      width: 6px;
      background: rgba(255,255,255,0.40);
      border: none;
      cursor: pointer;
      transition: width 0.5s, background 0.5s;
    }
    .hero-dot.active {
      width: 1.5rem;
      background: var(--gold);
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeIn 1s 2s forwards;
    }
    .hero-scroll span {
      color: rgba(255,255,255,0.50);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
    }
    .hero-scroll svg {
      color: rgba(255,255,255,0.50);
      width: 18px; height: 18px;
      stroke: currentColor; fill: none;
      animation: bounce 1.5s infinite;
    }

    /* =====================================================
       ABOUT SECTION
    ===================================================== */
    #about { background: white; }
    .about-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
    .about-image-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .about-img-inner {
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: 20rem;
    }
    .about-img-inner img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .about-img-inner:hover img { transform: scale(1.03); }
    .about-img-border {
      position: absolute;
      inset: 0.75rem;
      border: 1px solid rgba(201,169,110,0.20);
      pointer-events: none;
    }
    .about-award {
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      background: var(--cream);
      padding: 1rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.10);
      display: none;
    }
    @media (min-width: 768px) { .about-award { display: block; } }
    .about-award img { height: 2.5rem; width: auto; opacity: 0.80; }
    .about-text { }
    .about-h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 300;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }
    .about-subtitle {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.2rem;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }
    .about-divider {
      width: 3rem;
      height: 1px;
      background: var(--gold);
      margin-bottom: 2rem;
      transform-origin: left;
    }
    .about-body {
      color: var(--muted-foreground);
      line-height: 1.75;
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }
    .about-body strong { color: var(--foreground); font-weight: 600; }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      margin-top: 2rem;
    }
    .stat-val {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }
    .stat-label {
      font-size: 0.65rem;
      color: var(--muted-foreground);
      letter-spacing: 0.05em;
    }

    /* =====================================================
       STYLE SHOWCASE – Three-image asymmetric
    ===================================================== */
    .style-three {
      background: white;
    }
    .style-row {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    @media (min-width: 768px) { .style-row { flex-direction: row; align-items: stretch; } }
    .style-left {
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 768px) { .style-left { flex: 0 0 41.66%; } }
    .style-left img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    @media (min-width: 768px) { .style-left img { height: 560px; } }
    .style-left:hover img { transform: scale(1.04); }
    .style-left-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.10) 50%, transparent 100%);
      pointer-events: none;
    }
    .style-left-text {
      position: absolute;
      bottom: 0; left: 0;
      padding: 2rem;
    }
    .style-left-h2 {
      font-family: var(--font-serif);
      font-size: 1.875rem;
      color: white;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }
    .style-left-p {
      font-family: var(--font-serif);
      font-style: italic;
      color: rgba(255,255,255,0.75);
      font-size: 0.875rem;
      line-height: 1.6;
      max-width: 18rem;
      margin-bottom: 1.25rem;
    }
    .style-left-cta {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.80);
      color: white;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 0.75rem 1.75rem;
      font-family: var(--font-sans);
      transition: background 0.4s, color 0.4s;
    }
    .style-left-cta:hover { background: white; color: var(--foreground); }
    .style-center {
      overflow: hidden;
    }
    @media (min-width: 768px) { .style-center { flex: 0 0 33.33%; } }
    .style-center img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    @media (min-width: 768px) { .style-center img { height: 560px; } }
    .style-center:hover img { transform: scale(1.04); }
    .style-right {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    @media (min-width: 768px) { .style-right { flex: 0 0 25%; } }
    .style-right-img { overflow: hidden; flex: 1; }
    .style-right-img img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    @media (min-width: 768px) { .style-right-img img { height: 100%; } }
    .style-right-img:hover img { transform: scale(1.04); }
    .style-right-label {
      text-align: right;
    }
    .style-right-label span {
      font-family: var(--font-serif);
      font-style: italic;
      color: var(--gold);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 300;
      letter-spacing: 0.05em;
    }

    /* Quote / parallax section */
    .style-quote {
      position: relative;
      padding: 8rem 1.5rem;
      overflow: hidden;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      background-image: url('https://www.fotografski-studio.kost.si/Porocni_fotograf/wedding_photographer_slovenia%20(11).webp');
    }
    .style-quote-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.60);
    }
    .style-quote-inner {
      position: relative;
      z-index: 10;
      max-width: 40rem;
      margin: 0 auto;
      text-align: center;
    }
    .style-quote-line { width: 2.5rem; height: 1px; background: var(--gold); margin: 0 auto 2rem; }
    .style-quote blockquote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      color: white;
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }
    .style-quote-attr {
      color: var(--gold);
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      font-family: var(--font-sans);
    }

    /* =====================================================
       GALLERY SECTION
    ===================================================== */
    #gallery { background: var(--cream); }
    .gallery-columns {
      columns: 2;
      column-gap: 0.75rem;
    }
    @media (min-width: 768px)  { .gallery-columns { columns: 3; } }
    @media (min-width: 1024px) { .gallery-columns { columns: 4; } }
    .gallery-item {
      break-inside: avoid;
      overflow: hidden;
      position: relative;
      margin-bottom: 0.75rem;
      cursor: pointer;
      display: block;
    }
    .gallery-item img {
      width: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      transition: background 0.5s;
      display: flex;
      align-items: flex-end;
      padding: 0.75rem;
    }
    .gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
    .gallery-item-loc {
      color: white;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-item-loc { opacity: 1; }

    /* Lightbox */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0,0,0,0.95);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    #lightbox.open { display: flex; }
    .lightbox-img {
      max-height: 85vh;
      max-width: 85vw;
      object-fit: contain;
      transition: opacity 0.3s;
    }
    .lightbox-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      color: rgba(255,255,255,0.70);
      font-size: 1.75rem;
      transition: color 0.2s;
      line-height: 1;
    }
    .lightbox-close:hover { color: white; }
    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      color: rgba(255,255,255,0.70);
      font-size: 0; /* hide text, use SVG */
      padding: 0.5rem;
      transition: color 0.2s;
    }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-prev:hover, .lightbox-next:hover { color: white; }
    .lightbox-prev svg, .lightbox-next svg {
      width: 36px; height: 36px;
      stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .lightbox-info {
      position: absolute;
      bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.50);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      white-space: nowrap;
    }

    /* =====================================================
       CTA BANNER
    ===================================================== */
    .cta-banner {
      position: relative;
      height: 18rem;
      overflow: hidden;
    }
    @media (min-width: 768px) { .cta-banner { height: 24rem; } }
    .cta-banner-bg {
      position: absolute;
      inset: 0;
      transform: scale(1.10);
    }
    .cta-banner-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .cta-banner-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.55);
    }
    .cta-banner-content {
      position: relative; z-index: 10;
      height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 0 1.5rem;
    }
    .cta-banner-label {
      color: var(--gold);
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .cta-banner-h2 {
      font-family: var(--font-serif);
      color: white;
      font-size: clamp(1.75rem, 5vw, 3rem);
      font-weight: 300;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .cta-banner-btn {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 0.875rem 2.5rem;
      font-family: var(--font-sans);
      transition: background 0.5s, color 0.5s;
    }
    .cta-banner-btn:hover { background: var(--gold); color: white; }

    /* =====================================================
       PACKAGES SECTION
    ===================================================== */
    #packages { background: white; }
    .packages-grid {
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
    .pkg-card {
      position: relative;
      padding: 2rem;
      border: 1px solid var(--border);
      background: var(--cream);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .pkg-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); transform: translateY(-6px); }
    .pkg-card.highlight {
      border-color: var(--gold);
      background: var(--dark);
      color: white;
    }
    .pkg-badge {
      position: absolute;
      top: -0.75rem; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: white;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      padding: 0.25rem 1rem;
      white-space: nowrap;
    }
    .pkg-subtitle {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .pkg-name {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 0.25rem;
    }
    .pkg-card:not(.highlight) .pkg-name { color: var(--foreground); }
    .pkg-card.highlight .pkg-name { color: white; }
    .pkg-hours {
      font-size: 0.7rem;
      margin-bottom: 1rem;
    }
    .pkg-card:not(.highlight) .pkg-hours { color: var(--muted-foreground); }
    .pkg-card.highlight .pkg-hours { color: rgba(255,255,255,0.50); }
    .pkg-line { width: 2rem; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
    .pkg-price {
      font-family: var(--font-serif);
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .pkg-card:not(.highlight) .pkg-price { color: var(--foreground); }
    .pkg-card.highlight .pkg-price { color: var(--gold); }
    .pkg-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
    .pkg-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
    }
    .pkg-card:not(.highlight) .pkg-feature { color: var(--muted-foreground); }
    .pkg-card.highlight .pkg-feature { color: rgba(255,255,255,0.80); }
    .pkg-check {
      width: 14px; height: 14px;
      stroke: var(--gold); fill: none;
      stroke-width: 2.5; stroke-linecap: round;
      flex-shrink: 0;
    }
    .pkg-cta {
      display: block;
      text-align: center;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.75rem 1.5rem;
      border: 1px solid;
      transition: background 0.3s, color 0.3s;
      font-family: var(--font-sans);
    }
    .pkg-card:not(.highlight) .pkg-cta { border-color: var(--foreground); color: var(--foreground); }
    .pkg-card:not(.highlight) .pkg-cta:hover { background: var(--foreground); color: white; }
    .pkg-card.highlight .pkg-cta { border-color: var(--gold); color: var(--gold); }
    .pkg-card.highlight .pkg-cta:hover { background: var(--gold); color: white; }

    /* =====================================================
       TESTIMONIALS SECTION
    ===================================================== */
    .testimonials { background: var(--dark); }
    .testimonials-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 2rem; }
    .star-svg {
      width: 16px; height: 16px;
      fill: var(--gold); color: var(--gold);
    }
    .testimonial-quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      color: rgba(255,255,255,0.80);
      line-height: 1.7;
      margin-bottom: 2rem;
      transition: opacity 0.5s, transform 0.5s;
    }
    .testimonial-divider { width: 2rem; height: 1px; background: var(--gold); margin: 0 auto 1rem; }
    .testimonial-name { color: var(--gold); font-size: 0.875rem; font-weight: 500; }
    .testimonial-date { color: rgba(255,255,255,0.30); font-size: 0.7rem; margin-top: 0.25rem; }
    .t-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
    .t-btn {
      color: rgba(255,255,255,0.40);
      transition: color 0.3s;
      padding: 0.5rem;
    }
    .t-btn:hover { color: var(--gold); }
    .t-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .t-dots { display: flex; gap: 0.5rem; }
    .t-dot {
      height: 6px; width: 6px;
      border-radius: 99px;
      background: rgba(255,255,255,0.20);
      border: none;
      cursor: pointer;
      transition: width 0.3s, background 0.3s;
    }
    .t-dot.active { background: var(--gold); width: 1rem; }

    /* =====================================================
       FAQ SECTION
    ===================================================== */
    #faq { background: var(--cream); }
    .faq-list { display: flex; flex-direction: column; gap: 0.5rem; max-width: 48rem; margin: 0 auto; }
    .faq-item {
      border: 1px solid var(--border);
      background: white;
      padding: 0 1.5rem;
    }
    .faq-trigger {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 0;
      font-family: var(--font-sans);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      text-align: left;
      cursor: pointer;
      transition: color 0.3s;
    }
    .faq-trigger:hover, .faq-trigger.open { color: var(--gold); }
    .faq-icon {
      flex-shrink: 0;
      width: 16px; height: 16px;
      transition: transform 0.3s;
    }
    .faq-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .faq-trigger.open .faq-icon { transform: rotate(180deg); }
    .faq-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-body.open { max-height: 300px; }
    .faq-body-inner {
      padding-bottom: 1.25rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      line-height: 1.75;
    }

    /* =====================================================
       LOCATIONS SECTION
    ===================================================== */
    #locations { background: white; }
    .locations-grid {
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 640px)  { .locations-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
    .location-item {
      position: relative;
      overflow: hidden;
      height: 16rem;
      cursor: default;
    }
    .location-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .location-item:hover img { transform: scale(1.10); }
    .location-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.20) 50%, transparent 100%);
    }
    .location-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.25rem;
    }
    .location-name-row {
      display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem;
    }
    .location-pin { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .location-name {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .location-desc { color: rgba(255,255,255,0.80); font-size: 0.75rem; }

    /* =====================================================
       BLOG SECTION
    ===================================================== */
    .blog { background: var(--cream); }
    .blog-grid {
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
    .blog-card {
      background: white;
      cursor: pointer;
    }
    .blog-img-wrap { overflow: hidden; height: 13rem; }
    .blog-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
    .blog-body { padding: 1.5rem; }
    .blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
    .blog-cat { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
    .blog-date { font-size: 0.7rem; color: var(--muted-foreground); }
    .blog-title {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 300;
      color: var(--foreground);
      line-height: 1.35;
      margin-bottom: 0.75rem;
      transition: color 0.3s;
    }
    .blog-card:hover .blog-title { color: var(--gold); }
    .blog-excerpt { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
    .blog-more { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
    .blog-arrow { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s; }
    .blog-card:hover .blog-arrow { transform: translateX(4px); }

    /* =====================================================
       CONTACT SECTION
    ===================================================== */
    #contact { background: white; }
    .contact-grid {
      display: grid;
      gap: 4rem;
      max-width: 56rem;
      margin: 0 auto;
    }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
    .contact-info-h3 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    .contact-info-p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.75; margin-bottom: 2rem; }
    .contact-items { display: flex; flex-direction: column; gap: 1rem; }
    .contact-item { display: flex; align-items: center; gap: 1rem; }
    .contact-icon-box {
      width: 2.5rem; height: 2.5rem;
      border: 1px solid rgba(201,169,110,0.30);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon-box svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }
    .contact-item-label {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted-foreground);
      margin-bottom: 0.125rem;
    }
    .contact-item-val { font-size: 0.875rem; transition: color 0.3s; }
    .contact-item-val:hover { color: var(--gold); }

    /* Contact form */
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; gap: 1rem; }
    @media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
    .form-group { display: flex; flex-direction: column; }
    .form-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.5rem; }
    .form-input, .form-textarea {
      border: 1px solid var(--border);
      padding: 0.625rem 0.75rem;
      font-family: var(--font-sans);
      font-size: 0.875rem;
      color: var(--foreground);
      background: white;
      border-radius: 0;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--gold); }
    .form-textarea { resize: none; height: 7.5rem; }
    .form-submit {
      width: 100%;
      background: var(--dark);
      color: white;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.875rem 2rem;
      font-family: var(--font-sans);
      border: none;
      cursor: pointer;
      height: 3rem;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .form-submit:hover { background: var(--gold); }
    .form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
    .send-icon { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* Toast notification */
    #toast {
      position: fixed;
      top: 1.5rem;
      left: 50%;
      transform: translateX(-50%) translateY(-120%);
      z-index: 300;
      background: white;
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 0.875rem 1.5rem;
      font-size: 0.8rem;
      color: var(--foreground);
      white-space: nowrap;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      font-family: var(--font-sans);
      max-width: 90vw;
    }
    #toast.show { transform: translateX(-50%) translateY(0); }

    /* =====================================================
       FOOTER
    ===================================================== */
    footer { background: var(--dark); color: rgba(255,255,255,0.60); }
    .footer-inner { padding: 4rem 0; }
    .footer-grid {
      display: grid;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .footer-logo { height: 3rem; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.80; }
    .footer-desc { font-size: 0.75rem; line-height: 1.75; margin-bottom: 1.5rem; }
    .footer-socials { display: flex; gap: 1rem; }
    .footer-social {
      width: 2.25rem; height: 2.25rem;
      border: 1px solid rgba(255,255,255,0.10);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.60);
      transition: border-color 0.3s, color 0.3s;
    }
    .footer-social:hover { border-color: var(--gold); color: var(--gold); }
    .footer-social svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .footer-col-title {
      color: white;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-nav-list a { font-size: 0.75rem; transition: color 0.3s; }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-contact-info { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; }
    .footer-contact-info span { color: rgba(255,255,255,0.30); }
    .footer-contact-info a { transition: color 0.3s; }
    .footer-contact-info a:hover { color: var(--gold); }
    .footer-extra { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-extra p { font-size: 0.75rem; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      text-align: center;
    }
    @media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }
    .footer-bottom p { font-size: 0.75rem; }
    .footer-heart { display: inline-flex; align-items: center; gap: 0.25rem; }
    .heart-svg { width: 10px; height: 10px; fill: var(--gold); stroke: var(--gold); }

    /* =====================================================
       SCROLL TO TOP BUTTON
    ===================================================== */
    #scroll-top {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 50;
      width: 2.75rem; height: 2.75rem;
      background: var(--gold);
      color: white;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center; justify-content: center;
      opacity: 0; visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s, background 0.3s;
    }
    #scroll-top.visible { opacity: 1; visibility: visible; }
    #scroll-top:hover { background: var(--foreground); }
    #scroll-top svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* =====================================================
       KEYFRAME ANIMATIONS
    ===================================================== */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes scaleIn {
      to { transform: scaleX(1); }
    }
    @keyframes bounce {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }