/* Cinzel */
    @font-face {
      font-family: 'Cinzel';
      src: url('fonts/cinzel-latin-400-normal.woff2') format('woff2'),
           url('fonts/cinzel-latin-400-normal.woff')  format('woff');
      font-weight: 400; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Cinzel';
      src: url('fonts/cinzel-latin-600-normal.woff2') format('woff2'),
           url('fonts/cinzel-latin-600-normal.woff')  format('woff');
      font-weight: 600; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Cinzel';
      src: url('fonts/cinzel-latin-700-normal.woff2') format('woff2'),
           url('fonts/cinzel-latin-700-normal.woff')  format('woff');
      font-weight: 700; font-style: normal; font-display: swap;
    }
    /* Raleway */
    @font-face {
      font-family: 'Raleway';
      src: url('fonts/raleway-latin-300-normal.woff2') format('woff2'),
           url('fonts/raleway-latin-300-normal.woff')  format('woff');
      font-weight: 300; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Raleway';
      src: url('fonts/raleway-latin-400-normal.woff2') format('woff2'),
           url('fonts/raleway-latin-400-normal.woff')  format('woff');
      font-weight: 400; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Raleway';
      src: url('fonts/raleway-latin-500-normal.woff2') format('woff2'),
           url('fonts/raleway-latin-500-normal.woff')  format('woff');
      font-weight: 500; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Raleway';
      src: url('fonts/raleway-latin-600-normal.woff2') format('woff2'),
           url('fonts/raleway-latin-600-normal.woff')  format('woff');
      font-weight: 600; font-style: normal; font-display: swap;
    }

/* ===== ALGERIAN FONT ===== */
    @font-face {
      font-family: 'Algerian';
      src: url('Algerian Regular.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:      #080808;
      --anthrazit:  #1c1c1c;
      --anthrazit2: #252525;
      --anthrazit3: #2e2e2e;
      --gold:       #c9a84c;
      --gold-light: #e4c46e;
      --gold-dark:  #9d7a2f;
      --white:      #f0ede8;
      --grey:       #888;

      /* Metallic gold gradient */
      --metallic: linear-gradient(
        135deg,
        #6b4e1a 0%,
        #c9a84c 20%,
        #f0d080 40%,
        #c9a84c 55%,
        #9d7a2f 70%,
        #e4c46e 85%,
        #7a5c22 100%
      );
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 {
      font-family: 'Cinzel', serif;
      font-weight: 600;
      letter-spacing: 0.08em;
    }

    .gold-text {
      background: var(--metallic);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-label {
      font-family: 'Raleway', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.75rem;
    }

    /* ===== GOLD DIVIDER ===== */
    .divider {
      width: 60px;
      height: 1px;
      background: var(--metallic);
      margin: 1.25rem auto;
    }
    .divider.left { margin-left: 0; }

    /* ===== NAVIGATION ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 5%;
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      transition: padding 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .nav-logo-img {
      height: 48px;
      width: auto;
      display: block;
      /* Weißliche Bereiche unterdrücken, Gold hervorheben */
      filter: drop-shadow(0 0 4px rgba(201,168,76,0.3));
      mix-blend-mode: normal;
      transition: filter 0.25s, transform 0.25s;
    }
    .nav-logo:hover .nav-logo-img {
      filter: drop-shadow(0 0 10px rgba(201,168,76,0.55));
      transform: scale(1.05);
    }
    .nav-logo-text {
      font-family: 'Algerian', 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: normal;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--metallic);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Algerian', 'Cinzel', serif;
      color: var(--white);
      text-decoration: none;
      font-size: 1rem;
      font-weight: normal;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.75;
      transition: opacity 0.2s, color 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--gold-light); }

    .nav-cta {
      font-family: 'Algerian', 'Cinzel', serif !important;
      font-size: 1rem;
      font-weight: normal;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.55rem 1.4rem;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      text-decoration: none;
      opacity: 1 !important;
      transition: background 0.25s, color 0.25s !important;
    }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--black) !important;
    }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.04) 0%, transparent 70%),
        var(--black);
    }

    /* Grid overlay entfernt */
    #hero::before {
      content: none;
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Corner ornaments */
    #hero::after {
      content: '';
      position: absolute;
      top: 120px; left: 5%;
      width: 80px; height: 80px;
      border-top: 1px solid rgba(201,168,76,0.3);
      border-left: 1px solid rgba(201,168,76,0.3);
    }

    .hero-inner { position: relative; z-index: 1; max-width: 720px; padding: 2rem; }

    .hero-eyebrow {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .hero-title .algerian-word {
      font-family: 'Algerian', 'Cinzel', serif;
      font-weight: normal;
      font-size: 1.15em;
      letter-spacing: 0.12em;
      display: block;
    }
    .hero-title .studio-word {
      font-family: 'Cinzel', serif;
      font-size: 0.72em;
      font-weight: 400;
      letter-spacing: 0.35em;
      opacity: 0.85;
      display: block;
      text-transform: uppercase;
    }

    /* ===== HERO LOGO ===== */
    .hero-logo {
      width: clamp(300px, 58vw, 660px);
      height: auto;
      margin: 0 auto 2rem;
      display: block;
      filter: drop-shadow(0 0 36px rgba(201,168,76,0.25));
    }

    /* ===== FOOTER LOGO ===== */
    .footer-logo-link { text-decoration: none; }
    .footer-logo-img {
      height: 36px;
      width: auto;
      display: block;
      opacity: 0.8;
      transition: opacity 0.2s, filter 0.2s;
      filter: drop-shadow(0 0 4px rgba(201,168,76,0.15));
    }
    .footer-logo-link:hover .footer-logo-img {
      opacity: 1;
      filter: drop-shadow(0 0 8px rgba(201,168,76,0.35));
    }

    /* ===== LOGO PLACEHOLDER ===== */
    .logo-placeholder {
      width: clamp(220px, 40vw, 400px);
      aspect-ratio: 3/2;
      margin: 0 auto 2rem;
      border: 1px dashed rgba(201,168,76,0.35);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      position: relative;
      background: rgba(201,168,76,0.03);
    }
    .logo-placeholder::before,
    .logo-placeholder::after {
      content: '';
      position: absolute;
      width: 12px; height: 12px;
      border-color: rgba(201,168,76,0.5);
      border-style: solid;
    }
    .logo-placeholder::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
    .logo-placeholder::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
    .logo-placeholder svg { width: 36px; height: 36px; opacity: 0.3; }
    .logo-placeholder span {
      font-family: 'Raleway', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.4);
    }

    .hero-sub {
      font-size: 0.9rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: rgba(240,237,232,0.6);
      max-width: 440px;
      margin: 0 auto 2.5rem;
    }

    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      background: var(--metallic);
      color: var(--black);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      transition: opacity 0.25s, transform 0.25s;
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

    .btn-outline {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      border: 1px solid rgba(201,168,76,0.45);
      color: var(--gold-light);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      transition: border-color 0.25s, background 0.25s;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.06);
    }

    /* ===== SECTIONS GENERIC ===== */
    section { padding: 5rem 5%; }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .section-header h2 { font-size: clamp(1.4rem, 3vw, 2rem); }

    /* ===== ABOUT ===== */
    #about {
      background: var(--anthrazit);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 960px;
      margin: 0 auto;
      align-items: center;
    }
    .about-grid:has(.about-visual:empty),
    .about-grid:not(:has(.about-visual)) {
      grid-template-columns: 1fr;
      max-width: 620px;
    }

    .about-text p {
      font-size: 0.9rem;
      color: rgba(240,237,232,0.72);
      margin-bottom: 1rem;
    }

    .about-text p:last-child { margin-bottom: 0; }

    .about-visual {
      position: relative;
      aspect-ratio: 3/4;
      background: var(--anthrazit3);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      top: -1px; left: -1px; right: -1px; bottom: -1px;
      background: var(--metallic);
      z-index: 0;
      padding: 1px;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .about-placeholder {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem;
      opacity: 0.3;
    }

    .about-placeholder svg { width: 60px; height: 60px; fill: var(--gold); }
    .about-placeholder p { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.5rem; color: var(--gold); }

    /* ===== SERVICES ===== */
    #services { background: var(--black); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5px;
      max-width: 960px;
      margin: 0 auto;
      background: rgba(201,168,76,0.12);
    }

    .service-card {
      background: var(--black);
      padding: 2.2rem 1.8rem;
      text-align: center;
      transition: background 0.25s;
      position: relative;
    }
    .service-card:hover { background: var(--anthrazit); }

    .service-icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 1rem;
      background: var(--metallic);
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }

    .service-card h3 {
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      margin-bottom: 0.6rem;
    }

    .service-card p {
      font-size: 0.78rem;
      color: rgba(240,237,232,0.5);
      line-height: 1.6;
    }

    /* SVG icon inline */
    .svc-icon-svg {
      width: 36px;
      height: 36px;
      margin: 0 auto 1.1rem;
      display: block;
    }

    /* ===== GALLERY (Facebook feed placeholder) ===== */
    #gallery { background: var(--anthrazit); }

    .gallery-intro {
      text-align: center;
      margin-bottom: 2rem;
    }
    .gallery-intro p {
      font-size: 0.82rem;
      color: rgba(240,237,232,0.5);
      letter-spacing: 0.04em;
    }

    /* Facebook SDK feed container */
    .fb-feed-wrapper {
      max-width: 960px;
      margin: 0 auto;
    }

    /* Fallback grid shown before FB SDK loads */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 3px;
      max-width: 960px;
      margin: 0 auto;
    }

    .gallery-item {
      aspect-ratio: 1;
      background: var(--anthrazit3);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
      filter: grayscale(20%) brightness(0.85);
    }

    .gallery-item:hover img {
      transform: scale(1.06);
      filter: grayscale(0%) brightness(1);
    }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 1rem;
    }

    .gallery-item:hover .gallery-item-overlay { opacity: 1; }

    .gallery-item-overlay span {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    /* placeholder tiles */
    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: rgba(201,168,76,0.2);
    }
    .gallery-placeholder svg { width: 28px; height: 28px; fill: currentColor; }
    .gallery-placeholder span { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; }

    .gallery-fb-note {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.75rem;
      color: rgba(240,237,232,0.4);
    }
    .gallery-fb-note a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      transition: border-color 0.2s;
    }
    .gallery-fb-note a:hover { border-color: var(--gold); }

    /* ===== NEWS ===== */
    #news { background: var(--black); }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5px;
      max-width: 960px;
      margin: 0 auto;
      background: rgba(201,168,76,0.08);
    }

    .news-card {
      background: var(--black);
      padding: 0;
      overflow: hidden;
      transition: background 0.25s;
    }
    .news-card:hover { background: var(--anthrazit); }

    .news-img {
      aspect-ratio: 16/9;
      background: var(--anthrazit2);
      overflow: hidden;
    }
    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(30%) brightness(0.8);
      transition: filter 0.3s, transform 0.4s;
    }
    .news-card:hover .news-img img {
      filter: grayscale(0%) brightness(0.95);
      transform: scale(1.04);
    }

    .news-body { padding: 1.4rem 1.6rem 1.8rem; }

    .news-date {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
      display: block;
    }

    .news-card h3 {
      font-size: 0.88rem;
      letter-spacing: 0.06em;
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }

    .news-card p {
      font-size: 0.76rem;
      color: rgba(240,237,232,0.5);
      line-height: 1.65;
    }

    .news-more {
      display: block;
      text-align: center;
      margin-top: 2.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border: 1px solid rgba(201,168,76,0.25);
      padding: 0.7rem 2rem;
      max-width: 200px;
      margin-left: auto;
      margin-right: auto;
      transition: border-color 0.2s, background 0.2s;
    }
    .news-more:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

    /* ===== CONTACT ===== */
    #contact {
      background: var(--anthrazit);
      border-top: 1px solid rgba(201,168,76,0.1);
    }

    .contact-wrap {
      max-width: 760px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-info h3 {
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      margin-bottom: 1.2rem;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .contact-detail-icon {
      width: 14px;
      flex-shrink: 0;
      margin-top: 4px;
      opacity: 0.5;
    }

    .contact-detail p {
      font-size: 0.8rem;
      color: rgba(240,237,232,0.65);
      line-height: 1.55;
    }

    .contact-detail a {
      color: var(--gold-light);
      text-decoration: none;
    }
    .contact-detail a:hover { text-decoration: underline; }

    /* ── Öffnungszeiten-Hinweis (unter Social-Icons, linke Spalte) ── */
    .contact-notice {
      display: flex;
      gap: 0.55rem;
      align-items: flex-start;
      background: rgba(201,168,76,0.05);
      border-left: 2px solid rgba(201,168,76,0.4);
      padding: 0.65rem 0.8rem;
      margin-top: 1.2rem;
    }
    .contact-notice p {
      margin: 0;
      font-size: 0.7rem;
      color: rgba(240,237,232,0.45);
      line-height: 1.6;
    }
    .contact-notice strong { color: rgba(240,237,232,0.7); font-weight: 600; }
    .contact-notice a { color: rgba(201,168,76,0.7); text-decoration: none; }
    .contact-notice a:hover { color: var(--gold-light); text-decoration: underline; }

    .contact-form { display: flex; flex-direction: column; gap: 0.85rem; }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.15);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-size: 0.8rem;
      padding: 0.75rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: rgba(240,237,232,0.3); }

    .contact-form input:focus,
    .contact-form textarea:focus { border-color: rgba(201,168,76,0.55); }

    .contact-form textarea { height: 100px; }

    .contact-form button {
      padding: 0.75rem;
      background: var(--metallic);
      border: none;
      color: var(--black);
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .contact-form button:hover { opacity: 0.85; }

    /* ── Honeypot – Menschen sehen es nicht, Bots schon ── */
    .hp-field {
      position: absolute;
      left:   -9999px;
      top:    -9999px;
      width:  1px;
      height: 1px;
      opacity: 0;
      overflow: hidden;
      pointer-events: none;
    }

    /* ── reCAPTCHA Hinweis ── */
    .recaptcha-notice {
      font-size: 0.65rem;
      color: rgba(240,237,232,0.3);
      line-height: 1.5;
      margin-top: 0.25rem;
    }
    .recaptcha-notice a {
      color: rgba(201,168,76,0.5);
      text-decoration: none;
    }
    .recaptcha-notice a:hover { color: var(--gold-light); }

    /* reCAPTCHA Badge ausblenden (eigener Hinweis vorhanden) */
    .grecaptcha-badge { visibility: hidden !important; }

    /* ===== GALLERY – vorerst ausgeblendet ===== */
    #gallery { display: none; }

    /* ===== MAP ===== */
    #map { background: var(--black); padding: 0; }

    .map-inner {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
    }

    .map-inner iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: grayscale(60%) invert(5%) brightness(0.85);
      transition: filter 0.4s;
    }
    .map-inner iframe:hover {
      filter: grayscale(20%) invert(0%) brightness(1);
    }

    /* Consent-Placeholder für Karte */
    .map-consent-overlay {
      position: absolute;
      inset: 0;
      background: var(--anthrazit);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .map-consent-overlay svg {
      width: 48px; height: 48px;
      fill: rgba(201,168,76,0.25);
    }
    .map-consent-overlay p {
      font-size: 0.82rem;
      color: rgba(240,237,232,0.45);
      text-align: center;
      max-width: 340px;
      line-height: 1.65;
    }
    .map-consent-overlay button {
      font-family: 'Algerian', 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      padding: 0.75rem 1.8rem;
      background: var(--metallic);
      color: var(--black);
      border: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .map-consent-overlay button:hover { opacity: 0.85; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.12);
      padding: 2rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      font-family: 'Algerian', 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: normal;
      letter-spacing: 0.22em;
      background: var(--metallic);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .footer-links a {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(240,237,232,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold-light); }

    .footer-copy {
      font-size: 0.62rem;
      color: rgba(240,237,232,0.25);
      letter-spacing: 0.08em;
    }

    /* Social icons */
    .social-bar {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }
    .social-bar a {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s;
      text-decoration: none;
    }
    .social-bar a:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
    }
    .social-bar svg { width: 14px; height: 14px; fill: var(--gold); }

    /* ===== COOKIE BANNER ===== */
    #cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      background: var(--anthrazit);
      border-top: 1px solid rgba(201,168,76,0.3);
      box-shadow: 0 -10px 50px rgba(0,0,0,0.7);
      padding: 2.2rem 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
      flex-wrap: wrap;
      transform: translateY(0);
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    #cookie-banner.hidden {
      transform: translateY(110%);
      opacity: 0;
      pointer-events: none;
    }

    .cookie-text { flex: 1; min-width: 320px; }
    .cookie-text p {
      font-size: 0.92rem;
      color: rgba(240,237,232,0.65);
      line-height: 1.7;
    }
    .cookie-text a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.3);
    }
    .cookie-text a:hover { border-color: var(--gold); }

    .cookie-title {
      font-family: 'Algerian', 'Cinzel', serif;
      font-size: 1rem;
      font-weight: normal;
      letter-spacing: 0.15em;
      background: var(--metallic);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 0.6rem;
    }

    .cookie-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
      flex-shrink: 0;
    }

    .cookie-btn {
      font-family: 'Algerian', 'Cinzel', serif;
      font-size: 0.72rem;
      font-weight: normal;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.9rem 1.8rem;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.2s, background 0.2s;
    }
    .cookie-btn:hover { transform: translateY(-2px); opacity: 0.9; }

    .cookie-btn-accept {
      background: var(--metallic);
      color: var(--black);
    }
    .cookie-btn-necessary {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold-light);
    }
    .cookie-btn-necessary:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
    .cookie-btn-details {
      background: transparent;
      border: none;
      color: rgba(240,237,232,0.4);
      font-size: 0.65rem;
      padding: 0.6rem 0.8rem;
      text-decoration: underline;
      letter-spacing: 0.12em;
    }
    .cookie-btn-details:hover { color: var(--gold-light); }

    /* Detail overlay */
    #cookie-details {
      position: fixed;
      inset: 0;
      z-index: 210;
      background: rgba(0,0,0,0.8);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    #cookie-details.open {
      opacity: 1;
      pointer-events: auto;
    }
    .cookie-detail-box {
      background: var(--anthrazit);
      border: 1px solid rgba(201,168,76,0.2);
      width: 100%;
      max-width: 620px;
      padding: 2rem;
      margin: 1rem;
      max-height: 85vh;
      overflow-y: auto;
    }
    .cookie-detail-box h3 {
      font-size: 1rem;
      letter-spacing: 0.1em;
      margin-bottom: 1.2rem;
      background: var(--metallic);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cookie-category {
      border: 1px solid rgba(201,168,76,0.1);
      padding: 1rem 1.2rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .cookie-category-info { flex: 1; }
    .cookie-category-info strong {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      margin-bottom: 0.3rem;
      color: var(--white);
    }
    .cookie-category-info span {
      font-size: 0.72rem;
      color: rgba(240,237,232,0.5);
      line-height: 1.55;
    }

    /* Toggle switch */
    .cookie-toggle {
      position: relative;
      width: 38px;
      height: 22px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .cookie-toggle input { opacity: 0; width: 0; height: 0; }
    .cookie-toggle-track {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(201,168,76,0.2);
      cursor: pointer;
      transition: background 0.25s;
      border-radius: 22px;
    }
    .cookie-toggle input:checked + .cookie-toggle-track { background: var(--gold-dark); border-color: var(--gold); }
    .cookie-toggle input:disabled + .cookie-toggle-track { cursor: not-allowed; opacity: 0.5; }
    .cookie-toggle-track::after {
      content: '';
      position: absolute;
      top: 2px; left: 2px;
      width: 16px; height: 16px;
      background: rgba(240,237,232,0.6);
      border-radius: 50%;
      transition: transform 0.25s;
    }
    .cookie-toggle input:checked + .cookie-toggle-track::after { transform: translateX(16px); background: var(--white); }

    .cookie-detail-actions {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }

    /* ===== SCROLL FADE ===== */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ===== MOBILE ===== */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--gold);
      transition: transform 0.3s, opacity 0.3s;
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }

      .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8,8,8,0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 99;
      }
      .nav-links.open { display: flex; }
      .nav-links a { font-size: 0.9rem; }

      .about-grid { grid-template-columns: 1fr; }
      .about-visual { aspect-ratio: 4/3; }
      .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    /* ===== FLOATING ACTION BUTTONS ===== */
    .fab-group {
      position: fixed;
      bottom: 2rem;
      right: 1.6rem;
      z-index: 90;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.65rem;
    }

    .fab {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
      border: none;
      opacity: 0;
      transform: translateY(14px) scale(0.85);
      transition: opacity 0.35s ease, transform 0.35s ease,
                  box-shadow 0.25s ease, background 0.25s ease;
      pointer-events: none;
    }
    .fab.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    /* Staggered entrance delays */
    .fab:nth-child(1) { transition-delay: 0s; }
    .fab:nth-child(2) { transition-delay: 0.06s; }
    .fab:nth-child(3) { transition-delay: 0.12s; }
    .fab:nth-child(4) { transition-delay: 0.18s; }

    /* Calendar – gold */
    .fab-booking {
      background: var(--metallic);
      box-shadow: 0 4px 18px rgba(201,168,76,0.35);
    }
    .fab-booking svg { fill: var(--black); }
    .fab-booking:hover {
      box-shadow: 0 6px 26px rgba(201,168,76,0.55);
      transform: translateY(-3px) scale(1.07) !important;
    }

    /* Facebook */
    .fab-fb {
      background: #18191a;
      border: 1px solid rgba(201,168,76,0.2);
      box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    }
    .fab-fb svg { fill: #c9a84c; }
    .fab-fb:hover {
      background: #1877f2;
      border-color: #1877f2;
      box-shadow: 0 6px 20px rgba(24,119,242,0.45);
      transform: translateY(-3px) scale(1.07) !important;
    }
    .fab-fb:hover svg { fill: #fff; }

    /* Instagram */
    .fab-ig {
      background: #18191a;
      border: 1px solid rgba(201,168,76,0.2);
      box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    }
    .fab-ig svg { fill: #c9a84c; }
    .fab-ig:hover {
      background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(220,39,67,0.45);
      transform: translateY(-3px) scale(1.07) !important;
    }
    .fab-ig:hover svg { fill: #fff; }

    /* WhatsApp */
    .fab-wa {
      background: #18191a;
      border: 1px solid rgba(201,168,76,0.2);
      box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    }
    .fab-wa svg { fill: #c9a84c; }
    .fab-wa:hover {
      background: #25d366;
      border-color: #25d366;
      box-shadow: 0 6px 20px rgba(37,211,102,0.45);
      transform: translateY(-3px) scale(1.07) !important;
    }
    .fab-wa:hover svg { fill: #fff; }

    /* Scroll to top */
    .fab-top {
      background: #18191a;
      border: 1px solid rgba(201,168,76,0.2);
      box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    }
    .fab-top svg { fill: #c9a84c; }
    .fab-top:hover {
      background: rgba(201,168,76,0.12);
      border-color: var(--gold);
      transform: translateY(-3px) scale(1.07) !important;
    }

    /* Tooltip labels */
    .fab::before {
      content: attr(data-tip);
      position: absolute;
      right: 54px;
      background: rgba(8,8,8,0.9);
      color: var(--gold-light);
      font-family: 'Raleway', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      white-space: nowrap;
      padding: 0.3rem 0.7rem;
      border: 1px solid rgba(201,168,76,0.2);
      opacity: 0;
      pointer-events: none;
      transform: translateX(6px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .fab:hover::before {
      opacity: 1;
      transform: translateX(0);
    }
