/* ══════════════════════════════════════════════
   JUL HOS SOMMARTEATERN — jul.sommarteaternystad.com
   Delar designspråk med sommarteaternystad.com
══════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f4;
  --line: rgba(20, 20, 20, 0.08);
  --text: #161616;
  --muted: rgba(22, 22, 22, 0.72);
  --muted-2: rgba(22, 22, 22, 0.5);

  /* Brand */
  --gold: #c9a84c;
  --gold-light: #e0bb65;
  --crimson: #8b1a2e;
  --crimson-deep: #5e0f1e;
  --green: #1a4a28;
  --green-mid: #123420;
  --green-deep: #081b11;
  --purple-dark: #0e0421;

  --max: 1280px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  --shadow-dark: 0 12px 40px rgba(0, 0, 0, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   HEADER / NAV — sticky, samma på alla sidor
══════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, #0a0f0a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-logo { height: 52px; width: auto; flex-shrink: 0; }

.header-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

.header-brand-title {
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.header-brand-sub {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover { background: rgba(255,255,255,0.10); color: #fff; }
.main-nav a.is-active { background: var(--gold); color: #1a1000; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-deep);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 14px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 14px; border-radius: 10px; }
  .header-logo { height: 40px; }
  .header-brand-sub { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ══════════════════════════════════════════════
   HERO (startsida)
══════════════════════════════════════════════ */

.hero-section {
  position: relative;
  padding: 64px 0 48px;
  background:
    linear-gradient(160deg, rgba(8,27,17,0.88) 0%, rgba(18,52,32,0.82) 55%, rgba(94,15,30,0.80) 130%),
    url('../images/jul-bakgrund.jpg') center 30% / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero-logo {
  width: min(300px, 62vw);
  height: auto;
  margin: 0 auto 8px;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
}

.hero-kicker {
  display: block;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Bricka med julgransförsäljnings-info */
.hero-banner {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.hero-banner-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
  color: var(--crimson);
}

.hero-banner-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-banner-dates {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 800;
  color: var(--green);
  background: rgba(26,74,40,0.08);
  padding: 10px 20px;
  border-radius: 999px;
}

.hero-banner-hours {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-banner-hours-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}

.hero-banner-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
}

.hero-banner-hours-row span:first-child { color: var(--muted); }
.hero-banner-hours-row span:last-child { font-weight: 800; color: var(--text); }

/* ══════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════ */

.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }

.section-head { margin-bottom: 32px; }
.section-head.center { text-align: center; }

.section-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  color: var(--crimson);
}

h1.page-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 8px;
}

.section-head.center .page-lead { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════
   VÄLKOMSTTEXT
══════════════════════════════════════════════ */

.welcome-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.welcome-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 20px;
}

.welcome-text a.inline-link {
  color: var(--crimson);
  font-weight: 700;
  border-bottom: 1px solid rgba(139,26,46,0.3);
}
.welcome-text a.inline-link:hover { border-color: var(--crimson); }

/* ══════════════════════════════════════════════
   SIDHUVUD MED STÄMNINGSBILD (undersidor)
══════════════════════════════════════════════ */

.page-hero {
  position: relative;
  padding: 60px 0 40px;
  background:
    linear-gradient(160deg, rgba(8,27,17,0.90) 0%, rgba(18,52,32,0.85) 55%, rgba(94,15,30,0.82) 130%),
    url('../images/jul-bakgrund.jpg') center 30% / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.page-hero .section-kicker { color: rgba(255,255,255,0.72); }

.page-hero .page-title {
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.55);
}

.page-hero .page-lead {
  color: rgba(255,255,255,0.82);
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--gold);
  color: #1a1000;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ══════════════════════════════════════════════
   AFFISCH-PLACEHOLDER
══════════════════════════════════════════════ */

.poster-card {
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(20,20,20,0.16);
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}

.poster-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(139,26,46,0.08);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.poster-card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted-2);
  max-width: 260px;
}

/* ══════════════════════════════════════════════
   BILDPLATSHÅLLARE
══════════════════════════════════════════════ */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  max-width: 760px;
  margin: 36px auto 0;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(20,20,20,0.16);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted-2);
}

.photo-placeholder svg { color: var(--crimson); opacity: 0.55; }

.photo-placeholder span {
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid--compact { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   UTSTÄLLARE (julmarknad)
══════════════════════════════════════════════ */

.exhibitor-card {
  margin-top: 40px;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-dark);
}

.exhibitor-card-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-light);
}

.exhibitor-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
}

.exhibitor-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}

.exhibitor-card .btn { flex-shrink: 0; }

/* ══════════════════════════════════════════════
   LÄNK-GRID (knappar till undersidor)
══════════════════════════════════════════════ */

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.link-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 190px;
  display: flex;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow-dark);
}

.link-tile:hover { transform: translateY(-4px) scale(1.005); box-shadow: 0 24px 64px rgba(0,0,0,0.30); }

.link-tile-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  position: relative;
}

.link-tile--granar .link-tile-inner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}
.link-tile--kalender .link-tile-inner {
  background: linear-gradient(135deg, var(--crimson) 0%, #3a0a16 60%, #1a0520 100%);
}
.link-tile--konserter .link-tile-inner {
  background: linear-gradient(135deg, #6b5410 0%, #2b2005 100%);
}
.link-tile--marknad .link-tile-inner {
  background: linear-gradient(135deg, #123420 0%, #5e0f1e 130%);
}

.link-tile-title {
  margin: 0 0 6px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.link-tile-desc {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.link-tile-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255,255,255,0.55);
  transition: transform 0.2s, color 0.2s;
}

.link-tile:hover .link-tile-arrow { transform: translate(3px,-3px); color: #fff; }

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

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-gold { background: var(--gold); color: #1a1000; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.45); }

.btn-crimson { background: var(--crimson); color: #fff; }
.btn-crimson:hover { background: #a01f35; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,46,0.4); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #21602f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,40,0.4); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--crimson); color: var(--crimson); transform: translateY(-2px); }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   KOMMER SNART (undersidor utan innehåll ännu)
══════════════════════════════════════════════ */

.coming-soon {
  text-align: center;
  padding: 70px 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.coming-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--crimson);
  background: rgba(139,26,46,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.coming-soon h2 { margin-bottom: 10px; }
.coming-soon p { color: var(--muted); font-size: 15px; max-width: 420px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   KALENDER
══════════════════════════════════════════════ */

.cal-intro {
  max-width: 720px;
  margin: 0 auto 8px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 28px 0 40px;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-legend-dot--weekend { background: var(--gold); }
.cal-legend-dot--special { background: var(--crimson); }
.cal-legend-dot--last { background: var(--green); border: 2px solid var(--crimson); }

.cal-months {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cal-month {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow);
}

.cal-month-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: capitalize;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  cursor: default;
}

.cal-day--pad { visibility: hidden; }

.cal-day--inactive { color: var(--muted-2); opacity: 0.35; }

.cal-day--active {
  cursor: pointer;
  background: var(--bg-soft);
  transition: background 0.16s, color 0.16s, transform 0.16s;
}

.cal-day--active:hover { background: rgba(26,74,40,0.14); transform: translateY(-1px); }

.cal-day--active.is-selected {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(26,74,40,0.35);
}

.cal-day-dot {
  position: absolute;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.cal-day-dot--weekend { background: var(--gold); }
.cal-day-dot--special { background: var(--crimson); }
.cal-day-dot--last { background: #fff; }

.cal-day--active.is-selected .cal-day-dot--weekend,
.cal-day--active.is-selected .cal-day-dot--special { background: #fff; }

.cal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6,14,9,0.60);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cal-modal-overlay[hidden] { display: none; }

.cal-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: cal-modal-in 0.18s ease-out;
}

@keyframes cal-modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
}

.cal-modal-close:hover { background: rgba(255,255,255,0.26); }

.cal-panel--last { background: linear-gradient(160deg, var(--crimson) 0%, var(--crimson-deep) 100%); }

.cal-panel-weekday {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 6px;
}

.cal-panel-date {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cal-panel-heading {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.cal-panel-heading[hidden] { display: none; }

.cal-panel-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.cal-panel-text {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.cal-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 999px;
}

.cal-panel-badge[hidden] { display: none; }

@media (max-width: 620px) {
  .cal-months { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cal-day { font-size: 12px; }
  .cal-month { padding: 14px; }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0b0f0b 60%, #08080f 100%);
  color: #fff;
  padding: 56px 0 24px;
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 84px; width: auto; margin-bottom: 16px; }

.footer-col-title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.footer-hours {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row span:first-child { color: rgba(255,255,255,0.55); }
.footer-hours-row span:last-child { font-weight: 700; }

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 16px;
}
.footer-contact p:last-child { margin-bottom: 0; }
.footer-contact strong { color: #fff; }
.footer-contact a { color: var(--gold-light); font-weight: 700; }
.footer-contact a:hover { color: #fff; }

.footer-mainlink {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 18px 24px;
}

.footer-mainlink-text { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-mainlink-text strong { color: #fff; display: block; font-size: 15px; margin-bottom: 2px; }

.footer-mainlink a.btn { flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: span 1; }
  .footer-mainlink { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — GENERELLT
══════════════════════════════════════════════ */

@media (max-width: 719px) {
  .hero-section { padding: 36px 0 32px; }
  .hero-logo { width: min(220px, 58vw); margin-bottom: 4px; }
  .hero-kicker { font-size: 11px; margin-bottom: 20px; }
  .hero-banner { padding: 24px 22px; }
  .section { padding: 48px 0; }
  .page-hero { padding: 44px 0 32px; }
}
