*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:#0d0907;
  color:#f7f1ea;
  font-family:'Inter',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

iframe{
  border:0;
}

:root{
  --bg:#0d0907;
  --bg-soft:#17110d;
  --bg-card:rgba(255,255,255,0.05);
  --bg-card-strong:rgba(255,255,255,0.08);
  --text:#f7f1ea;
  --text-soft:rgba(247,241,234,0.78);
  --text-muted:rgba(247,241,234,0.58);
  --line:rgba(255,255,255,0.1);
  --accent:#a13424;
  --accent-2:#d96b4e;
  --gold:#d7b17b;
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --radius:26px;
  --container:1240px;
}

.site-bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(161,52,36,0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(215,177,123,0.10), transparent 28%),
    linear-gradient(180deg, #120d0a 0%, #0d0907 55%, #120d0a 100%);
  z-index:-3;
}

.container{
  width:min(calc(100% - 40px), var(--container));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(8,6,5,0.52);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.header-inner{
  min-height:104px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  position:relative;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.desktop-nav.left{
  justify-content:flex-end;
}

.desktop-nav.right{
  justify-content:flex-start;
}

.nav-link{
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(247,241,234,0.85);
  transition:color .25s ease, opacity .25s ease, transform .25s ease;
  position:relative;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:1px;
  background:var(--gold);
  transition:width .25s ease;
}

.nav-link:hover{
  color:#fff;
}

.nav-link:hover::after{
  width:100%;
}

.logo-link{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
}

.logo-glow{
  position:absolute;
  inset:auto;
  width:140px;
  height:140px;
  background:radial-gradient(circle, rgba(161,52,36,0.28), transparent 68%);
  filter:blur(18px);
  pointer-events:none;
}

.logo{
  height:78px;
  width:auto;
  position:relative;
  z-index:2;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding-top:104px;
  overflow:hidden;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.05);
  transition:opacity .8s ease, transform 2.6s ease;
}

.hero-slide.active{
  opacity:1;
  transform:scale(1);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(8,6,5,0.35) 0%, rgba(8,6,5,0.24) 20%, rgba(8,6,5,0.62) 72%, rgba(8,6,5,0.92) 100%);
  z-index:1;
}

.hero-vignette{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.34) 100%);
  z-index:1;
}

.hero-noise{
  position:absolute;
  inset:0;
  opacity:.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size:4px 4px;
  mix-blend-mode:soft-light;
  z-index:1;
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:3;
  width:100%;
  padding:110px 0 64px;
  max-width:780px;
}

.hero-kicker{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:26px;
  color:rgba(247,241,234,0.82);
  text-transform:uppercase;
  letter-spacing:0.2em;
  font-size:12px;
}

.hero-kicker .line{
  width:56px;
  height:1px;
  background:rgba(255,255,255,0.28);
}

.serif{
  font-family:'Playfair Display',serif;
}

.hero-title{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:clamp(2.8rem, 6vw, 5.8rem);
  line-height:.96;
  letter-spacing:-0.03em;
}

.muted-line{
  color:rgba(247,241,234,0.8);
}

.italic-line{
  font-style:italic;
  color:#fff;
}

.accent-line{
  color:var(--gold);
}

.hero-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  margin:30px 0 22px;
}

.highlight-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(247,241,234,0.84);
  font-size:14px;
}

.dot,
.reason-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex:0 0 auto;
  background:var(--accent-2);
  box-shadow:0 0 18px rgba(217,107,78,0.55);
}

.dot.subtle{
  background:var(--gold);
  box-shadow:none;
}

.hero-text,
.section-text,
.hours-status-text,
.address-text,
.footer-sub,
.menu-item p{
  color:var(--text-soft);
}

.hero-text{
  max-width:620px;
  font-size:17px;
  margin:0 0 30px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:600;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), #7d2418);
  color:#fff;
}

.btn-primary:hover{
  box-shadow:0 16px 34px rgba(161,52,36,0.34);
}

.btn-secondary{
  border-color:rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.03);
  color:#fff;
}

.btn-secondary:hover{
  border-color:rgba(255,255,255,0.34);
  background:rgba(255,255,255,0.07);
}

.btn-small{
  min-height:42px;
  padding:0 16px;
  font-size:14px;
}

.btn-inline{
  white-space:nowrap;
}

.hero-dots{
  display:flex;
  align-items:center;
  gap:10px;
}

.hero-dots button{
  width:10px;
  height:10px;
  padding:0;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.hero-dots button.active{
  background:var(--gold);
  transform:scale(1.2);
}

.hero-line,
.hero-glow,
.hero-floating{
  position:absolute;
  z-index:2;
  pointer-events:none;
}

.hero-line-top{
  top:140px;
  left:50%;
  transform:translateX(-50%);
  width:min(90%, 1120px);
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-glow{
  width:380px;
  height:380px;
  border-radius:50%;
  filter:blur(70px);
  opacity:.16;
}

.glow-left{
  left:-140px;
  bottom:90px;
  background:#a13424;
}

.glow-right{
  right:-100px;
  top:120px;
  background:#d7b17b;
}

.hero-floating{
  top:160px;
  right:6%;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.ingredient{
  align-self:flex-start;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  color:rgba(247,241,234,0.84);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  backdrop-filter:blur(6px);
}

.i2{
  margin-left:30px;
}

.i3{
  margin-left:10px;
}

/* SECTIONS */
.section{
  position:relative;
  padding:110px 0;
}

.section-brown-gradient{
  background:
    radial-gradient(circle at left top, rgba(161,52,36,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.section-brown-gradient-reverse{
  background:
    radial-gradient(circle at right top, rgba(215,177,123,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.2em;
  color:var(--gold);
}

.eyebrow.subtle,
.eyebrow.soft-red{
  color:rgba(247,241,234,0.72);
}

.section-title{
  margin:0 0 18px;
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.02;
  letter-spacing:-0.03em;
}

.section-text{
  font-size:16px;
  max-width:640px;
}

.section-text.compact{
  max-width:580px;
}

/* CARDS */
.card,
.menu-card-inner,
.map-wrap,
.contact-main{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow:var(--shadow);
}

.card{
  padding:34px;
}

.large-card{
  min-height:320px;
}

.card-glow,
.card-soft-light{
  position:absolute;
  pointer-events:none;
}

.card-glow{
  width:220px;
  height:220px;
  border-radius:50%;
  filter:blur(56px);
  opacity:.22;
}

.card-glow-red{
  top:-50px;
  right:-30px;
  background:var(--accent);
}

.contact-glow{
  top:-34px;
  right:-30px;
  background:var(--gold);
  opacity:.16;
}

.card-soft-light{
  inset:auto auto -70px -60px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(215,177,123,0.14), transparent 68%);
}

.reasons-list{
  display:grid;
  gap:18px;
  margin-top:18px;
}

.reason{
  display:flex;
  align-items:flex-start;
  gap:14px;
  color:var(--text-soft);
}

/* MENU */
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:36px;
}

.menu-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:32px;
  align-items:stretch;
}

.menu-copy{
  display:grid;
  gap:18px;
}

.menu-item{
  padding:26px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.035);
  backdrop-filter:blur(3px);
}

.menu-item h3{
  margin:0 0 10px;
  font-size:24px;
  font-family:'Playfair Display',serif;
}

.menu-item p{
  margin:0;
}

.menu-label{
  font-size:11px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
}

.menu-card-inner{
  padding:26px;
  min-height:100%;
}

.menu-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:24px;
}

.menu-card-title{
  font-size:28px;
  line-height:1.1;
  font-family:'Playfair Display',serif;
}

.menu-card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.menu-frame{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:#0c0907;
  min-height:620px;
}

.menu-frame iframe{
  width:100%;
  height:620px;
  background:#fff;
}

.menu-shine{
  position:absolute;
  inset:0 auto 0 -40%;
  width:40%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform:skewX(-16deg);
  animation:shine 7s linear infinite;
  z-index:2;
  pointer-events:none;
}

@keyframes shine{
  0%{ left:-45%; }
  100%{ left:125%; }
}

/* HOURS */
.hours-grid{
  display:grid;
  gap:22px;
}

.hours-card,
.contact-card{
  min-height:240px;
}

.hours-status-title{
  font-size:32px;
  line-height:1.1;
  margin-bottom:10px;
  font-family:'Playfair Display',serif;
}

.hours-list{
  margin-top:22px;
  display:grid;
  gap:12px;
}

.hours-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:var(--text-soft);
}

.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* CONTACT */
.map-wrap{
  margin-bottom:28px;
  min-height:420px;
}

.map-wrap iframe{
  width:100%;
  height:420px;
  display:block;
}

.contact-main{
  padding:32px;
}

.contact-main-grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:end;
}

.contact-main-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.address-wrap{
  margin-top:24px;
}

.address-text{
  margin:0;
  font-size:16px;
}

/* SEO HIDDEN */
.seo-hidden{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* FOOTER */
.site-footer{
  position:relative;
  padding:24px 0 32px;
}

.footer-line{
  width:min(calc(100% - 40px), var(--container));
  height:1px;
  margin:0 auto 24px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  color:var(--text-muted);
  font-size:14px;
}

.footer-right{
  text-align:right;
}

.footer-credit{
  color:#fff;
  transition:opacity .25s ease;
}

.footer-credit:hover{
  opacity:.82;
}

.footer-sub{
  font-size:13px;
  margin-top:6px;
}

/* UTILITIES */
.desktop-only{
  display:block;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .header-inner{
    grid-template-columns:1fr;
    justify-items:center;
    gap:14px;
    padding:18px 0 20px;
  }

  .site-header{
    position:relative;
  }

  .desktop-nav.left,
  .desktop-nav.right{
    justify-content:center;
  }

  .hero{
    min-height:auto;
    padding-top:0;
  }

  .hero-content{
    padding-top:120px;
  }

  .two-col,
  .menu-grid,
  .contact-main-grid{
    grid-template-columns:1fr;
  }

  .section-head,
  .menu-card-head,
  .footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .contact-main-actions,
  .footer-right{
    justify-content:flex-start;
    text-align:left;
  }
}

@media (max-width: 820px){
  .desktop-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px 18px;
  }

  .nav-link{
    font-size:11px;
    letter-spacing:0.14em;
  }

  .logo{
    height:64px;
  }

  .hero-content{
    padding:90px 0 46px;
  }

  .hero-title{
    font-size:clamp(2.2rem, 12vw, 4rem);
  }

  .section{
    padding:84px 0;
  }

  .card,
  .menu-card-inner,
  .contact-main{
    padding:24px;
  }

  .menu-frame,
  .menu-frame iframe{
    min-height:520px;
    height:520px;
  }

  .map-wrap,
  .map-wrap iframe{
    min-height:320px;
    height:320px;
  }

  .desktop-only{
    display:none;
  }
}

@media (max-width: 560px){
  .container{
    width:min(calc(100% - 24px), var(--container));
  }

  .header-inner{
    min-height:auto;
  }

  .desktop-nav{
    gap:10px 14px;
  }

  .hero-highlights{
    display:grid;
    gap:10px;
  }

  .hero-actions,
  .contact-actions,
  .contact-main-actions,
  .menu-card-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn,
  .btn-small{
    width:100%;
  }

  .hours-status-title,
  .menu-card-title{
    font-size:24px;
  }

  .menu-item h3{
    font-size:22px;
  }

  .section-title{
    font-size:clamp(1.9rem, 9vw, 2.6rem);
  }

  .footer-inner{
    font-size:13px;
  }
}
/* HEADER SCROLL EFFECT */
.site-header{
  transition:background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.header-inner{
  transition:min-height .3s ease, padding .3s ease;
}

.logo{
  transition:height .3s ease;
}

.site-header.scrolled{
  background:rgba(8,6,5,0.82);
  backdrop-filter:blur(16px);
  box-shadow:0 10px 30px rgba(0,0,0,0.28);
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.site-header.scrolled .header-inner{
  min-height:82px;
}

.site-header.scrolled .logo{
  height:62px;
}
/* MENU GALLERY */
.menu-gallery-frame{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.menu-gallery{
  position:relative;
  z-index:3;
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}

.menu-gallery-item{
  position:relative;
  border:none;
  padding:12px;
  margin:0;
  cursor:pointer;
  overflow:hidden;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.menu-gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.28);
  border-color:rgba(255,255,255,0.16);
}

.menu-gallery-item img{
  width:100%;
  height:236px;
  object-fit:contain;
  object-position:center;
  display:block;
  border-radius:12px;
  background:#0b0908;
  filter:brightness(0.92);
  transition:filter .25s ease, transform .25s ease;
}

.menu-gallery-item:hover img{
  filter:brightness(1);
  transform:scale(1.01);
}

.menu-gallery-label{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  padding:8px 14px;
  border-radius:999px;
  background:rgba(8,6,5,0.78);
  color:#fff;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(6px);
  white-space:nowrap;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.lightbox.active{
  display:flex;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.92);
}

.lightbox-content{
  position:relative;
  z-index:2;
  width:min(1100px, 95vw);
  height:min(90vh, 920px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.lightbox-image-wrap{
  position:relative;
  width:100%;
  height:100%;
  overflow:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(255,255,255,0.02);
  border-radius:18px;
  scroll-behavior:smooth;
}

.lightbox-content img{
  width:auto;
  height:auto;
  max-width:none;
  max-height:none;
  transform-origin:center center;
  transition:transform .2s ease;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.08);
  background:#111;
}

.lightbox-toolbar{
  position:absolute;
  top:14px;
  right:70px;
  z-index:4;
  display:flex;
  gap:10px;
}

.lightbox-zoom-btn,
.lightbox-close{
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  font-size:24px;
  line-height:1;
  background:#ffffff;
  color:#111;
  box-shadow:0 12px 30px rgba(0,0,0,0.28);
  transition:transform .2s ease, opacity .2s ease;
}

.lightbox-zoom-btn:hover,
.lightbox-close:hover{
  transform:scale(1.06);
  opacity:.95;
}

.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:4;
}

.lightbox-caption{
  margin-top:12px;
  color:rgba(255,255,255,0.85);
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-align:center;
}

body.lightbox-open{
  overflow:hidden;
}

@media (max-width: 700px){
  .menu-gallery{
    grid-template-columns:1fr;
  }

  .menu-gallery-item{
    min-height:220px;
  }

  .menu-gallery-item img{
    height:200px;
  }

  .lightbox{
    padding:14px;
  }

  .lightbox-content{
    width:100%;
    height:88vh;
  }

  .lightbox-image-wrap{
    padding:12px;
  }

  .lightbox-toolbar{
    top:10px;
    right:62px;
    gap:8px;
  }

  .lightbox-zoom-btn,
  .lightbox-close{
    width:42px;
    height:42px;
    font-size:22px;
  }
}
/* ===== FOOTER NEXT LEVEL ===== */

.footer-inner{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
  align-items:center;
}

/* LINKS */
.footer-left{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-brand{
  font-family:'Playfair Display',serif;
  font-size:20px;
  color:#fff;
}

/* MIDDEN */
.footer-center{
  text-align:center;
  font-size:14px;
  color:rgba(255,255,255,0.7);
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* RECHTS (AGENCY) */
.footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}

.footer-powered{
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.5);
}

/* 👇 JOUW NAAM = FOCUS */
.footer-agency{
  font-family:'Playfair Display',serif;
  font-size:22px;
  color:#fff;
  text-decoration:none;
  position:relative;
  transition:all .3s ease;
}

/* GLOW LIJN */
.footer-agency::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, var(--accent), var(--gold));
  opacity:0.7;
  transition:all .3s ease;
}

/* HOVER EFFECT */
.footer-agency:hover{
  color:var(--gold);
  text-shadow:0 0 12px rgba(215,177,123,0.6);
}

.footer-agency:hover::after{
  opacity:1;
  transform:scaleX(1.1);
}

.footer-agency-sub{
  font-size:13px;
  color:rgba(255,255,255,0.6);
}

/* GLOW LIJN BOVEN FOOTER */
.glow-line{
  background:linear-gradient(
    90deg,
    transparent,
    rgba(215,177,123,0.5),
    rgba(161,52,36,0.5),
    transparent
  );
  height:2px;
  animation:footerGlow 6s linear infinite;
}

@keyframes footerGlow{
  0%{ opacity:0.4; }
  50%{ opacity:1; }
  100%{ opacity:0.4; }
}

/* RESPONSIVE */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:20px;
  }

  .footer-right{
    align-items:center;
  }
}