/* Self-hosted fonts definitions */
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/schibsted-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/schibsted-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/schibsted-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/mulish-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/mulish-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/mulish-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/mulish-700.woff2') format('woff2');
}

/* Color Tokens Variables */
:root {
  --night: #12203A;
  --mist: #F5F7FA;
  --board: #FFFFFF;
  --gold: #F5C561;
  --gold-br: #FFD97D;
  --gold-ink: #9A6412;
  --gold-deep: #B7791F;
  --muted: #5A6577;
  --card: #FFFFFF;
  --text: var(--night);
  --line-color: #C9D2E0;
}

/* Dark mode override */
[data-theme="dark"],
@media (prefers-color-scheme: dark) {
  :root {
    --board: var(--night);
    --mist: #1A2A47;
    --card: #1A2A47;
    --text: #E8EDF5;
    --muted: #AAB6CC;
    --line-color: #2A3C5E;
  }
}

/* General Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Mulish', sans-serif;
  background-color: var(--board);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Schibsted Grotesk', sans-serif;
  color: var(--text);
  margin-top: 0;
}

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

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

/* Preview Ribbon */
.preview-ribbon {
  background-color: var(--gold);
  color: #12203A;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2000;
}
.ribbon-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.ribbon-chips {
  display: flex;
  gap: 0.5rem;
}
.ribbon-chip {
  background-color: #12203A;
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.ribbon-chip:hover {
  opacity: 0.9;
}
.ribbon-dismiss {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #12203A;
  line-height: 1;
  padding: 0 0.5rem;
}

/* Forced Dark Theme Utility */
.always-dark {
  background-color: var(--night);
  color: #E8EDF5;
  --text: #E8EDF5;
  --muted: #AAB6CC;
  --line-color: #2A3C5E;
}
.always-dark h1, .always-dark h2, .always-dark h3, .always-dark h4 {
  color: #E8EDF5;
}

/* Masthead (Header) */
.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  position: relative;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  border-bottom: 1px solid var(--line-color);
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-link {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  display: flex;
  gap: 2px;
}
.logo-experts {
  color: #FFFFFF;
}
.logo-pro {
  color: var(--gold);
}
.logo-light-line {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}
.logo-light-line .bulb {
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 5px 1.5px rgba(245, 197, 97, 0.95);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #E8EDF5;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-phone-btn {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  transition: all 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-phone-btn:hover {
  background-color: var(--gold);
  color: #12203A;
}

/* Mobile Nav details/summary */
.mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav summary {
    list-style: none;
    cursor: pointer;
    outline: none;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
  }
  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
  }
  .mobile-nav .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1A2A47;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }
  .mobile-nav .nav-links a {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #E8EDF5;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mobile-nav .nav-links a.active {
    color: var(--gold);
  }
  .mobile-nav .nav-links a.nav-phone-link {
    color: var(--gold);
    border-bottom: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background-color: var(--gold);
  color: #12203A;
}
.btn-gold:hover {
  background-color: var(--gold-br);
}
.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn-outline:hover {
  background-color: #FFFFFF;
  color: #12203A;
}
.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('img/hero-lit.jpg');
  background-size: cover;
  background-position: center;
  padding-bottom: 6rem;
}
.hero-top-scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(18, 32, 58, 0.95), rgba(18, 32, 58, 0));
  z-index: 1;
}
.hero-scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 32, 58, 0.7);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  margin-top: 4rem;
}
.hero-eyebrow {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 650px;
  color: #E8EDF5;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* Hero Trust Row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background-color: rgba(18, 32, 58, 0.4);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  width: fit-content;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-val {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
}
.trust-lbl {
  font-size: 0.85rem;
  color: #AAB6CC;
}
.trust-divider {
  width: 1px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .trust-divider {
    display: none;
  }
}

/* The Light Line (Signature CSS device) */
.light-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--line-color);
  margin: 3.5rem auto;
  max-width: 1200px;
}
.light-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--line-color);
  transform: translateY(-50%);
  z-index: 1;
}
.light-line .bulb {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 3px rgba(245, 197, 97, 0.9);
  z-index: 2;
  position: relative;
}
.light-line-top {
  margin-top: 0 !important;
  margin-bottom: 4rem;
  max-width: 100% !important;
}

/* Animation Twinkle */
@media (prefers-reduced-motion: no-preference) {
  @keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
  .light-line .bulb, .logo-light-line .bulb {
    animation: twinkle 3s infinite ease-in-out;
  }
  .light-line .bulb:nth-child(2n), .logo-light-line .bulb:nth-child(2n) {
    animation-delay: 0.5s;
  }
  .light-line .bulb:nth-child(3n) {
    animation-delay: 1.1s;
  }
  .light-line .bulb:nth-child(5n) {
    animation-delay: 1.8s;
  }
}

/* What We Do Section */
.what-we-do-section, .trust-pricing-section, .before-after-section, .testimonials-section, .services-title-section, .gallery-section {
  padding: 2rem 0;
}
.section-eyebrow {
  display: block;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--gold-ink);
  margin-bottom: 0.5rem;
}
.always-dark .section-eyebrow {
  color: var(--gold);
}
.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* Services asymmetrical Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.service-card {
  grid-column: span 2;
  background-color: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-color);
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card.card-wide {
  grid-column: span 3;
}
.card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 1.5rem;
}
.card-body h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 991px) {
  .service-card {
    grid-column: span 3;
  }
  .service-card.card-wide {
    grid-column: span 3;
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card, .service-card.card-wide {
    grid-column: span 1;
  }
}

/* Trust & Pricing layout */
.trust-pricing-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guarantee-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 2rem;
}
.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-ink);
  font-weight: 900;
  font-size: 1.2rem;
}
[data-theme="dark"] .guarantee-list li::before,
@media (prefers-color-scheme: dark) {
  .guarantee-list li::before {
    color: var(--gold);
  }
}
.guarantee-list li strong {
  display: block;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.guarantee-list li p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Pricing Card */
.pricing-preview-card {
  background-color: var(--night);
  border-radius: 12px;
  padding: 2.2rem;
  color: #E8EDF5;
  border: 1px solid #2A3C5E;
}
.pricing-card-inner {
  display: flex;
  flex-direction: column;
}
.pricing-card-eyebrow {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.starting-price-rows {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.8rem;
}
.price-service {
  font-weight: 600;
}
.price-value {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
}
.pricing-card-text {
  font-size: 0.85rem;
  color: #AAB6CC;
  margin: 0 0 1.5rem 0;
}

@media (max-width: 991px) {
  .trust-pricing-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Holiday Lighting Showpiece (Always Dark) */
.holiday-showpiece {
  padding-bottom: 4rem;
}
.showpiece-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.showpiece-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gold-text {
  color: var(--gold) !important;
}
.showpiece-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.showpiece-photo {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
}
.showpiece-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .showpiece-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .showpiece-photo {
    height: 280px;
  }
}

/* Before After Display */
.before-after-display {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.ba-card {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-color);
  background-color: var(--card);
}
.ba-img-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.ba-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-badge {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 4px;
}
.badge-before {
  left: 1.5rem;
  background-color: #12203A;
  color: #FFFFFF;
}
.badge-after {
  right: 1.5rem;
  background-color: var(--gold);
  color: #12203A;
}
.ba-caption {
  padding: 1.5rem;
}
.ba-caption h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.ba-caption p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .ba-img-container {
    height: 240px;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background-color: var(--card);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--line-color);
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--gold-ink);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
[data-theme="dark"] .stars,
@media (prefers-color-scheme: dark) {
  .stars {
    color: var(--gold);
  }
}
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}
.testimonial-author {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Band (Always Dark) */
.contact-band {
  background-color: var(--night);
  padding: 5rem 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-cta-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.light-line-contact {
  margin-bottom: 1.5rem !important;
}
.contact-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.big-gold-phone {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color 0.2s;
  display: inline-block;
  min-height: 44px;
}
.big-gold-phone:hover {
  color: var(--gold-br);
}
.contact-details {
  color: #AAB6CC;
  font-size: 0.95rem;
  margin: 0;
}

/* Contact form card */
.contact-form-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--night);
}
.contact-form-card h3 {
  color: var(--night);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.form-group input {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #C9D2E0;
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  background-color: #F5F7FA;
  color: var(--night);
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold-ink);
  background-color: #FFFFFF;
}
.form-disclaimer {
  font-size: 0.75rem;
  color: #5A6577;
  text-align: center;
  margin: 0.8rem 0 0 0;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
@media (max-width: 767px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

/* Footer (Always Dark) */
.footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}
.footer-wordmark { display: flex; align-items: baseline; }
.footer-brand .logo-pro { color: #F5C561; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: 1.5rem; }
.footer-brand .logo-experts {
  color: #FFFFFF;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}
.footer-bullets {
  font-size: 0.85rem;
  color: #AAB6CC;
  margin: 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.footer-phone-number {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  min-height: 44px;
}
.footer-email {
  color: #AAB6CC;
  font-size: 0.95rem;
  min-height: 44px;
}

@media (max-width: 767px) {
  .footer-contact {
    align-items: flex-start;
  }
}

/* Mobile Sticky Call Bar */
.mobile-sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background-color: var(--night);
  z-index: 1000;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: none;
}
.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gold);
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .mobile-sticky-call-bar {
    display: block;
  }
  body {
    padding-bottom: 48px; /* Leave space for sticky bar */
  }
}

/* Services.html specific styles */
.services-title-section {
  text-align: center;
  padding: 4rem 0 2rem 0;
  background-color: var(--mist);
}
.services-h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.services-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
}
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.service-detail-block.block-reverse {
  grid-template-columns: 1.1fr 1fr;
}
.service-detail-block.block-reverse .detail-copy {
  grid-column: 2;
}
.service-detail-block.block-reverse .detail-photo {
  grid-column: 1;
  grid-row: 1;
}
.detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail-copy h2 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.detail-photo {
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
}
.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .service-detail-block, .service-detail-block.block-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .service-detail-block.block-reverse .detail-copy {
    grid-column: 1;
  }
  .service-detail-block.block-reverse .detail-photo {
    grid-column: 1;
  }
  .detail-photo {
    height: 260px;
  }
}

/* Pricing tables */
.pricing-tables-section {
  background-color: var(--mist);
  padding: 5rem 0;
}
.pricing-disclaimer {
  color: var(--muted);
  text-align: center;
  margin-top: -2rem;
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.pricing-table-card {
  background-color: var(--card);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--line-color);
}
.pricing-table-card h3 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.pricing-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem 0;
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-table th {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-align: left;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--line-color);
}
.prices-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
}
[data-theme="dark"] .prices-table td,
@media (prefers-color-scheme: dark) {
  .prices-table td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}
.prices-table tbody tr:last-child td {
  border-bottom: none;
}
.prices-table td:not(:first-child) {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
}
.table-notes {
  margin-top: 1.5rem;
  border-top: 1px dashed var(--line-color);
  padding-top: 1rem;
}
.table-notes p {
  margin: 0 0 0.4rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* À la carte list styling */
.alacarte-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.alacarte-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
[data-theme="dark"] .alacarte-list li,
@media (prefers-color-scheme: dark) {
  .alacarte-list li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}
.alacarte-list li:last-child {
  border-bottom: none;
}
.alacarte-list li span {
  color: var(--text);
}
.alacarte-list li strong {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .pricing-table-card {
    padding: 1.5rem;
  }
}

/* Gallery layout (Uneven Masonry) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  grid-column: span 4;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--line-color);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 1rem;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  border-top: 1px solid var(--line-color);
  background-color: var(--card);
}

/* Make grid items uneven */
.gallery-item.item-wide {
  grid-column: span 6;
}
.gallery-item.item-tall {
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-item.item-large {
  grid-column: span 8;
  grid-row: span 2;
}

@media (max-width: 991px) {
  .gallery-item, .gallery-item.item-wide, .gallery-item.item-tall, .gallery-item.item-large {
    grid-column: span 6;
    grid-row: span 1;
  }
}
@media (max-width: 767px) {
  .gallery-item, .gallery-item.item-wide, .gallery-item.item-tall, .gallery-item.item-large {
    grid-column: span 12;
  }
}
