/* TEAM CARD PORTRAIT FIX */
/* ============================================================
   GLIMLACH! TANDZORG — Stylesheet
   Palette: #C8A96E gold | #4A4A3A dark | #F5F0EB warm-bg | #2E2E2E body
   Font: DM Sans (Google Fonts)
   ============================================================ */

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

:root {
  --gold: #C8A96E;
  --gold-dark: #A8893E;
  --dark: #4A4A3A;
  --bg-warm: #F5F0EB;
  --bg-cream: #EDE8E2;
  --body: #2E2E2E;
  --white: #FFFFFF;
  --text-muted: #6B6B5A;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(74, 74, 58, 0.10);
  --shadow-hover: 0 8px 32px rgba(74, 74, 58, 0.18);
  --transition: 0.22s ease;
  --font: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

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

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

/* ---- MEDIA FILL GUARD ---- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }

em { font-style: italic; color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 4px 16px rgba(200,169,110,0.35); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section--warm { background: var(--bg-warm); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.section-header--light .section-title { color: var(--dark); }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.section-eyebrow--gold { color: var(--gold-dark); }
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }

/* ---- SITE HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(245,240,235,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(74,74,58,0.10);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
}
.site-header.scrolled .nav-logo { color: var(--dark); }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo-text { font-size: 0.95rem; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a:hover { color: var(--white); }
.site-header.scrolled .nav-desktop a { color: var(--dark); }
.site-header.scrolled .nav-desktop a:hover { color: var(--gold-dark); }

.nav-cta { margin-left: 1rem; padding: 0.55rem 1.2rem; font-size: 0.9rem; }

/* ---- HAMBURGER ---- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.hamburger-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition), transform 0.25s, opacity 0.25s;
}
.site-header.scrolled .hamburger-bar { background: var(--dark); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU (FULLSCREEN OVERLAY) ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  background: var(--bg-warm);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
.mobile-menu__panel { display: flex; flex-direction: column; padding: 0 1.5rem 2rem; min-height: 100%; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--bg-cream);
  margin-bottom: 2rem;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--dark);
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: var(--bg-cream); }

.mobile-menu__list { list-style: none; flex: 1; }
.mobile-menu__item {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--bg-cream);
  transition: color var(--transition);
}
.mobile-menu__item:hover { color: var(--gold-dark); }

.mobile-cta {
  margin-top: 2.5rem;
  justify-content: center;
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem;
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.mobile-menu__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,74,58,0.75) 0%,
    rgba(74,74,58,0.45) 60%,
    rgba(74,74,58,0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(200,169,110,0.25);
  border: 1px solid rgba(200,169,110,0.5);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero__title { color: var(--white); max-width: 680px; margin-bottom: 1.2rem; }
.hero__sub { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero__trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(74,74,58,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,169,110,0.2);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 52px; height: 52px;
  background: rgba(200,169,110,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.1rem;
  transition: background var(--transition);
}
.card:hover .card__icon { background: rgba(200,169,110,0.22); }
.card__title { color: var(--dark); margin-bottom: 0.6rem; }
.card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.2rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}
.card__link:hover { gap: 10px; color: var(--dark); }

/* ---- USP GRID ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.usp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.usp-card__visual {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.usp-card__stars { display: flex; gap: 3px; }
.usp-card__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.usp-card__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(200,169,110,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.usp-card__title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.usp-card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ---- SPLIT BANNER ---- */
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-banner__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.split-banner__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-banner__content {
  background: var(--dark);
  color: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.split-banner__content h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.split-banner__content p { color: rgba(255,255,255,0.78); line-height: 1.7; font-size: 1rem; }

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo--alt {
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.team-card__info { padding: 1.5rem; }
.team-card__info h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card__role { font-size: 0.8rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ---- HOURS + CONTACT ---- */
.hours-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.block-icon { margin-bottom: 1rem; }
.block-title { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--dark); }

.hours-table { margin-bottom: 1rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(74,74,58,0.08);
  font-size: 0.92rem;
}
.hours-day { font-weight: 500; color: var(--dark); }
.hours-time { color: var(--text-muted); font-weight: 400; }
.hours-row--highlight .hours-day { color: var(--gold-dark); font-weight: 600; }
.hours-row--highlight .hours-time { color: var(--gold-dark); font-weight: 600; }
.hours-row--closed .hours-day, .hours-row--closed .hours-time { color: var(--text-muted); }

.hours-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  background: rgba(74,74,58,0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.contact-info { margin-bottom: 1.75rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--body);
}
.contact-row a { color: var(--gold-dark); font-weight: 500; transition: color var(--transition); }
.contact-row a:hover { color: var(--dark); }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(74,74,58,0.18);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.18);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--dark);
  padding: 4.5rem 1.5rem;
}
.cta-band__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.5rem; }
.cta-band__text p { color: rgba(255,255,255,0.72); font-size: 1rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer-kit {
  background: #2C2C22;
  color: rgba(255,255,255,0.8);
  padding: 4rem 1.5rem 0;
}
.footer-kit__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-zone--brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact a { color: var(--gold); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-heading { color: var(--white); margin-bottom: 1.25rem; font-size: 0.78rem; letter-spacing: 0.1em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-hours { margin-bottom: 1.5rem; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.83rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.footer-hours-row--accent { color: var(--gold); font-weight: 500; }

.footer-review { display: flex; align-items: center; gap: 0.5rem; }
.footer-review__stars { display: flex; gap: 2px; }
.footer-review span { font-size: 0.83rem; color: rgba(255,255,255,0.65); }

.footer-kit__bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; gap: 1rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hours-contact-grid { grid-template-columns: 1fr; }
  .split-banner { grid-template-columns: 1fr; }
  .split-banner__img { aspect-ratio: 16/9; }
  .split-banner__content { padding: 3rem 2rem; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .footer-zone--brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-desktop, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .section { padding: 3.5rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }

  .hero__content { padding: 7rem 1.25rem 3.5rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; gap: 0.75rem; }

  .split-banner__content { padding: 2.5rem 1.5rem; }

  .form-row--split { grid-template-columns: 1fr; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; width: 100%; }

  .footer-kit__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kit__bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
}

/* ---- SCROLL ANIMATION ---- */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}
