/* ============================================================
   FONTS – lokal gehostet
   ============================================================ */

/* Bebas Neue – Display / Headlines / Buttons */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Montserrat – Variable Font / Fließtext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* CI-Palette */
  --cream:       #faf0dc;
  --sand:        #d6cfbf;
  --line:        #b3ac9c;
  --line-faint:  #d3d3d3;
  --ink-muted:   #686868;
  --accent:      #9f8b72;
  --ink:         #776654;
  --paper:       #ffffff;

  /* Semantische Aliase (bestehende var()-Nutzung) */
  --black:       var(--ink);
  --white:       var(--paper);
  --off-white:   var(--sand);
  --grey:        var(--ink-muted);
  --light-grey:  var(--line-faint);
  --surface:     var(--cream);
  --surface-alt: var(--sand);
  --surface-raised: var(--paper);

  --font-display: 'Bebas Neue', sans-serif;
  --font-sans:    'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --max-w:      1536px;
}

/* Typografie & UI auf dunklen Flächen */
#classes,
#testimonials,
.team-page-hero,
.page-hero,
.booking-cta {
  --grey:  var(--line);
  --white: var(--cream);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--black);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--ink);
  color: var(--cream);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim.anim-left {
  transform: translateX(-50px);
}

.anim.anim-scale {
  transform: scale(0.95);
}

.anim.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(250, 240, 220, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

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

.nav-links {
  display: none;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
}

.nav-links a {
  transition: color 150ms;
}

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

.nav-cta {
  display: none;
}

.btn-book {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--ink);
  transition: background 150ms, color 150ms;
}

.btn-book:hover {
  background: var(--surface-raised);
  color: var(--ink);
}

.nav-toggle {
  display: flex;
  align-items: center;
  color: var(--black);
  line-height: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.mobile-menu.is-open {
  max-height: 600px;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.mobile-link {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.375rem;
  margin: 1rem 0;
}

.mobile-cta {
  margin-top: 2rem;
  background: var(--black);
  color: var(--white);
  padding: 1rem 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--ink);
  display: inline-block;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: block; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 1.5rem 6rem;
  background: var(--surface);
  overflow: hidden;
  background-color: #3b3127;
}

@media (min-width: 768px) {
  #hero { padding-bottom: 8rem; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hero-content {
  max-width: 56rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 0.85;
  color: #fff;
  text-transform: uppercase;
  mix-blend-mode: difference;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 8rem; }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 10rem; }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  mix-blend-mode: difference;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}

.btn-explore {
  display: inline-block;
  width: max-content;
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--ink);
  transition: background 150ms, color 150ms;
}

.btn-explore:hover {
  background: transparent;
  color: var(--ink);
}

/* ============================================================
   THE LOFT
   ============================================================ */
#the-loft {
  padding: 8rem 0;
  background-color: var(--surface-alt);
  border-bottom: 1px solid var(--line);
}

.theloft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .theloft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}

.theloft-grid h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .theloft-grid h2 { font-size: 6rem; }
}

.theloft-grid p {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .theloft-grid p { font-size: 1.3rem; }
}

.img-34 {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
}

.img-34 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   CLASSES
   ============================================================ */
#classes {
  position: relative;
  padding: 8rem 0;
  background: var(--black);
  color: var(--white);
}

#classes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/waves.svg') no-repeat bottom right;
  background-size: auto 60%;
  opacity: 0.15;
  pointer-events: none;
}

#classes h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 6rem;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #classes h2 { font-size: 6rem; }
}

/* ── Homepage Category Panels ───────────────────────────── */
.home-categories {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(179, 172, 156, 0.35);
}

@media (min-width: 768px) {
  .home-categories { grid-template-columns: repeat(3, 1fr); }
}

.home-cat {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(179, 172, 156, 0.35);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .home-cat {
    padding: 3rem 2.5rem;
    border-bottom: none;
    border-right: 1px solid rgba(179, 172, 156, 0.35);
  }
  .home-cat:first-child { padding-left: 0; }
  .home-cat:last-child  { padding-right: 0; border-right: none; }
}

.home-cat-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--grey);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.home-cat-name {
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

@media (min-width: 1280px) {
  .home-cat-name { font-size: 5rem; }
}

.home-cat-tagline {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 1rem;
}

.home-cat-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #dcd8cf;
  flex: 1;
  margin-bottom: 2rem;
}

.home-cat-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(179, 172, 156, 0.5);
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: color 150ms, border-color 150ms;
}

.home-cat-link:hover {
  color: var(--grey);
  border-bottom-color: var(--grey);
}

.classes-cta {
  margin-top: 6rem;
  text-align: center;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 1.25rem 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--white);
  transition: background 150ms, color 150ms;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ============================================================
   LOCATIONS
   ============================================================ */
#locations {
  padding: 8rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

#locations h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 5rem;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #locations h2 { font-size: 6rem; }
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

.location-card {
  position: relative;
  /* border: 1px solid var(--line); */
  padding: 1rem;
  /* background: var(--surface-raised); */
}

@media (min-width: 768px) {
  .location-card { padding: 2rem; }
}

.location-status {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.location-img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 2rem;
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.location-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .location-footer {
    flex-direction: row;
    align-items: flex-end;
  }
}

.location-footer h3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .location-footer h3 { font-size: 2.25rem; }
}

.location-address {
  color: var(--grey);
  font-weight: 500;
  line-height: 1.625;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.location-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.25rem;
  margin-top: 1.5rem;
  transition: color 150ms, border-color 150ms;
}

@media (min-width: 768px) {
  .location-link { margin-top: 0; }
}

.location-link:hover {
  color: var(--grey);
  border-bottom-color: var(--grey);
}

/* Location Facts */
.location-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-grey);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.location-fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1rem;
  border-right: 1px solid var(--light-grey);
}

.location-fact:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 1rem;
}

.location-fact:not(:first-child):not(:last-child) {
  padding-left: 1rem;
}

.location-fact-value {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}

.location-fact-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
}

/* Location Equipment */
.location-equipment {
  margin-top: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-equipment-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  flex-shrink: 0;
}

.location-equipment-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-equipment-list li {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  border: 1px solid var(--light-grey);
  padding: 0.2rem 0.5rem;
}

/* ============================================================
   TEAM
   ============================================================ */
#team {
  padding: 8rem 0;
  background: var(--surface-alt);
}

#team h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 5rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #team h2 { font-size: 6rem; }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}



.team-img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.5rem;
  background: var(--sand);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  transition: transform 700ms ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.team-member .team-role {
  color: var(--grey);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ============================================================
   PHOTO GRID
   ============================================================ */
#photo-grid {
  background: #000;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(180px, 40vw, 480px);
  gap: 0;
}

.photo-grid-item {
  overflow: hidden;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-grid-item--wide {
  grid-column: span 2;
}

@media (min-width: 640px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(160px, 28vw, 420px);
  }
  .photo-grid-item--wide { grid-column: span 1; }
}

@media (min-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(160px, 22vw, 380px);
  }
  .photo-grid-item--wide { grid-column: span 2; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 8rem 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.testimonials-inner {
  width: 100%;
  padding: 0 1.5rem;
  text-align: center;
}

.testimonials-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 4rem;
  display: block;
}

.testimonials-track {
  position: relative;
  height: 250px;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-track { height: 150px; }
}

.testimonial-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-item p {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .testimonial-item p { font-size: 3rem; }
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dot {
  height: 0.25rem;
  width: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}

.dot.is-active {
  background: var(--white);
  width: 2rem;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 8rem 0;
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }

  .faq-title { grid-column: span 4; }
  .faq-list  { grid-column: span 8; }
}

.faq-title h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .faq-title h2 {
    font-size: 6rem;
    position: sticky;
    top: 8rem;
  }
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.faq-question {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--black);
  transition: color 150ms;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .faq-question { font-size: 1.5rem; }
}

.faq-btn:hover .faq-question {
  color: var(--grey);
}

.faq-icon {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer.is-open {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 2rem;
  color: var(--grey);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 42rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--black);
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-col-1 { grid-column: span 6; }
  .footer-col-2 { grid-column: span 3; }
  .footer-col-3 { grid-column: span 3; }
}

.footer-logo {
  display: inline-block;
  background: var(--black);
  padding: 1rem;
  width: max-content;
  margin-bottom: 2rem;
  line-height: 0;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: invert(1);
}

@media (min-width: 768px) {
  .footer-logo-img { height: 140px; }
}

.footer-newsletter {
  border: 1px solid var(--line);
  padding: 2rem;
  background: var(--surface-raised);
  margin-top: 2rem;
}

.footer-newsletter h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-newsletter > p {
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--line);
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  padding: 1rem;
  outline: none;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--black);
  min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--grey);
}

.newsletter-form button {
  background: var(--black);
  color: var(--white);
  padding: 0 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  border-left: 1px solid var(--line);
  cursor: pointer;
  white-space: nowrap;
  transition: background 150ms;
}

.newsletter-form button:hover {
  background: var(--accent);
  color: var(--cream);
}

.footer-col-2 > h3,
.footer-col-3 > h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: var(--grey);
}

.footer-locations {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.footer-locations li strong {
  display: block;
  font-weight: 900;
  color: var(--black);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.footer-locations li {
  color: var(--grey);
  line-height: 1.625;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 150ms;
}

.footer-links a:hover {
  color: var(--grey);
}

.footer-credit-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 150ms;
}

.footer-credit-link:hover {
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }
}
