/* ================================================================
   COLFLOR — BOTANICAL EDITORIAL DESIGN SYSTEM
   ================================================================
   Fonts: Cormorant (display) · Jost (body) · Courier Prime (labels)
   Palette: Cream / Deep Forest Green / Muted Gold
   ================================================================ */

/* --- Variables ----------------------------------------------- */
:root {
  --cream:        #F6F0E8;
  --cream-dark:   #EDE5D8;
  --mist:         #F0EBE1;
  --forest:       #182B1E;
  --forest-mid:   #23402C;
  --forest-light: #2E5239;
  --gold:         #C4A060;
  --gold-light:   #E8D5A8;
  --ink:          #1A1A18;
  --ink-soft:     rgba(26, 26, 24, 0.55);
  --white:        #FFFFFF;

  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-mono:    'Courier Prime', 'Courier New', monospace;

  --nav-height:    72px;
  --container-max: 1240px;
  --pad-x:         clamp(24px, 5vw, 80px);
  --section-y:     clamp(80px, 10vw, 140px);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* --- Layout -------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.section--dark { background: var(--forest); color: var(--cream); }

/* --- Typography system --------------------------------------- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section--dark .section-label { color: var(--gold-light); }

.section-header { margin-bottom: clamp(48px, 6vw, 80px); }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  white-space: pre-line;
}

/* --- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-snappy), color 0.3s var(--ease-snappy),
              transform 0.2s var(--ease-snappy);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--forest);
}
.btn--primary:hover {
  background: var(--forest);
  color: var(--gold-light);
}

.btn--ghost {
  background: transparent;
  color: rgba(246, 240, 232, 0.75);
  border: 1px solid rgba(246, 240, 232, 0.3);
  padding: 13px 31px;
}
.btn--ghost:hover {
  background: rgba(246, 240, 232, 0.08);
  color: var(--cream);
  border-color: rgba(246, 240, 232, 0.6);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  transition: background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
}

#navbar.scrolled {
  background: rgba(22, 38, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 240, 232, 0.80);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--gold); }

/* CTA nav item */
.nav-links > li > a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(196, 160, 96, 0.45);
  margin-left: 8px;
  padding: 9px 18px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nav-links > li > a.nav-cta:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--forest);
  border-top: 2px solid var(--gold);
  min-width: 190px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out),
              visibility 0.22s;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.nav-links > li:hover > .nav-dropdown,
.nav-links > li:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 213, 168, 0.75);
  transition: color 0.2s ease, padding-left 0.2s var(--ease-out);
}
.nav-dropdown li a:hover {
  color: var(--cream);
  padding-left: 30px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s var(--ease-out), visibility 0.38s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: var(--pad-x);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(246, 240, 232, 0.5);
  transition: color 0.2s ease;
  padding: 8px;
}
.mobile-menu-close:hover { color: var(--cream); }

.mobile-nav-links {
  list-style: none;
  text-align: center;
  width: 100%;
  padding: 0 var(--pad-x);
}
.mobile-nav-links li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 240, 232, 0.08);
  transition: color 0.2s ease;
}
.mobile-nav-links li:last-child a { border-bottom: none; }
.mobile-nav-links li a:hover { color: var(--gold-light); }

/* ================================================================
   HERO
   ================================================================ */
.section--hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45, 82, 57, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(24, 43, 30, 0.8) 0%, transparent 55%),
    linear-gradient(160deg, #0D1B11 0%, #182B1E 40%, #23402C 75%, #152419 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(64px, 9vw, 120px);
  padding-top: var(--nav-height);
}

/* Large logo centered in hero */
.hero-logo {
  position: absolute;
  top: calc(var(--nav-height) + 7vh);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  animation: heroLogoIn 1.1s var(--ease-out) 0.15s both;
}

.hero-logo img {
  width: clamp(240px, 34vw, 500px);
  height: auto;
  display: block;
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-bg-text {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(72px, 20vw, 260px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.028);
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.hero-line {
  position: absolute;
  background: rgba(196, 160, 96, 0.2);
}
.hero-line--h {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}
.hero-line--v {
  left: 33.333%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9.5vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 36px;
  white-space: pre-line;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: rgba(246, 240, 232, 0.60);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196, 160, 96, 0.55);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(196, 160, 96, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1) translateY(0); }
  50%       { opacity: 0.9; transform: scaleY(1) translateY(4px); }
}

/* ================================================================
   FEATURES
   ================================================================ */
.section--features { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  margin-top: 0;
}

.feature-item {
  background: var(--cream);
  padding: clamp(36px, 4.5vw, 60px);
  transition: background 0.3s ease;
}
.feature-item:hover { background: var(--mist); }

.feature-icon {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 28px;
  transition: transform 0.3s var(--ease-out);
}
.feature-item:hover .feature-icon { transform: rotate(45deg) scale(1.1); }

.feature-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ================================================================
   SERVICES
   ================================================================ */
.section--services { background: var(--forest); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.service-card {
  background: var(--forest-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: 1;
}
.service-card:hover { background: var(--forest-light); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out), filter 0.4s ease;
  filter: brightness(0.82) saturate(0.9);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
  filter: brightness(0.92) saturate(1.05);
}

.service-card-body {
  padding: clamp(32px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-number {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(196, 160, 96, 0.4);
  margin-bottom: 36px;
}

.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196, 160, 96, 0.3);
  padding: 4px 11px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(246, 240, 232, 0.55);
  font-weight: 300;
  max-width: 360px;
  flex: 1;
}

.service-arrow {
  display: block;
  margin-top: 36px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out);
  align-self: flex-start;
}
.service-card:hover .service-arrow { transform: translateX(10px); }

/* ================================================================
   STATEMENT
   ================================================================ */
.section--statement {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}

.statement-inner {
  max-width: 820px;
  margin: 0 auto;
}

.statement-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 36px;
  letter-spacing: -0.025em;
  white-space: pre-line;
  color: var(--cream);
}

.statement-inner p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: rgba(246, 240, 232, 0.60);
  font-weight: 300;
  margin-bottom: 56px;
}

.statement-highlight {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-style: italic;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.statement-highlight::before,
.statement-highlight::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(196, 160, 96, 0.45);
}

/* ================================================================
   LOCATIONS
   ================================================================ */
.section--locations { background: var(--forest); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.location-card {
  background: var(--forest-mid);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.location-card:hover { background: var(--forest-light); }

.location-info {
  padding: clamp(28px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
}

.location-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(196, 160, 96, 0.4);
  margin-bottom: 20px;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.location-city {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.location-card address {
  font-style: normal;
  font-size: 1rem;
  color: rgba(246, 240, 232, 0.5);
  line-height: 1.65;
  font-weight: 300;
  white-space: pre-line;
}

.location-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 240, 232, 0.08);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(246, 240, 232, 0.28);
  line-height: 1.7;
  white-space: pre-line;
}

.location-contacts {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-contact-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(196, 160, 96, 0.65);
  transition: color 0.2s ease;
}
.location-contact-link:hover { color: var(--gold-light); }

.location-map {
  flex-shrink: 0;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.3s ease;
}
.location-card:hover .location-map iframe {
  filter: grayscale(0%) contrast(1.05);
}

/* ================================================================
   GALLERY
   ================================================================ */
.section--gallery { background: var(--cream); }

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

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
  filter: brightness(0.97) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--mist) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 24, 0.25);
}

/* ================================================================
   CAREERS
   ================================================================ */
.section--careers { background: var(--forest); }

.careers-layout h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
  white-space: pre-line;
}

.careers-layout > p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: rgba(246, 240, 232, 0.60);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 44px;
}

.career-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-bottom: 52px;
  max-width: 560px;
}

.career-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(246, 240, 232, 0.70);
  font-weight: 300;
  line-height: 1.5;
}

.career-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 4px;
}

/* ================================================================
   CONTACT (simplified — phone + email only)
   ================================================================ */
.section--contact { background: var(--cream); }

.contact-simple h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  white-space: pre-line;
}

.contact-simple > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 56px;
}

.contact-items {
  display: flex;
  gap: 2px;
  background: var(--cream-dark);
}

.contact-item {
  flex: 1;
  background: var(--cream);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
}
.contact-item:hover { background: var(--mist); }

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.contact-item:hover .contact-item-value { color: var(--forest-mid); }

@media (max-width: 600px) {
  .contact-items      { flex-direction: column; }
  .career-highlights  { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 240, 232, 0.30);
  display: block;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 240, 232, 0.40);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(246, 240, 232, 0.25);
  text-align: right;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .features-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .footer-copy  { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .hero-logo img  { width: clamp(160px, 60vw, 280px); }
}

@media (max-height: 600px) {
  /* Landscape / short screens: tuck logo closer to nav */
  .hero-logo { top: calc(var(--nav-height) + 4px); }
  .hero-logo img { width: clamp(120px, 25vw, 200px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   LEGAL PAGES (impressum.html / datenschutz.html)
   ================================================================ */
.legal-main {
  min-height: 100vh;
  background: var(--cream);
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: clamp(48px, 6vw, 80px);
  margin-top: 16px;
}

.legal-section {
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--cream-dark);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--cream-dark);
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section li::before {
  content: '—';
  color: var(--gold);
  margin-right: 10px;
  font-family: var(--font-mono);
}

.legal-section a {
  color: var(--forest-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-section a:hover { color: var(--gold); }

/* Back link in nav */
.legal-back {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 240, 232, 0.7);
  transition: color 0.2s ease;
}
.legal-back:hover { color: var(--gold); }
