/* ==========================================================================
   Lillé Vinbar – Theme Stylesheet
   Design: Dark, warm, sophisticated wine bar. Colours taken from interior.
   ========================================================================== */

/* ── 1. Custom Properties ─────────────────────────────────────────────────── */
:root {
  /* Colours */
  --clr-bg:          #0f0d0c;
  --clr-bg-alt:      #1a1614;
  --clr-bg-section:  #171210;
  --clr-gold:        #c9a84c;
  --clr-gold-hover:  #e8c97d;
  --clr-gold-muted:  rgba(201, 168, 76, 0.12);
  --clr-rose:        #9e7a6a;
  --clr-text:        #f2ede5;
  --clr-text-muted:  #8a7f75;
  --clr-border:      rgba(201, 168, 76, 0.18);
  --clr-white:       #ffffff;
  --clr-overlay:     rgba(10, 8, 7, 0.62);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-script:  'Alex Brush', cursive;

  /* Font sizes – fluid between 375px and 1440px */
  --fs-xs:   clamp(0.75rem,  1.5vw,  0.875rem);
  --fs-sm:   clamp(0.875rem, 2vw,    1rem);
  --fs-base: clamp(1rem,     2.2vw,  1.125rem);
  --fs-md:   clamp(1.125rem, 2.5vw,  1.375rem);
  --fs-lg:   clamp(1.375rem, 3vw,    1.75rem);
  --fs-xl:   clamp(1.375rem, 2.75vw, 1.75rem);
  --fs-2xl:  clamp(1.625rem, 3.25vw, 2.25rem);
  --fs-3xl:  clamp(1.875rem, 3.75vw, 2.75rem);

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   2rem;
  --sp-lg:   4rem;
  --sp-xl:   7rem;
  --sp-2xl: 10rem;

  /* Layout */
  --max-width:        1200px;
  --max-width-narrow:  720px;
  --nav-height:         72px;

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --duration:  0.35s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
a:hover {
  color: var(--clr-gold-hover);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── 3. Accessibility ─────────────────────────────────────────────────────── */

/* Skip link */
.lv-skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-sm);
  z-index: 9999;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  transition: top 0.2s;
}
.lv-skip-link:focus {
  top: var(--sp-sm);
  outline: 3px solid var(--clr-white);
  outline-offset: 2px;
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus ring – visible for keyboard users, invisible for mouse */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .lv-hero__video {
    display: none;
  }
}

/* ── 4. Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-text);
}

/* Elementor widgets carry their own per-widget typography settings that
   otherwise win by specificity, so this overrides them with !important
   to keep Elementor-built headings (front page) on the display face. */
.elementor h1,
.elementor h2,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--ff-display) !important;
  font-weight: 400 !important;
}

p { max-width: 68ch; }
p + p { margin-top: 1em; }

em { font-style: italic; }
strong { font-weight: 700; }

blockquote {
  border-left: 2px solid var(--clr-gold);
  padding-left: var(--sp-md);
  color: var(--clr-text-muted);
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-style: italic;
}

/* ── 5. Layout Utilities ──────────────────────────────────────────────────── */
.lv-container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.lv-container--narrow {
  max-width: var(--max-width-narrow);
}

.lv-text-center { text-align: center; }
.lv-text-center p { margin-inline: auto; }

.lv-break-desktop { display: none; }
@media (min-width: 768px) {
  .lv-break-desktop { display: inline; }
}

/* ── 6. Buttons ───────────────────────────────────────────────────────────── */
.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background-color var(--duration) var(--ease-out),
    color            var(--duration) var(--ease-out),
    border-color     var(--duration) var(--ease-out),
    transform        var(--duration) var(--ease-out);
}
.lv-btn:focus-visible {
  outline-offset: 4px;
}
.lv-btn:active {
  transform: translateY(1px);
}

/* Hero CTA – matches the original site's light ghost button */
.lv-btn--hero {
  background: rgba(245, 240, 235, 0.12);
  color: var(--clr-text);
  border-color: rgba(245, 240, 235, 0.45);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  padding: 1.1em 3em;
  margin-top: var(--sp-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lv-btn--hero:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* Primary – gold */
.lv-btn--primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: var(--clr-gold);
  font-weight: 700;
}
.lv-btn--primary:hover {
  background: var(--clr-gold-hover);
  border-color: var(--clr-gold-hover);
  color: var(--clr-bg);
}

/* Outline */
.lv-btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.lv-btn--outline:hover {
  background: var(--clr-gold-muted);
  color: var(--clr-gold-hover);
}

/* ── 7. Navigation ────────────────────────────────────────────────────────── */
.lv-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color var(--duration) var(--ease-out),
              box-shadow        var(--duration) var(--ease-out);
}

/* Scrolled state – added via JS */
.lv-site-header.is-scrolled {
  background-color: rgba(15, 13, 12, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border);
}

/* On non-hero pages, always solid */
.is-meny-page .lv-site-header,
.is-arrangement-page .lv-site-header {
  background-color: rgba(15, 13, 12, 0.97);
  box-shadow: 0 1px 0 var(--clr-border);
}

.lv-nav {
  height: 100%;
}
.lv-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* Logo in nav */
.lv-nav__logo,
a.custom-logo-link {
  display: flex;
  align-items: center;
  color: var(--clr-text);
  text-decoration: none;
  flex-shrink: 0;
}
.lv-nav__logo img,
a.custom-logo-link img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}
.lv-nav__logo-text {
  font-family: var(--ff-script);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--clr-text);
}

/* Nav links */
.lv-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.lv-nav__link {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.lv-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--duration) var(--ease-out);
}
.lv-nav__link:hover,
.lv-nav__link:focus-visible {
  color: var(--clr-gold);
}
.lv-nav__link:hover::after,
.lv-nav__link:focus-visible::after {
  width: 100%;
}

/* Hamburger – hidden on desktop */
.lv-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.lv-nav__toggle-bar {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-text);
  transition: transform var(--duration) var(--ease-out),
              opacity   var(--duration) var(--ease-out);
}
.lv-nav__toggle[aria-expanded="true"] .lv-nav__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.lv-nav__toggle[aria-expanded="true"] .lv-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.lv-nav__toggle[aria-expanded="true"] .lv-nav__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 600px) {
  .lv-nav__toggle { display: flex; }

  .lv-nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 13, 12, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease-out);
    z-index: 99;
  }
  .lv-nav__links.is-open {
    transform: translateX(0);
  }
  .lv-nav__link {
    font-size: var(--fs-lg);
    letter-spacing: 0.2em;
  }
}

/* ── 8. Hero Section ──────────────────────────────────────────────────────── */
.lv-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video background */
.lv-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lv-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lv-hero__video-wrap--poster {
  background-size: cover;
  background-position: center;
}
.lv-hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.lv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 7, 0.45) 0%,
    rgba(10, 8, 7, 0.55) 50%,
    rgba(10, 8, 7, 0.75) 100%
  );
}

/* Content */
.lv-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--sp-lg)) var(--sp-md) var(--sp-xl);
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

/* Logo box – mimics the original white square logo */
.lv-hero__logo {
  margin-bottom: var(--sp-md);
  text-align: center;
  display: flex;
  justify-content: center;
}
.lv-hero__logo img {
  width: clamp(160px, 30vw, 280px);
  height: auto;
  margin-inline: auto;
}

/* Placeholder when no logo uploaded */
.lv-hero__logo-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  border: 2px solid #1a1614;
  border-radius: 4px;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
  gap: 0.25rem;
}
.lv-hero__logo-script {
  font-family: var(--ff-script);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  color: #111;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.lv-hero__logo-block {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #111;
  font-weight: 400;
}

/* Heading */
.lv-hero__text {
  margin-bottom: var(--sp-sm);
}
.lv-hero__heading {
  font-size: var(--fs-2xl);
  color: var(--clr-white);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.lv-hero__heading-brand {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  display: inline-block;
}
.lv-hero__heading-sub {
  display: inline-block;
  margin-top: 0.35em;
  font-size: var(--fs-lg);
  color: var(--clr-white);
}
.lv-hero__intro {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: rgba(242, 237, 229, 0.88);
  letter-spacing: 0.03em;
  line-height: 1.8;
  max-width: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.lv-hero__intro--welcome {
  margin-top: var(--sp-sm);
  font-weight: 400;
  color: var(--clr-white);
  letter-spacing: 0.06em;
}

/* Scroll indicator */
.lv-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.lv-hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── 9. Shared Section Styles ─────────────────────────────────────────────── */
.lv-section {
  padding-block: var(--sp-xl);
}
.lv-section--about {
  background: var(--clr-bg-alt);
}
.lv-section--regions {
  background: var(--clr-bg-section);
}

/* Decorative ornament */
.lv-section__ornament {
  display: block;
  text-align: center;
  color: var(--clr-gold);
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  margin-bottom: var(--sp-md);
  opacity: 0.7;
}

/* Section heading */
.lv-section__heading {
  font-size: var(--fs-2xl);
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--sp-md);
}
.lv-section__heading--display {
  letter-spacing: 0;
}

.lv-section__lead {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.8;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  max-width: 60ch;
}

/* About body text */
.lv-section__body {
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--clr-text-muted);
  text-align: center;
}
.lv-section__body p {
  margin-inline: auto;
}
.lv-section__body p + p {
  margin-top: 1.25em;
}

/* ── 10. Wine Regions Grid ────────────────────────────────────────────────── */
.lv-regions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
@media (min-width: 700px) {
  .lv-regions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .lv-regions {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
  }
}

.lv-region {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  transition: border-color var(--duration) var(--ease-out);
}
.lv-region:hover {
  border-color: var(--clr-gold);
}
.lv-region__inner {
  padding: var(--sp-md) clamp(1.25rem, 3vw, var(--sp-md));
}

.lv-region__heading {
  font-size: var(--fs-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: 0.6em;
  flex-wrap: wrap;
}
.lv-region__flag {
  font-style: normal;
  font-size: 1.1em;
}
.lv-region__divider {
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
  margin-bottom: var(--sp-sm);
  opacity: 0.6;
}
.lv-region p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: none;
}

.lv-regions__quote {
  margin-inline: auto;
  max-width: 62ch;
  text-align: center;
  border-left: none;
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-lg) 0 0;
}
.lv-regions__quote p {
  margin-inline: auto;
  font-size: var(--fs-md);
}

/* ── 11. Footer ───────────────────────────────────────────────────────────── */
.lv-footer {
  background: #080706;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-xl);
}
.lv-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-bottom: var(--sp-lg);
}
@media (min-width: 700px) {
  .lv-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .lv-footer__inner {
    grid-template-columns: 200px 1fr 1fr;
    align-items: start;
  }
}

/* Brand column */
.lv-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.lv-footer__logo-link {
  display: inline-block;
}
.lv-footer__logo-link img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.lv-footer__logo-text {
  font-family: var(--ff-script);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--clr-text);
}

.lv-footer__social {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-xs);
}
.lv-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: border-color var(--duration), color var(--duration);
}
.lv-footer__social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* Hours */
.lv-footer__heading {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

.lv-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.lv-hours-list__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.lv-hours-list__day {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  flex-shrink: 0;
}
.lv-hours-list__time {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  text-align: right;
}
.lv-hours-list__time.is-closed {
  color: var(--clr-text-muted);
  font-style: italic;
}

/* Contact */
.lv-footer__address p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: none;
}
.lv-footer__address p + p { margin-top: 0.5em; }
.lv-footer__contact-link {
  color: var(--clr-text-muted);
  transition: color var(--duration);
}
.lv-footer__contact-link:hover {
  color: var(--clr-gold);
}
.lv-footer__map-btn {
  margin-top: var(--sp-md);
  font-size: var(--fs-xs);
  padding: 0.7em 1.5em;
}

/* Bottom bar */
.lv-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-block: var(--sp-sm);
  text-align: center;
}
.lv-footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  max-width: none;
}

/* ── 12. Inner Pages (Meny / Arrangement) ─────────────────────────────────── */
.lv-main--inner {
  padding-top: var(--nav-height);
}

/* Page header banner */
.lv-page-header {
  background: linear-gradient(to bottom, var(--clr-bg-alt), var(--clr-bg));
  padding-block: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
}
.lv-page-header__title {
  font-size: var(--fs-3xl);
  color: var(--clr-text);
}

/* Intro text on inner pages */
.lv-section--page-intro {
  padding-block: var(--sp-lg);
}
.lv-page__lead {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.85;
  text-align: center;
  margin-inline: auto;
}

/* PDF section */
.lv-section--pdf {
  padding-block: var(--sp-lg) var(--sp-xl);
}
.lv-pdf-embed {
  margin-bottom: var(--sp-md);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}
.lv-pdf-embed__object {
  width: 100%;
  height: clamp(600px, 80vh, 1000px);
  border: none;
}
.lv-pdf-embed__fallback {
  padding: var(--sp-md);
  color: var(--clr-text-muted);
  text-align: center;
}
.lv-meny__download {
  margin-top: var(--sp-sm);
}

/* No-PDF notice */
.lv-notice {
  padding: var(--sp-lg);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  text-align: center;
  background: var(--clr-gold-muted);
}
.lv-notice p {
  margin-inline: auto;
  color: var(--clr-text);
}
.lv-notice__sub {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  margin-top: 0.75em;
}

/* Arrangement text box */
.lv-arrangement__text-box {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: var(--sp-md) clamp(1.25rem, 4vw, 2.5rem);
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--clr-text-muted);
}
.lv-arrangement__text-box p { max-width: none; }
.lv-arrangement__text-box h2,
.lv-arrangement__text-box h3 {
  color: var(--clr-text);
  margin-bottom: 0.5em;
  margin-top: 1.25em;
}
.lv-arrangement__text-box h2:first-child,
.lv-arrangement__text-box h3:first-child {
  margin-top: 0;
}

.lv-section--arrangement-cta,
.lv-section--arrangement-contact {
  padding-block: var(--sp-lg) var(--sp-xl);
  border-top: 1px solid var(--clr-border);
}
.lv-arrangement__cta-text {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-md);
  margin-inline: auto;
}
.lv-link {
  color: var(--clr-gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--duration);
}
.lv-link:hover {
  text-decoration-color: var(--clr-gold);
}

/* ── 13. Elementor Compatibility ──────────────────────────────────────────── */
.lv-page__elementor-content {
  margin-top: var(--sp-md);
}
.elementor-widget-text-editor .elementor-widget-container {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* ── 14. Meny List ────────────────────────────────────────────────────────── */
.lv-meny-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.lv-meny-item {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: var(--sp-md) clamp(1.25rem, 4vw, var(--sp-md));
  transition: border-color var(--duration) var(--ease-out);
}
.lv-meny-item:hover { border-color: var(--clr-gold); }

.lv-meny-item__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
}
.lv-meny-item__no-pdf {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  font-style: italic;
  margin: 0;
}
.lv-meny-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Expandable PDF viewer */
.lv-pdf-details {
  flex: 1 1 100%;
}
.lv-pdf-details summary {
  display: inline-flex;
  cursor: pointer;
  list-style: none;
}
.lv-pdf-details summary::-webkit-details-marker { display: none; }
.lv-pdf-details[open] summary {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.lv-pdf-details .lv-pdf-embed {
  margin-top: var(--sp-sm);
}

/* Download button sits next to summary on wide screens */
@media (min-width: 500px) {
  .lv-meny-item__actions {
    flex-wrap: nowrap;
    align-items: center;
  }
  .lv-pdf-details {
    flex: 0 0 auto;
  }
  .lv-meny-item__download-btn {
    flex-shrink: 0;
  }
}

/* ── 15. Arrangement Cards & Single ──────────────────────────────────────── */
.lv-arrangement-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.lv-arrangement-card {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: var(--sp-md) clamp(1.25rem, 4vw, var(--sp-md));
  transition: border-color var(--duration) var(--ease-out);
}
.lv-arrangement-card:hover {
  border-color: var(--clr-gold);
}

.lv-arrangement-card__date {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.lv-arrangement-card__title {
  font-size: var(--fs-xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
}

.lv-arrangement-card__content {
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}
.lv-arrangement-card__content p { max-width: none; }
.lv-arrangement-card__content p + p { margin-top: 0.75em; }

.lv-arrangement-card__excerpt p { max-width: none; }
.lv-arrangement-card__cta { margin-top: var(--sp-sm); }

/* Single arrangement */
.lv-back-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-md);
  transition: color var(--duration);
}
.lv-back-link:hover { color: var(--clr-gold); }

.lv-single-arr__date {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lv-single-arr__image {
  margin-bottom: var(--sp-md);
  border-radius: 2px;
  overflow: hidden;
}
.lv-single-arr__image img {
  width: 100%;
  height: auto;
  display: block;
}

.lv-single-arr__body {
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
}
.lv-single-arr__body p         { max-width: none; }
.lv-single-arr__body p + p     { margin-top: 1em; }
.lv-single-arr__body h2,
.lv-single-arr__body h3        { color: var(--clr-text); margin: 1.25em 0 0.5em; }
.lv-single-arr__body ul,
.lv-single-arr__body ol        { padding-left: 1.5em; color: var(--clr-text-muted); }
.lv-single-arr__body ul        { list-style: disc; }
.lv-single-arr__body ol        { list-style: decimal; }

.lv-single-arr__cta { margin-top: var(--sp-md); }

/* ── 15. WordPress Core ───────────────────────────────────────────────────── */
.wp-caption { max-width: 100%; }
.aligncenter {
  display: block;
  margin-inline: auto;
}
.alignleft  { float: left;  margin-right: 1.5rem; }
.alignright { float: right; margin-left:  1.5rem; }

/* ── 16. Elementor Compatibility ─────────────────────────────────────────── */

/* Hero: ensure the inner container is always above the background overlay.
   Elementor places its overlay at z-index 2; we must be higher. */
.elementor-section.lv-hero > .elementor-container {
  position: relative;
  z-index: 10 !important;
  width: 100%;
  max-width: 860px;
}

/* Strip Elementor's own padding on the column wrap so lv-hero__content
   handles all spacing without doubling up. */
.elementor-section.lv-hero .elementor-column-wrap,
.elementor-section.lv-hero .elementor-widget-wrap {
  padding: 0 !important;
}

/* Elementor wraps buttons in an anchor + span; reset its own colours so the
   lv-btn classes are not overridden. */
.elementor-section.lv-hero .elementor-button-wrapper .elementor-button {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}

/* About section: background colour and spacing applied natively in Elementor,
   so we only need to ensure the container doesn't add extra padding. */
.elementor-section.lv-section--about > .elementor-container,
.elementor-section.lv-section--regions > .elementor-container {
  padding-block: 0;
}

/* lv-main--elementor: Elementor sections provide their own spacing. */
.lv-main--elementor {
  padding: 0;
}

/* ── 15. Print ────────────────────────────────────────────────────────────── */
@media print {
  .lv-site-header,
  .lv-hero__video-wrap,
  .lv-hero__scroll,
  .lv-footer__social { display: none; }

  body {
    background: #fff;
    color: #111;
    font-size: 12pt;
  }
  .lv-footer {
    background: #fff;
    color: #111;
    border-top: 1px solid #ccc;
  }
  a { color: #111; }
  .lv-btn { border: 1px solid #111; }
}
