/* ================================================================
   littlemark.de — Hauptstylesheet
   Design: Warmes Editorial — Gold / Tiefblau / Cremeweiß
   ================================================================ */

/* ── LOCAL VARIABLE FONTS ─────────────────────────────────────── */

/* Lora Normal */
@font-face {
  font-family: 'Lora';
  src: url('fonts/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

/* Lora Italic */
@font-face {
  font-family: 'Lora';
  src: url('fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}

/* Nunito Normal */
@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

/* Nunito Italic */
@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}


/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --gold:        #c8860a;
  --gold-bright: #f0a830;
  --gold-pale:   #fdf4dc;
  --gold-border: rgba(200, 134, 10, 0.3);
  --amber:       #e09020;
  --navy:        #0f2040;
  --navy-mid:    #1a3560;
  --navy-light:  #2a4a80;
  --cream:       #fffdf4;
  --warm-bg:     #faf6ec;
  --text:        #1a120a;
  --text-mid:    #4a3820;
  --text-muted:  #7a6040;
  --border:      rgba(200,134,10,0.2);
  --shadow-sm:   0 2px 12px rgba(15,32,64,0.08);
  --shadow-md:   0 6px 32px rgba(15,32,64,0.13);
  --shadow-lg:   0 16px 64px rgba(15,32,64,0.18);
  --radius:      3px;
  --transition:  0.22s ease;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

/* ── BODY ──────────────────────────────────────────────────────── */
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--warm-bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── COOKIE BANNER ─────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { flex: 1; min-width: 240px; }
#cookie-banner p a { color: var(--gold-bright); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.5rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--amber); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--gold-bright); }

/* ── MAIN NAV ──────────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 1.1rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
  background: rgba(255,255,255,0.04);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; gap: 0.3rem; }
.dropdown-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  margin-left: 0.2rem;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-mid);
  min-width: 190px;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--gold);
  display: none;
  flex-direction: column;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-link {
  display: block;
  padding: 0.7rem 1.2rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.dropdown-link:hover {
  color: var(--gold-bright);
  border-left-color: var(--gold-bright);
  background: rgba(255,255,255,0.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.mobile-nav-link.sub {
  padding-left: 2.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-bright);
  border-left-color: var(--gold-bright);
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 55%, #243a6a 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,134,10,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(42,74,128,0.3) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero-kicker {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--gold);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(200,134,10,0.35);
}
.btn-primary:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,134,10,0.4);
}
.btn-secondary {
  color: rgba(255,255,255,0.7);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.hero-image-box {
  flex-shrink: 0;
  width: 220px;
}
.hero-stickfigure {
  width: 100%;
}

/* ── PAGE WRAPPER ──────────────────────────────────────────────── */
main { flex: 1; }

.page-content { display: none; }
.page-content.active { display: block; }

/* ── BREADCRUMB ────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--gold); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.4; }

/* ── SECTION ───────────────────────────────────────────────────── */
.section { padding: 4rem 2rem; }
.section-narrow { max-width: 760px; margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── PROSE ─────────────────────────────────────────────────────── */
.prose {
  max-width: 700px;
  margin: 0 auto;
}
.prose p {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}
.prose strong { color: var(--navy); }

/* ── CARDS ─────────────────────────────────────────────────────── */
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-body { padding: 1.5rem; }
.card-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── HIGHLIGHTED BOX ───────────────────────────────────────────── */
.highlight-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.highlight-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.highlight-box p:last-child { margin-bottom: 0; }

/* ── STEP PROCESS ──────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold-bright);
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.step-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: var(--radius);
}

/* ── GALLERY GRID ──────────────────────────────────────────────── */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.gallery-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery-card-img {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f0e4;
}
.gallery-card-img img {
  display: block;
  max-width: 100%;
  height: auto;
  /* zeige Bild in echter Größe, kein Strecken */
  image-rendering: auto;
}
.gallery-card-caption {
  padding: 0.5rem 0.75rem 0.75rem;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.gallery-card-caption h3 {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.gallery-card-caption p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── VARIANT CARDS (Gaumenplatte types) ────────────────────────── */
.variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.variant-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform var(--transition), box-shadow var(--transition);
}
.variant-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.variant-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-bright);
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.variant-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.variant-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.variant-card img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: calc(var(--radius) - 1px);
}

/* ── HOME NAV LIST ─────────────────────────────────────────────── */
.home-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.home-nav-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition), padding-left var(--transition);
}
.home-nav-item:last-child { border-bottom: none; }
.home-nav-item:hover {
  background: var(--gold-pale);
  padding-left: 1.9rem;
}
.home-nav-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  min-width: 140px;
  flex-shrink: 0;
}
.home-nav-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius);
  min-height: 200px;
  padding: 1.5rem;
}
.stickfigure-display {
  height: auto;
  max-height: 180px;
  width: auto;
}

/* ── CONTACT BOXES ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-box h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.contact-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-box .note {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 1rem;
  border-radius: calc(var(--radius) - 1px);
  font-style: italic;
}
.address-img {
  max-width: 100%;
  border-radius: var(--radius);
}

/* ── LEGAL TEXT ────────────────────────────────────────────────── */
.legal-sections { display: flex; flex-direction: column; gap: 1.25rem; }
.legal-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.legal-section h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.legal-num {
  background: var(--gold);
  color: #fff;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.legal-section p + p { margin-top: 0.75rem; }

/* ── DATENSCHUTZ SPECIFIC ──────────────────────────────────────── */
.dsgvo-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}
.dsgvo-banner strong { color: var(--gold-bright); }

/* ── LINKS PAGE ────────────────────────────────────────────────── */
.links-note {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* ── DIVIDER ───────────────────────────────────────────────────── */
.ornament {
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.5rem;
  margin: 2.5rem 0;
  opacity: 0.4;
  font-size: 0.8rem;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  margin-top: auto;
}
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding: 1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.back-to-top:hover { color: var(--gold-bright); }



/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-content.active > * {
  animation: fadeUp 0.35s ease both;
}
.page-content.active > *:nth-child(2) { animation-delay: 0.05s; }
.page-content.active > *:nth-child(3) { animation-delay: 0.10s; }
.page-content.active > *:nth-child(4) { animation-delay: 0.15s; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-box { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 2.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .highlight-box { padding: 1.25rem 1.5rem; }
  .contact-box { padding: 1.25rem; }
}
