/* ============================================================
   INDER'N WEBSITE — SHARED DESIGN SYSTEM
   Brand: En (aut.)indisk oplevelse
   Colors: Olive Green #2C3A1C · Gold #C8960C · Cream #F9F4E8
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Dancing+Script:wght@500;600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- CSS VARIABLES --- */
:root {
  --green-dark:   #2C3A1C;
  --green-mid:    #3D5224;
  --green-light:  #5A7340;
  --gold:         #C8960C;
  --gold-light:   #E5B84B;
  --gold-pale:    #F5E6C0;
  --cream:        #F9F4E8;
  --cream-dark:   #F0E9D6;
  --white:        #FFFFFF;
  --text-primary:   #1C1C1C;
  --text-secondary: #555555;
  --text-muted:     #888888;
  --border:         rgba(200,150,12,0.2);
  --border-light:   rgba(0,0,0,0.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.22);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --container:  1200px;
  --nav-height: 76px;
  --banner-height: 2.25rem; /* ~36px announcement bar */
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: 0.25s ease;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--text-secondary); line-height: 1.75; }
.script { font-family: var(--font-script); color: var(--gold); }

/* --- LAYOUT --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.section    { padding: clamp(3rem, 8vw, 6rem) 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.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; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-header .eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { max-width: 540px; margin: 0 auto; }
.divider { width: 56px; height: 3px; background: var(--gold); margin: 1rem auto 0; border-radius: 2px; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 4px; font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.75px;
  transition: all var(--transition); cursor: pointer; text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--green-dark); border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,12,0.4); }
.btn-secondary {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-dark {
  background: var(--green-dark); color: var(--white); border: 2px solid var(--green-dark);
}
.btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-gold {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--green-dark); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.8125rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: var(--banner-height); left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(44,58,28,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav__logo-name {
  font-family: var(--font-display); font-size: 1.625rem; font-weight: 700;
  color: var(--white); letter-spacing: 3px; text-transform: uppercase;
}
.nav__logo-tag { font-family: var(--font-script); font-size: 0.8rem; color: var(--gold-light); margin-top: -2px; }
.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  color: rgba(255,255,255,0.88); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color var(--transition), opacity var(--transition);
  position: relative; padding-bottom: 2px;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); border-radius: 1px; transition: width var(--transition);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--gold-light); }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__lang {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.1); border-radius: 4px; padding: 3px;
  gap: 2px;
}
.nav__lang-btn {
  padding: 0.25rem 0.625rem; border-radius: 3px; font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px;
  transition: all 0.2s; cursor: pointer; border: none; background: transparent;
}
.nav__lang-btn.active { background: var(--gold); color: var(--green-dark); }
.nav__cta {
  background: var(--gold); color: var(--green-dark); padding: 0.625rem 1.5rem;
  border-radius: 4px; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.75px; transition: all 0.2s; border: 2px solid var(--gold);
}
.nav__cta:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--white); transition: all 0.3s; display: block; border-radius: 2px; }

/* Mobile Nav */
.nav__mobile-overlay {
  display: none; position: fixed; inset: 0; top: calc(var(--nav-height) + var(--banner-height));
  background: var(--green-dark); z-index: 999;
  flex-direction: column; padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile-overlay.open { display: flex; }
.nav__mobile-overlay .nav__link {
  font-size: 1.375rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 1px;
}
.nav__mobile-overlay .nav__link::after { display: none; }
.nav__mobile-overlay .btn { width: 100%; margin-top: 1.5rem; justify-content: center; }

/* ============================================================
   HOURS BANNER
   ============================================================ */
.hours-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
  background: var(--gold); color: var(--green-dark);
  padding: 0.5rem 0; text-align: center;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.hours-banner .dot {
  display: inline-block; width: 5px; height: 5px;
  background: var(--green-dark); border-radius: 50%;
  margin: 0 0.875rem; vertical-align: middle; opacity: 0.6;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--green-dark);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.03); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(44,58,28,0.92) 0%,
    rgba(44,58,28,0.7) 55%,
    rgba(0,0,0,0.35) 100%
  );
}
.hero__content { position: relative; z-index: 2; max-width: 680px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,150,12,0.15); border: 1px solid rgba(200,150,12,0.45);
  color: var(--gold-light); padding: 0.375rem 1rem; border-radius: 100px;
  font-size: 0.775rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.hero__sub { font-family: var(--font-script); font-size: 2.25rem; color: var(--gold); margin-bottom: 0.5rem; }
.hero__title { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero__title span { color: var(--gold-light); }
.hero__desc { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.625rem;
  color: rgba(255,255,255,0.45); font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 56px; background: linear-gradient(to bottom, rgba(200,150,12,0.6), transparent);
  animation: scrollDrop 2.5s ease-in-out infinite;
}
@keyframes scrollDrop { 0%,100% { opacity:0.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.15); } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
.about__visual { position: relative; }
.about__img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__stat-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; text-align: center; color: var(--green-dark);
  box-shadow: var(--shadow-lg);
}
.about__stat-card .num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.about__stat-card .lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }
.about__eyebrow { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 0.75rem; }
.about__title { margin-bottom: 1.25rem; }
.about__title em { font-style: italic; color: var(--gold); }
.about__body { margin-bottom: 1.5rem; }
.about__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.about__feat { display: flex; align-items: flex-start; gap: 0.75rem; }
.about__feat-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem;
}
.about__feat-text h4 { font-size: 0.9375rem; margin-bottom: 0.2rem; }
.about__feat-text p { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section { background: var(--cream); }
.menu-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.menu-tab {
  padding: 0.5rem 1.375rem; border-radius: 100px; font-size: 0.8125rem;
  font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  border: 1.5px solid var(--border-light); color: var(--text-muted);
  transition: all var(--transition); cursor: pointer; background: var(--white);
}
.menu-tab.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.menu-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dish-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.35s ease;
  display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.dish-card__img { height: 210px; overflow: hidden; position: relative; flex-shrink: 0; }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-card__img img { transform: scale(1.08); }
.dish-card__badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; gap: 0.375rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  padding: 0.225rem 0.6rem; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.badge--gf  { color: #92400E; }
.badge--v   { color: #166534; }
.badge--vg  { color: #065F46; }
.dish-card__num { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(44,58,28,0.8); color: var(--gold-light); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.625rem; border-radius: 100px; }
.dish-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.dish-card__name { font-size: 1.125rem; margin-bottom: 0.4rem; }
.dish-card__desc { font-size: 0.8375rem; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.dish-card__footer { display: flex; align-items: center; justify-content: space-between; }
.dish-card__price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gold); }
.dish-card__add {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green-dark);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; line-height: 1; transition: all var(--transition);
  border: none; cursor: pointer;
}
.dish-card__add:hover { background: var(--gold); color: var(--green-dark); transform: scale(1.1); }
.menu-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   DEALS / PACKAGES
   ============================================================ */
.deals { background: var(--green-dark); }
.deals .section-header .eyebrow { color: var(--gold); }
.deals .section-header h2 { color: var(--white); }
.deals .section-header p  { color: rgba(255,255,255,0.65); }
.deals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.deal-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,150,12,0.25);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.deal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.deal-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.deal-card.featured {
  border-color: var(--gold); background: rgba(200,150,12,0.09);
  box-shadow: 0 0 0 1px rgba(200,150,12,0.3);
}
.deal-card__chip {
  display: inline-block; background: var(--gold); color: var(--green-dark);
  padding: 0.225rem 0.75rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.deal-card__icon { font-size: 2.25rem; margin-bottom: 0.75rem; display: block; }
.deal-card__name  { color: var(--white); font-size: 1.25rem; margin-bottom: 0.5rem; }
.deal-card__serves { color: var(--gold-light); font-size: 0.8125rem; font-weight: 500; margin-bottom: 0.875rem; }
.deal-card__desc  { color: rgba(255,255,255,0.62); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.5rem; }
.deal-card__items { margin-bottom: 1.5rem; }
.deal-card__item {
  color: rgba(255,255,255,0.72); font-size: 0.875rem;
  padding: 0.4rem 0 0.4rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.deal-card__item::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 50%; transform: translateY(-50%); }
.deal-card__price { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--gold); line-height: 1; }
.deal-card__per   { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.order-steps { background: var(--white); }
.steps-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps-track::before {
  content: ''; position: absolute;
  top: 2.75rem; left: calc(16.67% + 1.25rem); right: calc(16.67% + 1.25rem);
  height: 2px; background: var(--gold-pale); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--green-dark);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 0 0 10px var(--gold-pale);
  position: relative; z-index: 1;
}
.step__title { font-size: 1.125rem; margin-bottom: 0.625rem; }
.step__desc   { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.step__links { display: flex; justify-content: center; gap: 0.625rem; flex-wrap: wrap; }
.step__link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.875rem; border-radius: 100px;
  border: 1.5px solid var(--border-light); font-size: 0.775rem; font-weight: 600;
  color: var(--text-secondary); transition: all var(--transition);
}
.step__link:hover { border-color: var(--gold); color: var(--gold); }
.step__link.wolt { background: #009DE0; color: #fff; border-color: #009DE0; }
.step__link.wolt:hover { background: #0080B8; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--cream); }
.reviews__stats { display: flex; justify-content: center; gap: 4rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.reviews__stat { text-align: center; }
.reviews__stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.reviews__stat-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 3px; margin: 0.5rem 0; }
.reviews__stat-src { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.reviews__stat-count { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.875rem;
  box-shadow: var(--shadow-sm); position: relative;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 5rem;
  color: var(--gold-pale); position: absolute; top: 0.25rem; left: 1.25rem;
  line-height: 1; pointer-events: none;
}
.review-card__stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 0.875rem; }
.review-card__text  { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; padding-top: 0.5rem; color: var(--text-secondary); }
.review-card__author { font-weight: 700; font-size: 0.875rem; color: var(--text-primary); }
.review-card__meta   { font-size: 0.775rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip { background: var(--green-dark); padding: 4rem 0; }
.info-strip__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.info-strip__grid::before, .info-strip__grid::after {
  content: ''; position: absolute; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,0.12);
}
.info-strip__grid::before { left: 33.33%; }
.info-strip__grid::after  { left: 66.66%; }
.info-item { text-align: center; padding: 1rem 2rem; }
.info-item__icon  { font-size: 2rem; margin-bottom: 1rem; display: block; }
.info-item__label { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.875rem; display: block; }
.info-item__text  { color: rgba(255,255,255,0.78); line-height: 1.75; font-size: 0.9375rem; }
.info-item__link  { color: var(--gold-light); font-weight: 600; transition: color var(--transition); }
.info-item__link:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a2410; padding: 5rem 0 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer__brand-logo { margin-bottom: 1rem; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--white); letter-spacing: 3px; }
.footer__brand-tag  { font-family: var(--font-script); font-size: 0.9rem; color: var(--gold); }
.footer__brand-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.75; max-width: 290px; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.625rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.875rem;
  transition: all 0.2s; text-decoration: none;
}
.footer__social a:hover { background: var(--gold); color: var(--green-dark); }
.footer__col h5 { color: var(--white); font-size: 0.775rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }
.footer__col li { margin-bottom: 0.625rem; }
.footer__col a  { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.footer__copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HERO (Catering / Kontakt)
   ============================================================ */
.page-hero {
  min-height: 55vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--green-dark);
  padding-top: calc(var(--nav-height) + var(--banner-height));
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__overlay { position: absolute; inset: 0; background: rgba(44,58,28,0.82); }
.page-hero__content { position: relative; z-index: 2; max-width: 700px; }
.page-hero__eyebrow {
  font-size: 0.775rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 520px; }

/* ============================================================
   CATERING PACKAGES
   ============================================================ */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.pkg-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: all 0.35s;
  display: flex; flex-direction: column; background: var(--white);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pkg-card.featured { border: 2px solid var(--gold); box-shadow: 0 0 0 2px var(--gold), var(--shadow-xl); }
.pkg-card__header { padding: 2rem 2rem 1.75rem; background: var(--green-dark); color: var(--white); position: relative; }
.pkg-card.featured .pkg-card__header { background: var(--gold); color: var(--green-dark); }
.pkg-card__ribbon {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.2); color: currentColor;
  padding: 0.2rem 0.625rem; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.pkg-card.featured .pkg-card__ribbon { background: rgba(44,58,28,0.2); }
.pkg-card__tier { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; opacity: 0.65; margin-bottom: 0.5rem; }
.pkg-card__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.375rem; }
.pkg-card__min  { font-size: 0.8rem; opacity: 0.75; }
.pkg-card__body { padding: 1.875rem 2rem; flex: 1; }
.pkg-card__price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.pkg-card__price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.pkg-card__list h5 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 0.875rem; }
.pkg-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem; color: var(--text-secondary);
}
.pkg-item::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; background: var(--gold-pale);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23C8960C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pkg-card__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border-light); }

/* Catering Why section */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); transition: all 0.3s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-card__title { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.why-card__desc  { font-size: 0.875rem; color: var(--text-muted); }

/* Catering process */
.process-list { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.process-step { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border-light); align-items: flex-start; }
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: var(--gold); color: var(--green-dark);
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step__body h4 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.process-step__body p  { font-size: 0.9rem; }

/* Catering Inquiry Form */
.inquiry-form-wrap { max-width: 700px; margin: 0 auto; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-primary);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius);
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.375rem;
}
.contact-card__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 0.5rem; }
.contact-card__value { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.contact-card__note  { font-size: 0.8375rem; color: var(--text-muted); }
.contact-card__link  { color: var(--gold); font-weight: 600; transition: color var(--transition); }
.contact-card__link:hover { color: var(--green-dark); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 300px; margin-top: 1.25rem; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.hours-table { width: 100%; }
.hours-table tr { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.hours-table tr:last-child { border-bottom: none; }
.hours-table .day { color: var(--text-secondary); }
.hours-table .time { font-weight: 600; color: var(--text-primary); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { margin-bottom: 1.75rem; }

/* ============================================================
   ALLERGEN BANNER
   ============================================================ */
.allergen-info {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.5rem;
  display: flex; gap: 0.875rem; align-items: flex-start;
}
.allergen-info__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.allergen-info p { font-size: 0.875rem; color: var(--text-primary); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid       { gap: 3rem; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .packages-grid     { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid    { grid-template-columns: 1fr; }
  .about__stat-card { position: static; margin-top: 1rem; max-width: 200px; }
  .menu-grid      { grid-template-columns: 1fr 1fr; }
  .deals-grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-track    { grid-template-columns: 1fr; }
  .steps-track::before { display: none; }
  .reviews__stats { gap: 2rem; }
  .reviews__grid  { grid-template-columns: 1fr; }
  .info-strip__grid { grid-template-columns: 1fr; }
  .info-strip__grid::before, .info-strip__grid::after { display: none; }
  .footer__grid   { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact-grid   { grid-template-columns: 1fr; }
  .form-grid-2    { grid-template-columns: 1fr; }
  .info-item      { padding: 1.5rem 1rem; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .reviews__stats { flex-direction: column; gap: 1.5rem; }
}

/* ============================================================
   UTILITIES / ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CATERING PAGE — EXTRA COMPONENTS
   ============================================================ */

/* Trust bar */
.trust-bar {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(200,150,12,0.25);
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem var(--container-px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-pale);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item__icon { font-size: 1rem; }

/* Page hero short variant */
.page-hero--short { min-height: 42vh; }

/* Why section grid */
.why-section { background: var(--cream); }

/* Package grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* Pkg card */
.pkg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.pkg-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.pkg-card--featured {
  border-color: var(--gold);
  background: rgba(200,150,12,0.08);
  transform: scale(1.03);
}
.pkg-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pkg-card__badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.pkg-card__header {
  padding: 2rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(200,150,12,0.15);
}
.pkg-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.pkg-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}
.pkg-card__from { font-size: 0.85rem; color: var(--gold-pale); opacity: 0.7; }
.pkg-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pkg-card__unit { font-size: 0.85rem; color: var(--gold-pale); opacity: 0.8; }
.pkg-card__min { font-size: 0.8rem; color: var(--gold-pale); opacity: 0.6; }
.pkg-card__features {
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pkg-card__features li {
  color: var(--gold-pale);
  font-size: 0.9rem;
  line-height: 1.4;
}
.pkg-card .btn { margin: 0 1.75rem 1.75rem; width: calc(100% - 3.5rem); }
.btn--full { width: 100%; text-align: center; }

/* Allergen note */
.allergen-note {
  background: rgba(200,150,12,0.18);
  border: 1.5px solid rgba(200,150,12,0.6);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.7;
}
.allergen-note strong { color: var(--gold-light, #e0aa20); font-weight: 700; }

/* Menu examples */
.menu-examples { background: var(--cream); }
.menu-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) { .menu-example-grid { grid-template-columns: 1fr; } }
.menu-example-col { }
.menu-example-col__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.menu-example-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-example-col li {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-dark);
}

/* Testimonial single */
.testimonial-section { }
.testimonial-single {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
.testimonial-single__quote {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.testimonial-single blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-single cite {
  display: block;
  color: var(--gold-light);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .testimonial-single blockquote { font-size: 1.1rem; }
}

/* Inquiry form */
.inquiry-section { background: var(--cream); }
.inquiry-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 12px 50px rgba(44,58,28,0.08);
}
@media (max-width: 600px) { .inquiry-form { padding: 1.75rem; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
}
.form-group textarea { resize: vertical; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.5;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0faf0;
  border: 1.5px solid #68c768;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #2d6a2d;
}
.form-success span { font-size: 1.5rem; }
.form-error {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff4f4;
  border: 1.5px solid #e07070;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #8b2020;
}
.form-error span { font-size: 1.5rem; }
.btn--lg { padding: 0.9rem 2.25rem; font-size: 1rem; }

/* ============================================================
   CONTACT PAGE — EXTRA COMPONENTS
   ============================================================ */

/* Contact grid */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .contact-grid { grid-template-columns: 1fr; } }

/* Contact card */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(44,58,28,0.06);
  border: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(44,58,28,0.1);
  transform: translateY(-3px);
}
.contact-card__icon { font-size: 2.25rem; line-height: 1; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}
.contact-card__link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  margin-top: auto;
}
.contact-card__link:hover { color: var(--green-dark); }
.contact-card__btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

/* Hours table inside contact card */
.hours-table { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.hours-row--note {
  justify-content: center;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  border: none;
  padding-top: 0.5rem;
}

/* Map */
.map-section { }
.map-wrapper {
  width: 100%;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.map-wrapper iframe { display: block; }

/* Contact form section */
.contact-form-section { background: var(--cream); }
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-form-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-form-info { }
.contact-form-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green-dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.contact-form-info > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-highlights { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-highlight__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-highlight strong {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}
.contact-highlight p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact form card */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 50px rgba(44,58,28,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 480px) { .contact-form { padding: 1.5rem; } }

/* CTA block */
.cta-section { }
.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cta-block > p {
  color: var(--gold-pale);
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}
.cta-block__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ALIASES & MISSING UTILITIES
   (Bridge between new page HTML and design system)
   ============================================================ */

/* Buttons — BEM variant aliases */
.btn--gold     { background: var(--gold); color: var(--green-dark); border: 2px solid var(--gold); font-weight: 700; border-radius: 50px; padding: 0.75rem 1.75rem; display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s; font-size: 0.9rem; letter-spacing: 0.03em; text-decoration: none; }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,12,0.35); }
.btn--outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); font-weight: 600; border-radius: 50px; padding: 0.75rem 1.75rem; display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s; font-size: 0.9rem; text-decoration: none; }
.btn--outline:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn--sm       { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* Badge variants */
.badge--hero {
  display: inline-block;
  background: rgba(200,150,12,0.18);
  border: 1px solid rgba(200,150,12,0.45);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* Background utilities */
.bg-dark  { background: var(--green-dark); }
.bg-cream { background: var(--cream); }

/* Section padding */
.section-pad { padding: 5rem 0; }
@media (max-width: 768px) { .section-pad { padding: 3.5rem 0; } }

/* Section header helpers */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}
.bg-dark .section-sub { color: rgba(255,255,255,0.6); }
.bg-dark h2 { color: var(--gold); }
.bg-dark .section-label { color: var(--gold-light); }

/* Footer aliases */
.footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
  text-decoration: none;
}
.footer__tagline {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer__brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

/* Footer column headings — h4 variant */
.footer__col h4 {
  color: var(--white);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.footer__col li { margin-bottom: 0.625rem; color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer__col li a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer__col li a:hover { color: var(--gold-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* Nav logo text (fallback when logo img fails) */
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

/* Hamburger — standalone class alias */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); transition: all 0.3s; display: block; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 768px) { .hamburger { display: flex; } }

/* Lang toggle */
.lang-toggle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.lang-toggle:hover { color: var(--gold); border-color: var(--gold); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-nav__close:hover { opacity: 1; }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.mobile-nav li a {
  display: block;
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  transition: color 0.2s;
}
.mobile-nav li a:hover { color: var(--gold); }

/* Hero CTAs on page hero */
.hero__ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
@media (max-width: 480px) { .hero__ctas { flex-direction: column; } .hero__ctas .btn--gold, .hero__ctas .btn--outline { width: 100%; justify-content: center; } }

/* Page hero — support inline background-image */
.page-hero { background-size: cover; background-position: center; }

/* Section containers with dark/cream bg need colored headings */
.bg-dark .section-header h2 { color: var(--gold); }
.bg-cream .section-header h2 { color: var(--green-dark); }

/* Packages section */
.packages-section { }

/* Process section */
.process-section { }
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 3rem auto 0; }
.process-steps .process-step { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(44,58,28,0.12); align-items: flex-start; }
.process-steps .process-step:last-child { border-bottom: none; }
.bg-cream .process-steps .process-step { border-bottom-color: rgba(44,58,28,0.12); }
.process-steps .process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-steps .process-step__body h4 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.35rem; }
.process-steps .process-step__body p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL HEADER + FOOTER (components.js)
   Classes: .gh (global header), .gf (global footer)
   Bilingual DA/EN via data-da / data-en attributes
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   GLOBAL HEADER  (.gh)
══════════════════════════════════════════════════════════════ */

.gh {
  position: fixed;
  top: var(--banner-height);
  left: 0; right: 0;
  z-index: 1001;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(15, 20, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.gh.scrolled {
  background: rgba(15, 20, 10, 0.98);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
  height: 62px;
}

/* Logo */
.gh__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.gh__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* Desktop nav links */
.gh__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gh__links li a {
  display: block;
  padding: 0.35rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.845rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.gh__links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.gh__links li a:hover { color: #fff; }
.gh__links li a:hover::after { transform: scaleX(1); }
.gh__links li a.nav-link--active {
  color: var(--gold-light);
}
.gh__links li a.nav-link--active::after {
  transform: scaleX(1);
}
.gh__links li a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* Right controls */
.gh__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Language toggle */
.gh__lang {
  display: flex;
  align-items: center;
  gap: 0;
}
.gh__lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 7px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
  border-radius: 3px;
}
.gh__lang-btn:hover { color: rgba(255,255,255,0.9); }
.gh__lang-btn[aria-pressed="true"] {
  color: var(--gold-light);
}
.gh__lang-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.gh__lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  user-select: none;
}

/* CTA button */
.gh__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.gh__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.gh__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Hamburger */
.gh__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.gh__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.gh__hamburger:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ── Mobile overlay ── */
.gh-mobile {
  position: fixed;
  inset: 0;
  top: calc(var(--banner-height) + var(--nav-height));
  background: var(--green-dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 1.5rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.gh-mobile.open {
  opacity: 1;
  pointer-events: auto;
}

/* Close button */
.gh-mobile__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.gh-mobile__close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.gh-mobile__close:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* Logo in overlay */
.gh-mobile__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* Mobile links */
.gh-mobile__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 320px;
  margin-bottom: 2rem;
}
.gh-mobile__links a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.gh-mobile__links a:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.gh-mobile__links a:hover { color: var(--gold-light); }
.gh-mobile__links a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* Lang toggle in overlay */
.gh-mobile__lang {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.gh-mobile__lang button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.gh-mobile__lang button:hover { background: rgba(255,255,255,0.14); color: #fff; }
.gh-mobile__lang button[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}
.gh-mobile__lang button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* Mobile CTA */
.gh-mobile__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.gh-mobile__cta:hover { background: var(--gold-light); }
.gh-mobile__cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ── Responsive breakpoints ── */
@media (max-width: 960px) {
  .gh__links { display: none; }
  .gh__cta   { display: none; }
  .gh__hamburger { display: flex; }
}
@media (max-width: 600px) {
  .gh { padding: 0 1.25rem; }
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: #fff;
  padding: 10px 18px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border-radius: 0 0 4px 4px;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }


/* ══════════════════════════════════════════════════════════════
   GLOBAL FOOTER  (.gf)
══════════════════════════════════════════════════════════════ */

.gf {
  background: #111a0a;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
}

.gf__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.gf__brand {}
.gf__brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.gf__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.gf__address {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-style: normal;
}
.gf__address a,
.gf__address span {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.45;
  transition: color 0.2s;
}
.gf__address a:hover { color: rgba(255,255,255,0.85); }
.gf__address a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* Content columns */
.gf__col {}
.gf__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

/* Link lists */
.gf__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.gf__list a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.855rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.gf__list a:hover { color: #fff; }
.gf__list a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* Contact column: icon + text rows */
.gf__list--contact li {
  display: flex;
}
.gf__contact-icon {
  flex-shrink: 0;
  width: 1.4rem;
  font-size: 0.9rem;
  margin-top: 0.05rem;
}
.gf__contact-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.58);
  font-size: 0.855rem;
  line-height: 1.45;
}
.gf__list--contact a {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

/* Bottom bar */
.gf__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gf__copy {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
}
.gf__legal {
  display: flex;
  gap: 1.75rem;
}
.gf__legal a {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.gf__legal a:hover { color: rgba(255,255,255,0.6); }
.gf__legal a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* ── Local pages pill grid (scales to 30+ entries) ── */
.gf__pages-hub {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.gf__pages-hub:hover { color: #fff; }
.gf__pages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.gf__page-pill {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: 100px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  line-height: 1.4;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.gf__page-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(200,150,12,0.08);
}

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .gf__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .gf__brand { grid-column: span 3; }
}
@media (max-width: 640px) {
  .gf__inner {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem 2rem;
  }
  .gf__brand { grid-column: span 2; }
  .gf__bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 0.75rem;
  }
  .gf__legal { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 400px) {
  .gf__inner { grid-template-columns: 1fr; }
  .gf__brand { grid-column: span 1; }
}

/* ============================================================
   CATERING PAGE – DISH IMAGE GRID
   ============================================================ */
.dish-img-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin: 2.5rem 0 3rem;
}
.dish-img-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.dish-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dish-img-item:hover img { transform: scale(1.06); }
.dish-img-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 1.2rem 0.5rem 0.4rem;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .dish-img-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .dish-img-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* ============================================================
   CATERING PAGE – TESTIMONIALS GRID (5 cards)
   ============================================================ */
.testimonials-section { background: var(--green-dark); color: var(--cream); }
.testimonials-section .section-header { color: var(--cream); }
.testimonials-section .section-label { color: var(--gold-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
/* 5th card spans full width on its row or we do 3+2 */
.testimonials-grid .testi-card:nth-child(4),
.testimonials-grid .testi-card:nth-child(5) {
  /* stays in normal flow; grid auto-places them */
}

.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,150,12,0.25);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testi-card blockquote {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(249,244,232,0.9);
  flex: 1;
  font-style: italic;
}
.testi-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testi-card cite strong {
  color: var(--gold-light);
  font-size: 0.9rem;
}
.testi-card cite span {
  font-size: 0.78rem;
  opacity: 0.65;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   KONTAKT PAGE – HERO SPLIT LAYOUT
   ============================================================ */
.kontakt-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  margin-top: 0;
}
.kontakt-hero__visual {
  position: relative;
  overflow: hidden;
}
.kontakt-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kontakt-hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,58,28,0.35) 0%, rgba(0,0,0,0.15) 100%);
}
.kontakt-hero__panel {
  background: var(--green-dark);
  color: var(--cream);
  padding: 5rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.kontakt-hero__panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

/* Big phone CTA */
.kontakt-phone-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold);
  color: #1a1a1a;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.kontakt-phone-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.kontakt-phone-cta__icon { font-size: 1.6rem; }
.kontakt-phone-cta__body { display: flex; flex-direction: column; }
.kontakt-phone-cta__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.kontakt-phone-cta__number { font-size: 1.7rem; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1.1; }

/* Quick info list */
.kontakt-quick-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.kontakt-quick-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.kontakt-quick-info__icon { font-size: 1.2rem; margin-top: 0.1rem; }
.kontakt-quick-info__item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 0.2rem; }
.kontakt-quick-info__item p { font-size: 0.95rem; line-height: 1.4; margin: 0; }
.kontakt-quick-info__item a { color: var(--gold-light); font-size: 0.82rem; text-decoration: underline; }
.kontakt-quick-info__item a:hover { color: #fff; }

/* Order buttons row */
.kontakt-order-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ─── CONTACT SPLIT (info + form side by side) ─────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-split__info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-detail-item__icon { font-size: 1.3rem; margin-top: 0.05rem; }
.contact-detail-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.25rem; }
.contact-detail-item__value { font-size: 1rem; color: var(--text-primary); font-weight: 500; }
a.contact-detail-item__value { color: var(--green-dark); font-size: 1.5rem; font-weight: 700; }
a.contact-detail-item__value:hover { color: var(--gold); }
.contact-detail-item__link { color: var(--gold); font-size: 0.88rem; font-weight: 600; text-decoration: underline; }
.contact-detail-item__link:hover { color: var(--green-dark); }

.contact-form-box {
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 18px;
  padding: 2.5rem 2rem;
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.contact-form-box .section-label { color: var(--gold-light); margin-bottom: 0.4rem; }
.contact-form-box .form-group label { color: var(--cream); opacity: 0.85; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,150,12,0.3);
  color: var(--cream);
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder { color: rgba(249,244,232,0.4); }
.contact-form-box select option { background: var(--green-dark); color: var(--cream); }

/* Responsive kontakt */
@media (max-width: 900px) {
  .kontakt-hero { grid-template-columns: 1fr; min-height: auto; }
  .kontakt-hero__visual { height: 40vw; min-height: 220px; max-height: 340px; }
  .kontakt-hero__panel { padding: 2.5rem 1.75rem; }
  .kontakt-phone-cta__number { font-size: 1.4rem; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 580px) {
  .kontakt-hero__visual { height: 55vw; }
  .kontakt-hero__panel { padding: 2rem 1.25rem; }
  .kontakt-phone-cta { padding: 0.9rem 1.1rem; }
  .kontakt-phone-cta__number { font-size: 1.25rem; }
  .kontakt-order-btns { flex-direction: column; }
  .contact-form-box { padding: 1.75rem 1.25rem; }
}

/* ============================================================
   CATERING HERO — premium split layout
   ============================================================ */
.cat-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: calc(var(--nav-height, 72px) + var(--banner-height, 38px));
  background: var(--green-dark);
  overflow: hidden;
}

/* Left: text panel */
.cat-hero__panel {
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem 4rem 4rem;
}
.cat-hero__content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cat-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.cat-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.cat-hero__content h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.cat-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(249,244,232,0.78);
  margin-bottom: 2rem;
  max-width: 430px;
}

/* Trust stats row */
.cat-hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.cat-hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cat-hero__trust-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.cat-hero__trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(249,244,232,0.55);
}
.cat-hero__trust-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(249,244,232,0.15);
}

/* CTA buttons */
.cat-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border: 2px solid rgba(249,244,232,0.4);
  color: var(--cream);
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,150,12,0.08);
}

/* Right: image panel */
.cat-hero__visual {
  position: relative;
  overflow: hidden;
}
.cat-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}
.cat-hero:hover .cat-hero__img { transform: scale(1.04); }

/* Floating badge on the image */
.cat-hero__img-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(44,58,28,0.88);
  border: 1px solid rgba(200,150,12,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cat-hero__img-badge-line1 {
  font-family: var(--font-script, 'Dancing Script', cursive);
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1.2;
}
.cat-hero__img-badge-line2 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249,244,232,0.65);
}

/* Responsive catering hero */
@media (max-width: 900px) {
  .cat-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cat-hero__visual {
    order: -1;
    height: 45vw;
    min-height: 240px;
    max-height: 380px;
  }
  .cat-hero__panel {
    padding: 2.5rem 1.75rem 3rem;
  }
  .cat-hero__content { max-width: 100%; }
}
@media (max-width: 580px) {
  .cat-hero__visual { height: 60vw; }
  .cat-hero__panel { padding: 2rem 1.25rem 2.5rem; }
  .cat-hero__content h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .cat-hero__ctas { flex-direction: column; }
  .cat-hero__ctas .btn, .cat-hero__ctas .btn--outline-light { width: 100%; justify-content: center; text-align: center; }
  .cat-hero__trust { gap: 1rem; }
  .cat-hero__trust-val { font-size: 1.3rem; }
  .cat-hero__img-badge { bottom: 1rem; left: 1rem; padding: 0.65rem 1rem; }
}

/* ============================================================
   DESIGN CRITIQUE + ACCESSIBILITY POLISH
   Implemented: 2026-04-09 — full pass across all pages
   ============================================================ */

/* ── 1. GLOBAL FOCUS VISIBLE (WCAG 2.4.7) ───────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── 2. FORM INPUT FOCUS RINGS ───────────────────────────────── */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(200,150,12,0.15);
}

/* ── 3. TESTIMONIAL CARD ENHANCEMENTS ────────────────────────── */
/* Decorative opening quote */
.testi-card {
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.testi-card blockquote {
  padding-top: 0.5rem;
}
/* Slightly elevate card on hover */
.testi-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,150,12,0.55);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
/* Improve cite contrast */
.testi-card cite span {
  opacity: 0.8;
  color: rgba(249,244,232,0.8);
}

/* ── 4. PACKAGE CARD FEATURE LIST CONTRAST FIX ───────────────── */
/* pkg-card__features li was gold-pale/0.7 which is too low */
.pkg-card__features li {
  color: rgba(249,244,232,0.88);
}
.pkg-card--featured .pkg-card__features li {
  color: rgba(249,244,232,0.92);
}
/* pkg-card__min contrast fix */
.pkg-card__min {
  color: rgba(249,244,232,0.72);
  opacity: 1;
}
.pkg-card__from, .pkg-card__unit {
  opacity: 1;
  color: rgba(249,244,232,0.68);
}

/* ── 5. PROCESS STEP – VISUAL CONNECTOR LINE ─────────────────── */
.process-steps {
  position: relative;
}
.process-step {
  position: relative;
}
/* Vertical connecting line between step numbers */
.process-steps .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px; /* center of 48px number circle */
  top: 68px;  /* below the number circle */
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(200,150,12,0.4), rgba(200,150,12,0.08));
}

/* ── 6. WHY-CARD PREMIUM TREATMENT ───────────────────────────── */
.why-card {
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200,150,12,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-dark);
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── 7. DISH IMAGE GRID – HOVER OVERLAY ─────────────────────── */
.dish-img-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: default;
}
.dish-img-item img {
  transition: transform 0.45s ease;
}
.dish-img-item:hover img {
  transform: scale(1.06);
}
.dish-img-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44,58,28,0.92), transparent);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 1.5rem 0.75rem 0.6rem;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── 8. LOKATION IMAGE – FOOD SPREAD VISUAL TREATMENT ────────── */
.lokation-map a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(44,58,28,0.18);
  transition: box-shadow 0.3s, transform 0.3s;
}
.lokation-map a:hover {
  box-shadow: 0 16px 60px rgba(44,58,28,0.28);
  transform: translateY(-3px);
}
.lokation-map img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* ── 9. CTA SECTION ENHANCEMENT ─────────────────────────────── */
.cta-block {
  position: relative;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: -3rem -1rem;
  background: radial-gradient(ellipse at center, rgba(200,150,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  position: relative;
}

/* ── 10. ACCESSIBILITY – CAT-HERO TRUST LABEL CONTRAST FIX ──── */
/* rgba(249,244,232,0.55) on green-dark ≈ 3.2:1, fails for small text */
.cat-hero__trust-label {
  color: rgba(249,244,232,0.75); /* now ≈ 4.5:1 */
}

/* ── 11. KONTAKT HERO – IMAGE DIMENSIONs ────────────────────── */
.kontakt-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto; /* Overridden by grid height */
}

/* ── 12. BUTTON HOVER / ACTIVE STATES ───────────────────────── */
.btn--gold:active { transform: scale(0.98); }
.btn--outline:active { transform: scale(0.98); }

/* ── 13. FORM SUCCESS BOX ALIGNMENT ─────────────────────────── */
.form-success {
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(200,150,12,0.12);
  border: 1px solid rgba(200,150,12,0.35);
  border-radius: 12px;
  margin-top: 1rem;
  color: var(--cream);
}
.form-success p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-success span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── 14. SECTION HEADING CONSISTENCY ────────────────────────── */
/* All section-label elements use consistent gold, uppercase small text */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.bg-dark .section-label { color: var(--gold-light); }

/* ── 15. SCROLL-ANCHORED SMOOTHNESS ─────────────────────────── */
/* Add scroll-margin-top to all anchor targets to clear fixed nav + banner */
#om, #menu, #galleri, #lokation, #faq,
#pakker, #menu, #proces, #forespørgsel,
#kontakt-main, #catering-main, #main-content {
  scroll-margin-top: calc(var(--nav-height, 76px) + var(--banner-height, 36px) + 1rem);
}

/* ── 16. IMPROVED MOBILE NAV OVERLAY ────────────────────────── */
.mobile-nav {
  /* ensure enough contrast on the backdrop */
  background: rgba(44,58,28,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-nav a {
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(249,244,232,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ── 17. HERO SECTION – STATISTICS BAR CONTRAST ─────────────── */
/* stats-bar numbers and labels on dark background */
.stats-bar__number { color: var(--gold-light); }
.stats-bar__label { color: rgba(249,244,232,0.82); }

/* ── 18. GALLERY IMAGE – CONSISTENT ASPECT RATIO ────────────── */
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ── 19. FOOTER LEGAL LINK CONTRAST ─────────────────────────── */
.footer__legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold-light); }

/* ── 20. HOURS BANNER PHONE LINK CONTRAST ────────────────────── */
/* The phone link inside hours-banner needs to meet 4.5:1 */
.hours-banner a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.hours-banner a:hover {
  text-decoration-color: var(--gold-light);
}

/* ── 21. PKG GRID CONTAINER ──────────────────────────────────── */
/* Fix the pkg-grid that uses .packages-grid vs .pkg-grid class */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pkg-card--featured { transform: none; }
}

/* ── 22. TESTIMONIALS – 5-CARD LAYOUT IMPROVEMENT ───────────── */
/* Last row: 4th and 5th card centered */
@media (min-width: 901px) {
  .testimonials-grid .testi-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
  }
  .testimonials-grid .testi-card:nth-child(5) {
    grid-column: 2 / 3;
  }
  /* Center the bottom row of 2 within 3-col grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonials-grid .testi-card:nth-child(4),
  .testimonials-grid .testi-card:nth-child(5) {
    grid-column: auto;
  }
  /* Use subgrid approach: wrap last 2 in their own centered row */
}

/* ── 23. BACK TO TOP STYLING ──────────────────────────────────── */
/* Remove default outline on logo image links */
.nav__logo:focus-visible {
  outline-offset: 6px;
  border-radius: 4px;
}

/* ── 24. SKIP LINK – ALL PAGES ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  z-index: 99999;
  transition: top 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.skip-link:focus { top: 0 !important; }

/* ── 25. HERO IMAGE LOADING BLUR-UP ─────────────────────────── */
/* Prevent layout shift on hero image */
.cat-hero__img {
  background: var(--green-dark);
}

/* ============================================================
   ADDITIONAL VISUAL REFINEMENTS — Second pass
   ============================================================ */

/* ── Why-card: use icon size from the correct class ────────── */
.why-card__icon { font-size: 2.5rem; }

/* ── Inquiry form on catering — premium treatment ────────── */
.inquiry-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 48px rgba(44,58,28,0.1);
  max-width: 760px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  max-width: 340px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .btn { width: 100%; text-align: center; }
  .inquiry-form { padding: 1.5rem; }
}

/* ── kontakt.html phone tel link styling ────────────────── */
a.contact-detail-item__value:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Improve the map iframe wrapper ──────────────────────── */
.map-section {
  padding: 0;
  line-height: 0;
}
.map-wrapper {
  overflow: hidden;
  max-height: 440px;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
  filter: grayscale(10%) contrast(1.05);
}

/* ── Package card featured: gold top border accent ─────── */
.pkg-card--featured {
  border-top: 3px solid var(--gold);
}

/* ── Better btn--lg sizing ───────────────────────────────── */
.btn--lg {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
}

/* ── Smooth image load transition ───────────────────────── */
.dish-card__img-wrap img,
.dish-img-item img,
.cat-hero__img,
.kontakt-hero__visual img {
  transition: transform 0.45s ease, opacity 0.3s ease;
}

/* ── Responsive improvements for process steps in catering ── */
@media (max-width: 640px) {
  .process-steps .process-step {
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  .process-steps .process-step__num {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
  .process-steps .process-step:not(:last-child)::after {
    left: 19px;
  }
}

/* ── Section label on cream backgrounds ─────────────────── */
.bg-cream .section-label,
.why-section .section-label,
.process-section .section-label {
  color: var(--gold);
}

/* ── Testimonials on dark bg: ensure heading color ──────── */
.testimonials-section .section-header h2 {
  color: var(--cream);
}

/* ============================================================
   CATERING — MOSAIC GALLERY
   ============================================================ */
.cat-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 440px;
  gap: 4px;
  overflow: hidden;
}
.cat-mosaic__tall {
  overflow: hidden;
}
.cat-mosaic__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}
.cat-mosaic__half {
  overflow: hidden;
}
.cat-mosaic__tall img,
.cat-mosaic__half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cat-mosaic__tall:hover img,
.cat-mosaic__half:hover img {
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .cat-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }
}
@media (max-width: 560px) {
  .cat-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
}

/* ============================================================
   CATERING — INQUIRY SECTION (SPLIT LAYOUT)
   ============================================================ */
.inquiry-section {
  padding: 5rem 0;
  background: var(--cream);
}
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Left info panel */
.inquiry-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.inquiry-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.inquiry-phone-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.inquiry-phone-cta:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}
.inquiry-phone-cta__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}
.inquiry-phone-cta__body {
  display: flex;
  flex-direction: column;
}
.inquiry-phone-cta__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.inquiry-phone-cta__number {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.inquiry-info-points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.inquiry-info-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.inquiry-info-point::before {
  content: "✓";
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.inquiry-food-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
}
.inquiry-food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right form panel */
.inquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.inquiry-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.inquiry-form-wrap > p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
@media (max-width: 640px) {
  .inquiry-form-wrap {
    padding: 1.75rem 1.25rem;
  }
}
