/* ============================================================
   Store Regnegade 26 — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --green:  #1f2e23;
  --cream:  #f5f0e8;
  --gold:   #b89a5a;
  --gold-light: #d4b87a;
  --charcoal: #2b2b2b;
  --white:  #ffffff;
  --nav-h:  72px;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

p { font-size: 1.05rem; font-weight: 300; color: #3a3a3a; max-width: 68ch; }
p.lead { font-size: 1.2rem; font-weight: 300; }

.overline {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: var(--green);
  transition: box-shadow 0.4s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.site-nav.light {
  background: var(--green);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-book {
  background: var(--gold);
  color: var(--green) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 700 !important;
  transition: background 0.25s !important;
}
.nav-book:hover { background: var(--gold-light) !important; color: var(--green) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ───────────────────────────────────────────── */
@media (max-width: 800px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--green);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; color: var(--cream); }
  .nav-book { padding: 0.7rem 2rem; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  height: 100%;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(10, 20, 12, 0.55) 60%,
    rgba(10, 20, 12, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-content .overline { color: var(--gold); }

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  font-family: 'Lato', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,154,90,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--cream);
}

.btn-dark {
  background: var(--green);
  color: var(--cream);
}
.btn-dark:hover {
  background: #2d4232;
  transform: translateY(-2px);
}

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 6rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 1rem auto 0;
}

/* ── Intro Section ────────────────────────────────────────── */
.intro-section {
  background: var(--cream);
  padding: 7rem 0;
}

.intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.intro-inner h2 { margin-bottom: 1.5rem; color: var(--green); }
.intro-inner p { margin: 0 auto 1.5rem; color: #4a4a4a; font-size: 1.1rem; }

.intro-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}

/* ── Feature Blocks ───────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.feature img {
  height: 100%;
  transition: transform 0.7s ease;
}
.feature:hover img { transform: scale(1.04); }

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.85) 0%, rgba(10,20,12,0.2) 60%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.feature-text {
  color: var(--cream);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.feature-text h3 { margin-bottom: 0.5rem; }
.feature-text p {
  color: rgba(245,240,232,0.8);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: none;
}

@media (max-width: 700px) {
  .features { grid-template-columns: 1fr; }
  .feature { height: 380px; }
}

/* ── Full-bleed Image ─────────────────────────────────────── */
.fullbleed {
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.fullbleed img { height: 100%; object-position: center 30%; }
.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.7) 0%, rgba(10,20,12,0.1) 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4rem;
}
.fullbleed-overlay .quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--cream);
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* ── Split Section ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.split.reverse .split-img { order: 2; }
.split.reverse .split-text { order: 1; }

.split-img { overflow: hidden; }
.split-img img { height: 100%; }

.split-text {
  background: var(--green);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw;
}

.split-text.light {
  background: var(--cream);
  color: var(--charcoal);
}

.split-text h2 { color: var(--cream); margin-bottom: 1.25rem; }
.split-text.light h2 { color: var(--green); }
.split-text p { color: rgba(245,240,232,0.82); max-width: 44ch; margin-bottom: 1.5rem; }
.split-text.light p { color: #4a4a4a; }

@media (max-width: 750px) {
  .split { grid-template-columns: 1fr; }
  .split-img { height: 320px; }
  .split.reverse .split-img { order: 0; }
  .split.reverse .split-text { order: 0; }
  .split-text { padding: 3.5rem 6vw; }
}

/* ── Cards ────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}

.card {
  background: var(--green);
  color: var(--cream);
  padding: 3.5rem 3rem;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--gold);
}

.card h3 { margin-bottom: 0.5rem; color: var(--cream); }
.card .card-sub {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.card p { color: rgba(245,240,232,0.75); font-size: 0.98rem; margin-bottom: 1.75rem; }
.card .card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── Venue Cards ──────────────────────────────────────────── */
.venue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-bottom: 4rem;
}

.venue-card {
  position: relative;
  overflow: hidden;
  height: 420px;
}
.venue-card img { height: 100%; }
.venue-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.88) 0%, transparent 55%);
}
.venue-card-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  z-index: 2;
  color: var(--cream);
}
.venue-card-text .overline { color: var(--gold); }
.venue-card-text h3 { margin-bottom: 0.4rem; }
.venue-card-text p { color: rgba(245,240,232,0.8); font-size: 0.95rem; max-width: none; }

/* ── Booking Form ─────────────────────────────────────────── */
.booking-section {
  background: var(--green);
  color: var(--cream);
  padding: 6rem 0;
}

.booking-section h2 { color: var(--cream); text-align: center; margin-bottom: 0.5rem; }
.booking-section .booking-sub {
  text-align: center;
  color: rgba(245,240,232,0.7);
  margin: 0 auto 3rem;
  max-width: 52ch;
  font-size: 1rem;
}

.booking-form {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(245,240,232,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { text-align: center; margin-top: 2rem; }
.form-submit .btn { min-width: 200px; }

.form-thanks {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-thanks h3 { color: var(--cream); margin-bottom: 1rem; }
.form-thanks p { color: rgba(245,240,232,0.75); margin: 0 auto; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}


/* ── About / Om Os ────────────────────────────────────────── */
.pullquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green);
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 3rem 0;
  line-height: 1.4;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
}

.contact-info h3 { color: var(--green); margin-bottom: 2rem; }

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}

.contact-item .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-item .value {
  font-size: 1rem;
  color: var(--charcoal);
}

.map-embed {
  width: 100%;
  height: 320px;
  margin-top: 2rem;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

.contact-form-wrap {
  background: var(--green);
  padding: 3rem;
  color: var(--cream);
}
.contact-form-wrap h3 { color: var(--cream); margin-bottom: 2rem; }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea {
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
}

/* ── Page Hero (smaller, for inner pages) ─────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(10,20,12,0.65) 100%
  );
}
.page-hero .hero-content {
  text-align: left;
  padding-left: max(4vw, 2rem);
}
.page-hero .hero-content h1 { font-size: clamp(2rem, 5vw, 4rem); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: rgba(245,240,232,0.65);
  padding: 5rem 4vw 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4vw;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.12);
}

.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
  display: block;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.55);
  max-width: 34ch;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(245,240,232,0.6);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ── Scroll Animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility ──────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-cream { color: var(--cream); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); }
