/* =============================================
   CLEAN CARZ
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Syne:wght@700;800&display=swap');

:root {
  --dark:    #FFFFFF;
  --surface: #F0F5FF;
  --card:    #FFFFFF;
  --border:  rgba(0,0,0,.08);

  /* Blue spectrum */
  --b1: #003A8C;   /* deep navy */
  --b2: #0055CC;   /* rich blue */
  --b3: #0080FF;   /* vivid blue */
  --b4: #38B6FF;   /* sky blue */

  /* Gradient helpers */
  --grad-blue: linear-gradient(135deg, var(--b1) 0%, var(--b4) 100%);
  --grad-blue-soft: linear-gradient(135deg, rgba(0,58,140,.14) 0%, rgba(56,182,255,.08) 100%);

  --gold:  #C49A3C;
  --white: #111827;   /* main text — dark for light theme */
  --muted: #6B7280;

  --serif:   'Cormorant Garamond', Georgia, serif;
  --display: 'Syne', system-ui, sans-serif;
  --sans:    'Inter', system-ui, sans-serif;
  --r:     40px;   /* pill buttons */
  --r-card: 12px;
  --t:     .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap    { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.sect    { padding: 108px 0; }
.sect-sm { padding: 64px 0; }

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p  { color: var(--muted); line-height: 1.85; font-size: .94rem; }

.overline {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--b4);
  margin-bottom: 10px;
}

/* ─── Buttons — pill shape ─── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  border-radius: var(--r);
}

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  padding: 14px 32px;
  box-shadow: 0 4px 24px rgba(0,58,140,.25);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 32px rgba(0,128,255,.35); }

.btn-ghost {
  background: transparent;
  color: var(--b2);
  border: 1px solid rgba(0,128,255,.3);
  padding: 13px 30px;
}
.btn-ghost:hover { border-color: var(--b3); color: var(--b3); }

/* Ghost on dark backgrounds (hero, page-hero) */
.hero .btn-ghost,
.page-hero .btn-ghost,
.sect-dark .btn-ghost {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.25);
}
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover { border-color: var(--b4); color: var(--b4); }

/* btn-text on dark hero */
.hero .btn-text { color: rgba(255,255,255,.6); }
.hero .btn-text:hover { color: var(--b4); }

.btn-text {
  background: none;
  color: var(--muted);
  padding: 0;
  gap: 8px;
  transition: color var(--t);
  border-radius: 0;
}
.btn-text::after { content: '→'; }
.btn-text:hover  { color: var(--b4); }

/* ─── Navbar — floating pill ─── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: max-content;
  max-width: calc(100vw - 40px);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 6px 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: 8px;
}
.nav-logo img {
  height: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 3px 8px;
}
.nav-logo-name {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--t);
}
.nav-links a:hover  { color: var(--white); background: rgba(0,0,0,.05); }
.nav-links a.active { color: var(--b2); }

.nav-pill .btn { padding: 10px 22px; font-size: .68rem; margin-left: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--white); }

/* ─── Mobile nav dropdown (light) ─── */

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.30) 0%, rgba(0,0,0,.62) 100%),
    url('Bakrunn.png');
  background-size: cover;
  background-position: center top;
  color: #fff;
}

/* All text in hero forced white */
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero h1 em { color: var(--b4); }
.hero p, .hero .hero-lead { color: rgba(255,255,255,.72); }
.hero-eyebrow-line { background: rgba(255,255,255,.35); }
.hero-eyebrow-text { color: rgba(255,255,255,.6); }

.hero-content { position: relative; z-index: 2; text-align: center; }

.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--b4); }
.hero-eyebrow-text { font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; color: var(--b4); }

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--b4); }

.hero-lead { font-size: .98rem; color: rgba(237,240,252,.65); max-width: 400px; margin-bottom: 40px; line-height: 1.85; }

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.hero h1 { max-width: 780px; margin-left: auto; margin-right: auto; }

.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.08); margin-bottom: 36px; }

.hero-stats { display: flex; gap: 56px; flex-wrap: wrap; }
.hero-stat dt { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 6px; }
.hero-stat dd { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ─── Features ─── */
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.features-header h2 { margin-top: 10px; }

.feature-list { list-style: none; border-top: 1px solid var(--border); }
.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
  align-items: start;
}
.feature-item:hover { border-color: rgba(0,128,255,.35); }

.feature-num   { font-family: var(--serif); font-size: .78rem; color: var(--b4); padding-top: 8px; }
.feature-title { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.feature-body  { font-size: .9rem; line-height: 1.85; grid-column: 2; }

/* ─── Testimonials ─── */
.proof { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.proof-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  gap: 32px;
}
.proof-top h2 { margin-top: 10px; }

.testi-main { padding: 56px 0; border-bottom: 1px solid var(--border); }
.testi-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 720px;
}
.testi-quote::before { content: '\201C'; color: var(--b4); }
.testi-quote::after  { content: '\201D'; color: var(--b4); }

.testi-source { display: flex; align-items: center; gap: 14px; }
.testi-stars  { display: flex; gap: 3px; }
.star { width: 9px; height: 9px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testi-name { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.testi-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.testi-mini { padding: 36px 32px; border-right: 1px solid var(--border); }
.testi-mini:last-child { border-right: none; }
.testi-mini .testi-stars { margin-bottom: 14px; }
.testi-mini blockquote { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.testi-mini cite { font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* ─── Gallery Carousel ─── */
.gallery-sect { padding: 108px 0 80px; }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.gallery-header h2 { margin-top: 10px; }

.gallery-arrows { display: flex; gap: 10px; flex-shrink: 0; }

.gallery-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  font-size: 1rem;
  line-height: 1;
}
.gallery-arrow:hover:not(:disabled) { border-color: var(--b3); color: var(--b3); background: rgba(42,143,255,.08); }
.gallery-arrow:disabled { opacity: .25; cursor: default; }

.gallery-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  padding-left: max(28px, calc((100vw - 1080px) / 2 + 28px));
}
.gallery-track-wrap::-webkit-scrollbar { display: none; }

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 40px;
}

.gallery-card {
  display: block;
  position: relative;
  flex: 0 0 340px;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.05); }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(5, 15, 60, .45) 60%,
    rgba(3, 6, 24, .92) 100%
  );
}

.gallery-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}

.gallery-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 28px;
}

.gallery-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.gallery-dot.active {
  background: var(--b3);
  width: 24px;
}

@media (max-width: 768px) {
  .gallery-card { flex: 0 0 270px; height: 380px; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery-track-wrap { padding-left: 20px; }
}

/* ─── Pricing (tjenester) ─── */
.price-group { margin-bottom: 64px; }
.price-group-title {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--b4);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: border-color var(--t);
}
.price-row:hover { border-color: rgba(18,81,255,.3); }
.price-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--white); }
.price-desc { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.price-amt  {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-policy {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px 28px;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 48px;
}
.price-policy strong { color: var(--b3); font-weight: 500; }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 { margin-top: 10px; margin-bottom: 18px; }
.contact-left > p { margin-bottom: 36px; }

.ci-list { list-style: none; margin-bottom: 36px; }
.ci { display: flex; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.ci-list > .ci:first-child { border-top: 1px solid var(--border); }
.ci-label { font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--b3); width: 72px; flex-shrink: 0; padding-top: 2px; }
.ci-value { color: var(--white); line-height: 1.6; }
.ci-value a { color: var(--white); transition: color var(--t); }
.ci-value a:hover { color: var(--b4); }

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

.map-wrap { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* ─── Footer ─── */
.footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand img { height: 32px; background: white; border-radius: 3px; padding: 2px 6px; margin-bottom: 16px; }
.footer-brand p { font-size: .84rem; max-width: 200px; line-height: 1.75; }
.footer-col h4 { font-size: .63rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--b3); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a { font-size: .84rem; color: var(--muted); transition: color var(--t); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { padding-bottom: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .76rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .76rem; color: var(--muted); transition: color var(--t); }
.footer-legal a:hover { color: var(--white); }

/* ─── Page hero (inner pages) ─── */
.page-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,128,255,.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,128,255,.07);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 10px; margin-bottom: 18px; max-width: 620px; }
.page-hero p  { font-size: .98rem; max-width: 460px; margin-bottom: 28px; }

/* ─── About ─── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.about-intro-right p + p { margin-top: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-stat { padding: 48px 24px; text-align: center; border-right: 1px solid var(--border); }
.about-stat:first-child { border-left: 1px solid var(--border); }
.about-stat dt { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 8px; }
.about-stat dd { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.values-list { list-style: none; border-top: 1px solid var(--border); }
.value-item { display: grid; grid-template-columns: 40px 1fr; gap: 36px; padding: 48px 0; border-bottom: 1px solid var(--border); align-items: start; }
.v-num { font-family: var(--serif); font-size: .78rem; color: var(--b4); padding-top: 8px; }
.v-content h3 { margin-bottom: 12px; }
.v-content p  { font-size: .9rem; line-height: 1.85; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-header { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-intro     { grid-template-columns: 1fr; gap: 40px; }
  .about-stats     { grid-template-columns: repeat(2,1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-left: 1px solid var(--border); }
  .testi-mini-grid { grid-template-columns: 1fr; }
  .testi-mini { border-right: none; border-bottom: 1px solid var(--border); }
  .testi-mini:last-child { border-bottom: none; }
  .proof-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .sect  { padding: 72px 0; }
  .wrap  { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .nav-links, .nav-pill .btn { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    padding: 16px;
    gap: 4px;
    z-index: 99;
    backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }

  .nav-links.open a {
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--muted);
  }

  .feature-item { grid-template-columns: 40px 1fr; gap: 10px 20px; }
  .feature-body { grid-column: 2; }
  .hero-stats   { gap: 28px; }
  .map-wrap     { height: 280px; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-row    { flex-direction: column; align-items: flex-start; gap: 6px; }
  .price-amt    { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .footer-top  { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── Booking Form ─── */
.booking-form { display: flex; flex-direction: column; }

.form-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.form-section-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.req { color: var(--b4); }

.form-input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  color: var(--white);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.form-input:focus {
  border-color: var(--b3);
  box-shadow: 0 0 0 3px rgba(0,128,255,.10);
}
.form-input::placeholder { color: var(--muted); }
.form-input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.5); cursor: pointer; }

.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234C5578' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-select option { background: var(--card); }

.form-textarea { min-height: 110px; resize: vertical; line-height: 1.7; }

/* Service checkboxes */
.service-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
@media (max-width: 480px) { .service-checks { grid-template-columns: 1fr; } }

.service-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  user-select: none;
}
.service-check-item:hover { border-color: rgba(0,128,255,.4); }
.service-check-item.checked {
  border-color: var(--b3);
  background: rgba(0,128,255,.06);
  box-shadow: 0 0 0 1px rgba(0,128,255,.15);
}

.service-check-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--b3);
  cursor: pointer;
}
.service-check-body { display: flex; flex-direction: column; gap: 3px; }
.service-check-name { font-size: .875rem; font-weight: 400; color: var(--white); }
.service-check-price { font-size: .75rem; color: var(--b4); font-weight: 400; letter-spacing: .04em; }

.form-hint { font-size: .78rem; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.form-error { font-size: .78rem; color: #ff6b6b; margin-top: 6px; }

/* Success */
.booking-success { text-align: center; padding: 80px 32px; }
.booking-success-icon {
  width: 64px; height: 64px;
  background: var(--grad-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 28px;
  box-shadow: 0 0 32px rgba(0,128,255,.25);
}
.booking-success h2 { font-family: var(--display); font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; }
.booking-success p { color: var(--muted); max-width: 380px; margin: 0 auto; line-height: 1.75; }

/* ─── Gallery Grid (centered 2×2 layout) ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-grid .gallery-card {
  flex: none;
  width: 100%;
  height: 420px;
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-card { height: 320px; }
}
