/* ===================================================
   NAILS TRONDHEIM — Premium Stylesheet
   Palette: Burgundy #6B1030 · Gold #C9A96E · Cream #FAF7F4
=================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:    #6B1030;
  --burgundy-dk: #4A0B21;
  --gold:        #C9A96E;
  --gold-lt:     #DFC090;
  --cream:       #FAF7F4;
  --cream-dk:    #F0E8E0;
  --charcoal:    #1E1218;
  --text:        #2C1E24;
  --text-muted:  #7A6570;
  --white:       #FFFFFF;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Splash ── */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--burgundy-dk);
  display: flex; align-items: center; justify-content: center;
  animation: splashFade 0.6s ease forwards 2.8s;
  pointer-events: none;
}
#splash.hidden { display: none; }
.splash-logo {
  width: min(320px, 80vw);
  height: auto;
  object-fit: contain;
  animation: splashScale 1.2s var(--ease-out) forwards;
}
@keyframes splashScale {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes splashFade {
  to { opacity: 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.1rem 2rem;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(107,16,48,0.08);
}
.nav-brand-text {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.4s;
}
#nav.scrolled .nav-brand-text { color: var(--burgundy-dk); }
.nav-brand-text em { font-style: italic; color: var(--gold); }
#nav.scrolled .nav-brand-text em { color: var(--burgundy); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
#nav.scrolled .nav-links a { color: var(--text-muted); }
#nav.scrolled .nav-links a:hover { color: var(--burgundy); }
.nav-ig svg { vertical-align: middle; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
#nav.scrolled .nav-burger span { background: var(--burgundy-dk); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
#hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74,11,33,0.72) 0%,
    rgba(30,18,24,0.55) 60%,
    rgba(30,18,24,0.3) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title span { display: block; }
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dk);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.72rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.85rem; }

/* ── Containers ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section Labels ── */
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.centered { text-align: center; }
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--burgundy-dk);
  margin-bottom: 2.5rem;
}
.section-title.centered { text-align: center; }
.section-title em {
  font-style: italic;
  color: var(--burgundy);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety net — never leave hidden */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── About ── */
#om-meg {
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  height: 560px;
  object-position: center top;
  border-radius: 2px;
}
.about-img-deco {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.5;
}
.about-text { padding: 1rem 0; }
.about-body {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.about-body em { color: var(--burgundy); font-style: italic; }
.about-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2rem;
}
.badge {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid rgba(107,16,48,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 1px;
}

/* ── Services ── */
#tjenester {
  padding: 7rem 0;
  background: var(--burgundy-dk);
}
#tjenester .section-label { color: var(--gold); }
#tjenester .section-title { color: var(--cream); }
#tjenester .section-title em { color: var(--gold-lt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(201,169,110,0.15);
}
.service-card {
  background: rgba(74,11,33,0.6);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.service-card:hover { background: rgba(74,11,33,0.9); }
.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.service-name-en {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-desc {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(250,247,244,0.55);
  margin-bottom: 1.8rem;
}
.service-price {
  display: flex; align-items: baseline; gap: 0.3rem;
  margin-top: auto;
}
.price-from {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(201,169,110,0.65);
}
.price-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-cur {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: var(--gold);
}
.service-card--cta {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
}
.service-cta-text {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.service-cta-sub {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(250,247,244,0.5);
  margin-bottom: 1.8rem;
}

/* ── Services section header (HANDS / FEET divider) ── */
.services-section-header {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

/* ── Extras block ── */
.extras-block {
  margin-top: 3rem;
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2.5rem 2.5rem 2rem;
  background: rgba(201,169,110,0.05);
}
.extras-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.extras-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.extra-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.extra-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream);
  white-space: nowrap;
}
.extra-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,169,110,0.25);
  margin-bottom: 3px;
}
.extra-price {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.extras-footnote {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  color: rgba(250,247,244,0.35);
  margin-top: 1.2rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── Gallery ── */
#galleri {
  padding: 7rem 0;
  background: var(--cream-dk);
}
#galleri .section-label,
#galleri .section-title { padding: 0 1.5rem; }

.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item[data-size="tall"] {
  grid-row: span 2;
}
.gallery-item img {
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,11,33,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(30,18,24,0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 900px; width: 100%;
  text-align: center;
}
#lightboxImg {
  width: auto; height: auto;
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-caption {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-top: 1rem;
  font-style: italic;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none; border: none;
  color: var(--cream); cursor: pointer;
  font-size: 1.2rem;
  padding: 0.75rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }

/* ── Booking ── */
#book-time {
  padding: 8rem 0;
  background: var(--cream);
}
#book-time .section-label { color: var(--gold); }
.booking-sub {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 500px;
  margin: -1.5rem auto 3rem;
  text-align: center;
}

/* ── Booking owner card ── */
.booking-owner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  background: var(--cream-dark);
  border: 1px solid rgba(107,16,48,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.booking-owner-img-wrap {
  height: 420px;
  overflow: hidden;
}
.booking-owner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease-out);
}
.booking-owner:hover .booking-owner-img { transform: scale(1.03); }
.booking-owner-text {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
.booking-owner-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.booking-owner-name {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--burgundy-dk);
  margin-bottom: 1.2rem;
}
.booking-owner-name em {
  font-style: italic;
  color: var(--burgundy);
}
.booking-owner-bio {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.booking-owner-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid rgba(107,16,48,0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.booking-owner-ig:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 760px) {
  .booking-owner {
    grid-template-columns: 1fr;
  }
  .booking-owner-img-wrap { height: 320px; }
  .booking-owner-text { padding: 2rem; }
}

.calendly-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(107,16,48,0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(107,16,48,0.06);
}

/* ── Timma iframe ── */
.timma-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(107,16,48,0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(107,16,48,0.06);
}
.timma-iframe {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}
/* Fallback card — shown until Calendly URL is configured */
.booking-fallback {
  max-width: 520px;
  margin: 0 auto;
  display: none; /* shown via JS when Calendly URL is placeholder */
}
.booking-fallback.visible { display: block; }
.booking-fallback-inner {
  background: var(--cream-dk);
  border: 1px solid rgba(107,16,48,0.12);
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-radius: 4px;
}
.booking-fallback-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.8rem;
  color: var(--burgundy);
  opacity: 0.5;
}
.booking-fallback-icon svg { width: 100%; height: 100%; }
.booking-fallback-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--burgundy-dk);
  margin-bottom: 0.8rem;
}
.booking-fallback-text {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.booking-fallback-note {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 1.2rem;
  font-style: italic;
}

/* ── Contact ── */
#kontakt {
  padding: 8rem 0;
  background: var(--cream);
  text-align: center;
}
.contact-sub {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin: -1.5rem auto 3rem;
}
.contact-ctas {
  display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center;
  margin-bottom: 3rem;
}
.contact-info {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.contact-info-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.contact-info-item a { color: var(--burgundy); }
.contact-info-item a:hover { text-decoration: underline; }

/* ── Footer ── */
#footer {
  background: var(--charcoal);
  padding: 3rem 0;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
}
.footer-brand em { color: var(--gold); font-style: italic; }
.footer-copy {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  color: rgba(250,247,244,0.35);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex; gap: 1.5rem;
}
.footer-links a {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,244,0.45);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ── FAB (Floating Action Button) ── */
.fab {
  display: none;
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--burgundy-dk);
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,169,110,0.5);
}

/* ═══════════════════════════════════
   RESPONSIVE — Tablet
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .extras-block { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════
   RESPONSIVE — Mobile
═══════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav mobile */
  #nav { padding: 1rem 1.25rem; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 25%;
    background: var(--burgundy-dk);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--cream) !important;
  }
  .nav-links a:hover { color: var(--gold) !important; }
  #nav.scrolled .nav-links a { color: var(--cream) !important; }

  /* Hero mobile */
  .hero-title { font-size: clamp(2.4rem, 11vw, 4rem); }

  /* About mobile */
  #om-meg { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 380px; }
  .about-img-deco { display: none; }

  /* Services mobile */
  #tjenester { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .extras-block { padding: 1.8rem 1.25rem; }

  /* Gallery mobile */
  #galleri { padding: 5rem 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item[data-size="tall"] { grid-row: span 1; }

  /* Gallery overlay always visible on mobile */
  .gallery-overlay { opacity: 1; }

  /* Contact mobile */
  #kontakt { padding: 5rem 0; }
  .contact-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 340px; justify-content: center; }

  /* Footer mobile */
  .footer-inner { flex-direction: column; text-align: center; }

  /* FAB visible on mobile */
  .fab { display: inline-flex; }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}
