:root {
  --ink: #211f19;
  --paper: #f4ead6;
  --paper-light: #fbf7ee;
  --moss: #344832;
  --moss-dark: #1f3021;
  --wine: #7d3136;
  --gold: #a77b27;
  --line: #c8b993;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); max-width: 13ch; letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.site-width { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: white; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.contact-strip { background: var(--moss-dark); color: #f8f0dd; font-size: .8rem; letter-spacing: .02em; }
.contact-strip__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.contact-strip__inner div { display: flex; gap: 10px; }
.contact-strip a { text-decoration: none; }
.contact-strip a:hover { text-decoration: underline; }

.brand-masthead {
  color: #f7efde;
  background: var(--moss-dark);
}
.brand-masthead__inner {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
}
.brand-masthead__link {
  display: block;
  border-radius: 50%;
  transition: transform .18s ease;
}
.brand-masthead__link:hover,
.brand-masthead__link:focus-visible { transform: translateY(-2px); }
.brand-masthead img {
  width: 138px;
  height: 138px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(8, 12, 8, .34));
}

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 253, 248, .97); border-bottom: 1px solid #d9cfb6; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.header-inner--solo { justify-content: center; }
.brand { width: 158px; flex: 0 0 auto; }
.brand img { width: 100%; height: 64px; object-fit: contain; }
.site-icon-nav { color: #f7efde; background: var(--moss); border-bottom: 4px solid var(--wine); }
.site-icon-nav__inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
  padding-block: 7px;
}
.site-icon-nav a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 3px 4px 5px;
  border-bottom: 2px solid transparent;
  text-align: center;
  text-decoration: none;
}
.site-icon-nav img { width: 54px; height: 54px; flex: 0 0 auto; object-fit: contain; }
.site-icon-nav span { font-family: Georgia, 'Times New Roman', serif; font-size: .78rem; line-height: 1.15; white-space: nowrap; }
.site-icon-nav a:hover,
.site-icon-nav a:focus-visible { color: #f1d8d9; border-color: #b95b61; }
.site-icon-nav a.is-current { color: #f1d8d9; border-color: #b95b61; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 2vw, 28px); }
.desktop-nav a { font-family: Georgia, 'Times New Roman', serif; font-size: .95rem; text-decoration: none; padding: 32px 0 27px; border-bottom: 3px solid transparent; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--wine); border-color: var(--wine); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { cursor: pointer; border: 1px solid var(--ink); padding: 8px 14px; font-weight: 700; }
.mobile-nav nav { position: absolute; right: 0; top: 48px; width: min(290px, 82vw); background: var(--white); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(33,31,25,.18); }
.mobile-nav nav a { display: block; padding: 12px 18px; border-bottom: 1px solid #ded2b6; text-decoration: none; }

.hero { min-height: 660px; position: relative; display: grid; align-items: center; color: white; background: #25251d url('/images/hero-market.jpg') center 46% / cover no-repeat; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,15,.86) 0%, rgba(20,20,15,.58) 47%, rgba(20,20,15,.14) 76%); }
.hero__content { position: relative; padding-block: 90px; }
.eyebrow { margin-bottom: 16px; color: var(--gold); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.hero .eyebrow { color: #f1cc79; }
.hero__lead { max-width: 620px; font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.7; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; border: 2px solid transparent; border-radius: 2px; text-decoration: none; font-weight: 800; }
.button--primary { background: var(--wine); color: white; border-color: var(--wine); }
.button--primary:hover { background: #64252a; border-color: #64252a; }
.button--outline { color: white; border-color: white; background: rgba(0,0,0,.16); }
.button--outline:hover { background: white; color: var(--ink); }

.quick-nav { padding: 88px 0 96px; background: var(--paper); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading > p:last-child { color: #5a5447; font-size: 1.05rem; }
.section-heading--center { text-align: center; margin-inline: auto; }
.icon-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; }
.icon-link { text-align: center; text-decoration: none; padding: 4px 12px 18px; border-bottom: 2px solid transparent; }
.icon-link img { width: 132px; aspect-ratio: 1; object-fit: contain; margin: 0 auto 12px; transition: transform .18s ease; }
.icon-link strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 1.18rem; color: var(--moss-dark); }
.icon-link span { display: block; margin-top: 4px; color: #6a6253; font-size: .9rem; }
.icon-link:hover { border-color: var(--wine); }
.icon-link:hover img { transform: translateY(-3px); }
.icon-grid--seven { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 18px; }
.icon-grid--seven .icon-link { padding: 0 3px 5px; }
.icon-grid--seven .icon-link img { width: 74px; margin-bottom: 5px; }
.icon-grid--seven .icon-link strong { font-size: 1rem; }
.icon-grid--seven .icon-link span { display: none; }
.quick-nav { padding-top: 42px; padding-bottom: 44px; }
.quick-nav .section-heading { margin-bottom: 22px; }
.quick-nav .section-heading .eyebrow { margin-bottom: 7px; }
.quick-nav .section-heading h2 { margin-bottom: 5px; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.quick-nav .section-heading > p:last-child { margin-bottom: 0; font-size: .92rem; }

.story-section { padding: 110px 0; background: var(--white); }
.media-split { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: clamp(44px, 7vw, 92px); align-items: center; }
.editorial-image { margin: 0; }
.editorial-image img { width: 100%; min-height: 500px; object-fit: cover; border: 1px solid #d0c3a2; }
figcaption { margin-top: 10px; color: #746b59; font-family: Georgia, 'Times New Roman', serif; font-size: .86rem; font-style: italic; }
.editorial-copy { max-width: 520px; }
.editorial-copy h2 { margin-bottom: 24px; }
.lead-serif { font-family: Georgia, 'Times New Roman', serif; font-size: 1.22rem; line-height: 1.65; color: #3f3b31; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--wine); font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link span { font-size: 1.2em; }

.calendar-section { padding: 108px 0; color: #f8f1df; background: var(--moss-dark); }
.calendar-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.calendar-section .section-heading { margin-bottom: 42px; }
.calendar-section .section-heading > p:last-child { color: #cec7b7; }
.calendar-section .eyebrow { color: #e7be65; }
.sync-note { flex: 0 0 auto; margin-bottom: 48px; color: #d2dacb; font-size: .8rem; }
.sync-note span { display: inline-block; width: 9px; height: 9px; margin-right: 7px; border-radius: 50%; background: #8eaf61; box-shadow: 0 0 0 4px rgba(142,175,97,.14); }
.market-story { display: grid; grid-template-columns: 260px minmax(0, 1fr); margin-bottom: 52px; color: var(--ink); background: var(--paper); border: 1px solid #d6c79f; box-shadow: 12px 12px 0 rgba(9, 13, 7, .16); }
.market-story__label { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; text-align: center; border-right: 1px solid var(--line); background: #efe1c5; }
.market-story__label img { width: 138px; margin-bottom: 13px; }
.market-story__label span, .market-story__label small { display: block; }
.market-story__label span { font-family: Georgia, 'Times New Roman', serif; font-size: 1.22rem; font-weight: 700; }
.market-story__label small { margin-top: 4px; color: #6e6656; text-transform: uppercase; letter-spacing: .09em; }
.market-story__content { padding: clamp(30px, 5vw, 54px); }
.market-story__content .event-kicker { color: var(--moss); }
.market-story__content h3 { max-width: 720px; margin-bottom: 16px; font-size: clamp(1.8rem, 3.6vw, 3rem); }
.market-story__content > p { max-width: 780px; color: #4e493e; font-family: Georgia, 'Times New Roman', serif; font-size: 1.08rem; line-height: 1.7; }
.market-story__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.market-story__footer p { max-width: 610px; margin: 0; color: #655d4f; font-size: .84rem; }
.market-story__footer a { flex: 0 0 auto; color: var(--wine); font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
.event-list { border-top: 1px solid rgba(255,255,255,.25); }
.event-row { display: grid; grid-template-columns: 105px minmax(0, 1fr) auto; gap: 34px; align-items: center; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.event-row--featured { padding-block: 40px; }
.event-date { display: grid; justify-items: center; align-content: center; min-height: 120px; color: var(--ink); background: var(--paper); border: 1px solid #d8cba9; }
.event-date strong { font: 700 2.7rem/1 Georgia, 'Times New Roman', serif; }
.event-date span { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.event-date small { color: #716958; }
.event-kicker { margin-bottom: 5px; color: #b8c8ac; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.event-main h3 { margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.event-main > p:last-of-type { margin-bottom: 0; color: #d8d3c6; }
.event-mark { max-width: 190px; padding-left: 22px; border-left: 3px solid var(--gold); }
.event-mark span, .event-mark strong { display: block; }
.event-mark span { color: #c9c2b1; font-size: .78rem; }
.event-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; margin-top: 22px; }
.button--dark { background: #171d14; color: white; border-color: #7d8b6b; }
.button--dark:hover { background: #080b07; }
.reservation-panel { position: relative; }
.reservation-panel > summary { display: flex; min-height: 48px; align-items: center; padding: 10px 18px; color: #f8f0dd; border: 2px solid #f8f0dd; cursor: pointer; font-weight: 800; list-style: none; }
.reservation-panel > summary::-webkit-details-marker { display: none; }
.reservation-form { position: absolute; z-index: 12; top: 58px; left: 0; width: min(430px, calc(100vw - 34px)); padding: 26px; color: var(--ink); background: var(--paper-light); border: 1px solid var(--line); box-shadow: 0 20px 46px rgba(0,0,0,.28); }
.reservation-form h4 { margin: 0 0 7px; font: 700 1.45rem/1.2 Georgia, 'Times New Roman', serif; }
.reservation-form > p { font-size: .9rem; color: #625b4d; }
.reservation-form label:not(fieldset label) { display: grid; gap: 5px; margin: 12px 0; font-weight: 700; }
.reservation-form input[type='text'], .reservation-form input[type='email'] { min-height: 42px; padding: 8px 10px; background: white; border: 1px solid #9f9276; font: inherit; }
.reservation-form fieldset { display: grid; gap: 7px; margin: 18px 0; padding: 12px 14px; border: 1px solid #b7aa8c; }
.reservation-form legend { padding-inline: 5px; font-weight: 800; }
.reservation-form fieldset label { font-size: .9rem; }
.reservation-form > small { display: block; margin-top: 11px; color: #746b5b; }
.calendar-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 32px; }
.calendar-footer p { margin: 0; color: #bfc8b9; font-size: .88rem; }
.button--paper { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button--paper:hover { background: white; border-color: white; }

.offerings { padding: 108px 0; background: var(--paper-light); }
.offering-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offering-columns article { padding: 42px 40px 44px 0; }
.offering-columns article + article { padding-left: 40px; border-left: 1px solid var(--line); }
.offering-number { display: block; margin-bottom: 22px; color: var(--gold); font-weight: 800; letter-spacing: .14em; }
.offering-columns h3 { margin-bottom: 14px; font-size: 2rem; }
.offering-columns p { color: #5c5547; }

.menu-section { padding: 108px 0; color: #f9f0df; background: var(--wine); }
.menu-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.menu-photo img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.menu-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 82px); background: #69282c; border: 1px solid rgba(255,255,255,.18); }
.menu-copy .eyebrow { color: #e8c168; }
.menu-copy > p:not(.eyebrow) { color: #e5d6c2; }
.menu-list { margin: 18px 0 28px; border-top: 1px solid rgba(255,255,255,.28); }
.menu-list > div { padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.menu-list h3 { margin-bottom: 5px; font-size: 1.15rem; }
.menu-list p { margin: 0; color: #e2d3c0; font-size: .92rem; }

.rental-section { padding: 110px 0; background: var(--paper); }
.rental-layout { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: clamp(48px, 8vw, 100px); align-items: center; }
.rental-layout > div { max-width: 470px; }
.rental-layout figure { margin: 0; }
.rental-layout figure img { width: 100%; min-height: 430px; object-fit: cover; border: 1px solid var(--line); }
.tick-list { margin: 24px 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.tick-list li { padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line); position: relative; }
.tick-list li::before { content: '✓'; position: absolute; left: 3px; color: var(--moss); font-weight: 900; }

.about-section { padding: 100px 0; background: var(--white); }
.about-layout { display: grid; grid-template-columns: 250px minmax(0, 700px); justify-content: center; gap: clamp(44px, 8vw, 100px); align-items: center; }
.about-mark img { width: 220px; }

.contact-cta { padding: 78px 0; color: white; background: #24301f url('/images/horsens-market.jpg') center / cover no-repeat; position: relative; }
.contact-cta::before { content: ''; position: absolute; inset: 0; background: rgba(28,39,23,.87); }
.contact-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.contact-cta h2 { max-width: 720px; margin-bottom: 0; }
.contact-cta .eyebrow { color: #e7bf68; }
.contact-actions { display: grid; gap: 13px; flex: 0 0 auto; text-align: center; }
.button--light { color: var(--ink); background: white; border-color: white; }
.phone-link { color: white; font-weight: 800; }

.site-footer { padding: 74px 0 22px; color: #d9d3c6; background: #171813; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 46px; }
.footer-grid h3 { margin-bottom: 14px; color: white; font-size: 1rem; }
.footer-grid p { font-size: .88rem; }
.footer-grid a { text-decoration-color: #777466; text-underline-offset: 3px; }
.footer-brand img { width: 185px; margin-bottom: 18px; filter: brightness(1.15); }
.footer-bottom { margin-top: 46px; padding-top: 17px; border-top: 1px solid #36382f; color: #8f8d83; font-size: .76rem; }

.page-hero { position: relative; min-height: 510px; display: grid; align-items: end; color: white; background-image: linear-gradient(90deg, rgba(20,20,15,.86), rgba(20,20,15,.48) 58%, rgba(20,20,15,.2)), var(--page-hero-image); background-position: center; background-size: cover; }
.page-hero__content { padding-top: 120px; padding-bottom: 72px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero__content > p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; }
.page-hero .eyebrow { color: #f1cc79; }

.content-section { padding: 96px 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 9vw, 120px); align-items: start; }
.intro-grid h2 { margin-bottom: 0; }
.intro-grid > div:last-child { max-width: 620px; }
.paper-section { padding: 104px 0; background: var(--paper); border-block: 1px solid var(--line); }
.dark-section { padding: 104px 0; color: #f7efde; background: var(--moss-dark); }
.dark-section .eyebrow { color: #e4bd65; }
.dark-section .lead-serif { color: #ddd7c9; }
.calendar-section--page { padding-top: 96px; }

.home-next-event { padding: 58px 0; color: white; background: var(--moss-dark); }
.home-next-event__layout { display: grid; grid-template-columns: 105px minmax(0, 1fr) auto; gap: 34px; align-items: center; }
.home-next-event h2 { margin-bottom: 10px; }
.home-next-event p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: #d9d5ca; }

.menu-items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.menu-items article { min-height: 210px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-items h3 { margin-bottom: 10px; font-size: 1.45rem; }
.menu-items p { color: #5f5749; }
.drink-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 9vw, 120px); align-items: center; }
.drink-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #68745e; border-left: 1px solid #68745e; }
.drink-list span { padding: 18px; border-right: 1px solid #68745e; border-bottom: 1px solid #68745e; font-family: Georgia, 'Times New Roman', serif; }

.image-band { padding: 104px 0; background: var(--paper-light); }
.image-band__layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(45px, 8vw, 100px); align-items: center; }
.image-band__layout img { width: 100%; min-height: 430px; object-fit: cover; border: 1px solid var(--line); }
.image-band__layout > div { max-width: 520px; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid article { min-height: 245px; padding: 28px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article > span { color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.service-grid h3 { margin: 28px 0 10px; font-size: 1.35rem; }
.service-grid p { color: #625a4c; font-size: .92rem; }
.process-section { padding: 104px 0; background: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; gap: 10px; padding: 34px; }
.process-list li + li { border-left: 1px solid var(--line); }
.process-list strong { font: 700 1.25rem Georgia, 'Times New Roman', serif; }
.process-list span { color: #645d50; }

.two-column-services { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(50px, 8vw, 100px); align-items: center; }
.two-column-services article:first-child > img { width: 130px; margin-bottom: 24px; }
.two-column-services article:last-child > img { width: 100%; min-height: 520px; object-fit: cover; border: 1px solid var(--line); }
.plain-list { margin: 24px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.plain-list li { padding: 12px 2px; border-bottom: 1px solid var(--line); }
.dark-columns { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #68745e; border-bottom: 1px solid #68745e; }
.dark-columns article { padding: 34px; }
.dark-columns article + article { border-left: 1px solid #68745e; }
.dark-columns span { color: #e4bd65; font-weight: 800; }
.dark-columns h3 { margin: 22px 0 10px; font-size: 1.45rem; }
.dark-columns p { color: #d3d5cc; }
.quote-section { padding: 104px 0; text-align: center; background: var(--white); }
.quote-section blockquote { max-width: 900px; margin: 0 auto 20px; font: 700 clamp(2rem, 4vw, 3.7rem)/1.18 Georgia, 'Times New Roman', serif; color: var(--moss-dark); }
.quote-section p { color: #746c5c; }

.occasion-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.occasion-grid article { min-height: 235px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.occasion-grid article > span { color: var(--wine); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.occasion-grid h3 { margin: 22px 0 10px; font-size: 1.5rem; }
.occasion-grid p { color: #61594b; }
.package-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(55px, 9vw, 120px); align-items: center; }
.package-list { border-top: 1px solid #68745e; }
.package-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid #68745e; }
.package-list strong { font-family: Georgia, 'Times New Roman', serif; }
.package-list span { color: #d1d4ca; }

.about-story-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(50px, 8vw, 100px); align-items: center; }
.about-story-grid figure { margin: 0; }
.about-story-grid figure img { width: 100%; min-height: 500px; object-fit: cover; border: 1px solid var(--line); }
.team-section { padding: 104px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.team-grid article { padding: 24px 18px 28px; text-align: center; background: var(--paper-light); }
.team-portrait { position: relative; }
.team-portrait img { width: 130px; margin: 0 auto 15px; }
.team-portrait span { position: absolute; right: 0; bottom: 8px; color: var(--gold); font-size: .72rem; font-weight: 800; }
.team-grid h3 { margin-bottom: 8px; font-size: 1.14rem; }
.team-grid p { margin: 0; color: #6b6355; font-size: .86rem; }
.values-section { padding: 66px 0; color: white; background: var(--wine); }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-row > div { display: grid; gap: 6px; padding: 0 34px; }
.value-row > div + div { border-left: 1px solid rgba(255,255,255,.32); }
.value-row strong { font: 700 1.35rem Georgia, 'Times New Roman', serif; }
.value-row span { color: #eadcce; font-size: .9rem; }

.contact-page { padding: 104px 0; background: var(--paper-light); }
.contact-page__layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact-form { display: grid; gap: 18px; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.contact-form label { display: grid; gap: 6px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: white; border: 1px solid #9f9276; border-radius: 0; font: inherit; }
.contact-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .button { justify-self: start; }
.contact-form small { color: #6d6558; }
.contact-card { padding: 34px; background: var(--paper); border: 1px solid var(--line); box-shadow: 12px 12px 0 #e6dbc3; }
.contact-card > img { width: 120px; margin-bottom: 16px; }
.contact-card dl { margin: 26px 0; border-top: 1px solid var(--line); }
.contact-card dt { margin-top: 14px; color: #766d5d; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.contact-card dd { margin: 2px 0 14px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.05rem; }
.contact-note { padding: 18px; color: white; background: var(--moss-dark); }
.contact-note p { margin: 5px 0 0; color: #d9ddd4; font-size: .88rem; }
.contact-links { padding: 54px 0; background: var(--paper); border-top: 1px solid var(--line); }
.contact-links .site-width { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-links a { display: grid; gap: 6px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-links span { color: var(--wine); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-links strong { font-family: Georgia, 'Times New Roman', serif; }

/* Samlet grønt tema – inspireret af markedskalenderen */
body { background: #172319; }
main { overflow-x: hidden; }
main > section {
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header { color: #f7efde; background: rgba(46, 58, 38, .98); border-bottom-color: #6e7b62; }
.brand img { filter: brightness(1.24) contrast(.94); }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #f1cc79; border-color: #f1cc79; }
.mobile-nav summary { color: #f7efde; border-color: #aab49c; }
.mobile-nav nav { color: #f7efde; background: #34422d; border-color: #6e7b62; }
.mobile-nav nav a { border-bottom-color: #64705a; }

.quick-nav,
.paper-section,
.rental-section,
.contact-links { color: #f7efde; background: #344832; border-color: #687a67; }
.story-section,
.content-section,
.offerings,
.image-band,
.process-section,
.quote-section,
.team-section,
.contact-page { color: #f7efde; background: #293b2b; }
.section-heading > p:last-child,
.editorial-copy > p:not(.eyebrow),
.intro-grid > div:last-child > p,
.image-band__layout > div > p,
.rental-layout > div > p,
.about-layout > div > p,
.offering-columns p,
.menu-items p,
.service-grid p,
.occasion-grid p,
.process-list span,
.team-grid p,
.quote-section p,
.contact-page__layout > div > p { color: #d7d8ce; }
.lead-serif { color: #ece5d7; }
.quick-nav .eyebrow,
.paper-section .eyebrow,
.story-section .eyebrow,
.content-section .eyebrow,
.offerings .eyebrow,
.image-band .eyebrow,
.process-section .eyebrow,
.quote-section .eyebrow,
.team-section .eyebrow,
.contact-page .eyebrow { color: #efc769; }
.text-link { color: #f1cc79; }
.icon-link strong { color: #f5edde; }
.icon-link span { color: #d1d5c9; }
.icon-link:hover { border-color: #f1cc79; }
.editorial-image img,
.image-band__layout img,
.two-column-services article:last-child > img,
.about-story-grid figure img,
.rental-layout figure img { border-color: #7d896f; }
figcaption { color: #c7c9bd; }

.offering-columns,
.plain-list,
.tick-list,
.process-list { border-color: #73806a; }
.offering-columns article + article,
.plain-list li,
.tick-list li,
.process-list li + li { border-color: #73806a; }
.menu-section { background: #213324; }
.menu-copy { background: #2d412f; border-color: #68745e; border-left: 4px solid var(--wine); }
.menu-items,
.service-grid,
.occasion-grid,
.team-grid { background: #78846e; border-color: #78846e; }
.menu-items article,
.service-grid article,
.occasion-grid article,
.team-grid article { color: var(--ink); background: var(--paper); border-color: #b6a982; }
.menu-items article p,
.service-grid article p,
.occasion-grid article p,
.team-grid article p { color: #5f5749; }
.quote-section blockquote { color: #f5edde; }
.values-section { background: #344832; }
.value-row > div + div { border-color: #7b8870; }
.contact-form { border-top-color: #73806a; }
.contact-form input,
.contact-form select,
.contact-form textarea { background: var(--paper); border-color: #b6a982; }
.contact-form small { color: #c8cabf; }
.contact-card { color: var(--ink); background: var(--paper); border-color: #b6a982; box-shadow: 12px 12px 0 #202b1c; }
.contact-card dl { border-top-color: #b6a982; }
.contact-links .site-width,
.contact-links a { border-color: #73806a; }
.contact-links a:hover { background: #3b4933; }
.button--light { color: var(--moss-dark); background: var(--paper); border-color: var(--paper); }
.site-footer { border-top: 1px solid #4f5d47; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .site-icon-nav { overflow: hidden; }
  .site-icon-nav__inner {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(8, 132px);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 7px 14px 9px;
    scrollbar-width: thin;
  }
  .icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-grid--seven { grid-template-columns: repeat(7, minmax(118px, 1fr)); gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; padding-bottom: 14px; }
  .media-split, .menu-layout, .rental-layout { grid-template-columns: 1fr; }
  .editorial-copy, .rental-layout > div { max-width: none; }
  .editorial-image img { min-height: 400px; }
  .calendar-heading { display: block; }
  .sync-note { margin: -24px 0 38px; }
  .market-story { grid-template-columns: 210px minmax(0, 1fr); }
  .market-story__label { padding: 22px; }
  .market-story__label img { width: 115px; }
  .market-story__footer { display: block; }
  .market-story__footer a { display: inline-block; margin-top: 16px; }
  .event-row { grid-template-columns: 90px 1fr; }
  .event-mark, .event-row > .text-link { grid-column: 2; max-width: none; }
  .offering-columns { grid-template-columns: 1fr; }
  .offering-columns article, .offering-columns article + article { padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .offering-columns article:last-child { border-bottom: 0; }
  .menu-photo img { min-height: 420px; max-height: 560px; }
  .about-layout { grid-template-columns: 180px 1fr; gap: 46px; }
  .about-mark img { width: 175px; }
  .contact-cta__inner { display: block; }
  .contact-actions { margin-top: 30px; justify-content: start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .intro-grid, .drink-layout, .image-band__layout, .two-column-services, .package-layout, .about-story-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .home-next-event__layout { grid-template-columns: 90px 1fr; }
  .home-next-event__layout > .button { grid-column: 2; justify-self: start; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-page__layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  main > section { width: calc(100% - 16px); }
  .site-width { width: min(100% - 28px, 1180px); }
  .brand-masthead__inner { min-height: 126px; padding-block: 8px; }
  .brand-masthead img { width: 110px; height: 110px; }
  .contact-strip__inner { justify-content: center; text-align: center; padding: 7px 0; }
  .contact-strip__inner > span { display: none; }
  .contact-strip__inner div { flex-wrap: wrap; justify-content: center; }
  .header-inner { min-height: 76px; }
  .brand { width: 138px; }
  .brand img { height: 54px; }
  .site-icon-nav__inner { grid-template-columns: repeat(8, 122px); }
  .site-icon-nav a { gap: 1px; padding-inline: 3px; }
  .site-icon-nav img { width: 48px; height: 48px; }
  .site-icon-nav span { font-size: .74rem; }
  .hero { min-height: 610px; background-position: 60% center; }
  .hero__shade { background: rgba(22,22,16,.66); }
  .hero__content { padding-block: 70px; }
  .button { width: 100%; }
  .quick-nav { padding: 32px 0 34px; }
  .icon-grid { gap: 30px 10px; }
  .icon-link { padding-inline: 2px; }
  .icon-link img { width: 110px; }
  .icon-grid--seven { grid-template-columns: repeat(7, 112px); }
  .icon-grid--seven .icon-link img { width: 70px; }
  .story-section, .calendar-section, .offerings, .menu-section, .rental-section, .about-section { padding: 72px 0; }
  .media-split { gap: 38px; }
  .market-story { grid-template-columns: 1fr; box-shadow: 7px 7px 0 rgba(9, 13, 7, .16); }
  .market-story__label { flex-direction: row; gap: 16px; justify-content: flex-start; text-align: left; border-right: 0; border-bottom: 1px solid var(--line); }
  .market-story__label img { width: 82px; margin: 0; }
  .market-story__content { padding: 28px 22px; }
  .editorial-image img, .rental-layout figure img { min-height: 300px; }
  .event-row { grid-template-columns: 72px 1fr; gap: 18px; align-items: start; }
  .event-date { min-height: 96px; }
  .event-date strong { font-size: 2rem; }
  .event-mark, .event-row > .text-link { grid-column: 1 / -1; }
  .event-mark { margin-left: 90px; }
  .event-actions { display: grid; }
  .reservation-panel { width: 100%; }
  .reservation-panel > summary { justify-content: center; }
  .reservation-form { position: relative; top: 10px; width: calc(100vw - 28px); margin-left: calc(-90px - 18px); }
  .calendar-footer { display: block; }
  .calendar-footer p { margin-top: 16px; }
  .menu-photo img { min-height: 280px; }
  .menu-copy { padding: 38px 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 18px; }
  .about-mark img { width: 155px; margin: 0 auto; }
  .contact-cta { padding: 66px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { min-height: 450px; background-position: 58% center; }
  .page-hero__content { padding-top: 86px; padding-bottom: 54px; }
  .content-section, .paper-section, .dark-section, .image-band, .process-section, .quote-section, .team-section, .contact-page { padding: 70px 0; }
  .home-next-event__layout { grid-template-columns: 72px 1fr; gap: 18px; }
  .home-next-event__layout > .button { grid-column: 1 / -1; width: 100%; }
  .menu-items, .service-grid, .occasion-grid, .dark-columns, .process-list, .team-grid, .value-row, .contact-links .site-width { grid-template-columns: 1fr; }
  .drink-list { grid-template-columns: 1fr; }
  .menu-items article, .service-grid article, .occasion-grid article { min-height: 0; }
  .dark-columns article + article, .process-list li + li, .value-row > div + div { border-left: 0; border-top: 1px solid #68745e; }
  .process-list li, .dark-columns article { padding: 26px 4px; }
  .image-band__layout img, .two-column-services article:last-child > img, .about-story-grid figure img { min-height: 300px; }
  .package-list > div { grid-template-columns: 95px 1fr; }
  .team-grid article { display: grid; grid-template-columns: 100px 1fr; column-gap: 16px; align-items: center; text-align: left; }
  .team-portrait { grid-row: 1 / 3; }
  .team-portrait img { width: 90px; margin: 0; }
  .team-grid h3, .team-grid p { margin: 0; }
  .value-row > div { padding: 24px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { box-shadow: 7px 7px 0 #e6dbc3; }
}

/* WordPress-tilpasninger */
body.admin-bar .site-icon-nav { top: 32px; }
.wp-site-blocks { padding: 0; }
.sk2026-page-content { padding: 80px 0; color: #f7efde; background: #34422d; }
.sk2026-page-content .entry-content { max-width: 820px; margin-inline: auto; }
.sk2026-page-content .entry-content > * { max-width: 100%; }
.sk2026-page-content .entry-content:has(> .sk-calendar) { max-width: 1180px; }
.sk2026-page-content .entry-content > .sk-calendar {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}
.calendar-plugin-section { padding: 72px 0 0; color: #f7efde; background: var(--moss-dark); }
.calendar-plugin-section .calendar-heading { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.calendar-plugin-section > .sk-calendar {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 14px auto 0 !important;
}
.calendar-plugin-section .sk-calendar__hero { display: none; }
.calendar-plugin-section .sk-calendar__language { margin-bottom: 24px; }
.calendar-plugin-section .sk-calendar__language button { color: var(--sk-forest); }
.contact-form-shell .wpforms-container { margin: 28px 0 0; }
.contact-form-shell .wpforms-field-label { color: #f7efde; }
.contact-form-shell input,
.contact-form-shell select,
.contact-form-shell textarea { background: var(--paper) !important; border: 1px solid #b6a982 !important; }
.contact-form-shell button[type='submit'] { color: #fff !important; background: var(--wine) !important; border: 2px solid var(--wine) !important; border-radius: 2px !important; padding: 12px 20px !important; font-weight: 800 !important; }
.contact-form-shell button[type='submit']:hover { background: #5d2427 !important; }
@media (max-width: 782px) {
  body.admin-bar .site-icon-nav { top: 46px; }
}
