/* ============================================
   360° Hausdoktor – Globales Stylesheet
   Design: Elegant & Vertrauensvoll
   ============================================ */

/* Google Fonts */
/* Schriftarten lokal gehostet – kein Datentransfer zu Google */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-display.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/open-sans.woff2') format('woff2');
}

/* ============================================
   CSS Custom Properties (Design-System)
   ============================================ */
:root {
  --navy:       #1c2b4a;
  --navy-mid:   #2d4a7a;
  --gold:       #d4a843;
  --gold-light: #e8c878;
  --gray-light: #f8f9fa;
  --gray:       #6c757d;
  --gray-mid:   #dee2e6;
  --text:       #2c3e50;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Open Sans', Arial, sans-serif;

  --radius:     6px;
  --shadow:     0 4px 20px rgba(28, 43, 74, 0.12);
  --shadow-lg:  0 8px 40px rgba(28, 43, 74, 0.18);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gray);
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(28, 43, 74, 0.1);
  transition: box-shadow var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

/* W-Logo für allgemeine Seiten (ohne Isabelle-Branding) */
.navbar__logo-w {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.navbar__logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.navbar__logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.navbar__cta {
  margin-left: 1rem;
}

/* Dropdown */
.navbar__has-dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.navbar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  min-width: 220px;
  z-index: 200;
  padding: 0.4rem 0;
}

.navbar__has-dropdown:hover .navbar__dropdown,
.navbar__has-dropdown:focus-within .navbar__dropdown {
  display: block;
}

.navbar__dropdown li {
  border-bottom: 1px solid var(--gray-mid);
}

.navbar__dropdown li:last-child {
  border-bottom: none;
}

.navbar__dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy) !important;
  border-bottom: none !important;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.navbar__dropdown li a:hover {
  background: var(--gray-light);
  color: var(--gold) !important;
}

/* Mobile nav group */
.navbar__mobile-group-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 0 0.25rem;
}

.navbar__mobile .navbar__mobile-sub {
  padding-left: 1rem;
  font-size: 0.95rem;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 1rem;
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-mid);
}

.navbar__mobile a:last-child {
  border-bottom: none;
}

.navbar__mobile a:hover {
  color: var(--gold);
}

/* ============================================
   Page Offset (for fixed navbar)
   ============================================ */
.page-content {
  padding-top: 72px;
}

/* ============================================
   Sidebar Layout
   ============================================ */
.layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  min-height: calc(100vh - 72px);
}

.sidebar {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 0;
}

.sidebar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 1.25rem 0.75rem;
  margin: 0;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.3;
}

.sidebar__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}

.sidebar__link.active {
  color: var(--white);
  background: rgba(212, 168, 67, 0.12);
  border-left-color: var(--gold);
}

/* Sidebar accordion */
.sidebar__accordion {
  border: none;
  margin: 0;
  padding: 0;
}
.sidebar__accordion > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  line-height: 1.3;
  user-select: none;
}
.sidebar__accordion > summary::-webkit-details-marker { display: none; }
.sidebar__accordion > summary::marker { display: none; }
.sidebar__accordion > summary:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}
.sidebar__accordion[open] > summary {
  color: var(--white);
}
.sidebar__accordion > summary .sidebar__acc-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.5;
  transition: transform var(--transition);
}
.sidebar__accordion[open] > summary .sidebar__acc-arrow {
  transform: rotate(90deg);
  opacity: 0.8;
}

.sidebar__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

.nav-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 3px;
}

.sidebar__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0.75rem 1.25rem;
}

.main-content {
  min-width: 0;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero .lead {
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.card__list {
  margin-top: 1rem;
}

.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--text);
}

.card__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   Partner / Zertifikate
   ============================================ */
.partner-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}

.partner-bar__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.partner-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.partner-badge .icon {
  font-size: 1.1rem;
}

/* ============================================
   Team Cards
   ============================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 2rem;
  text-align: center;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.2);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.team-card__name {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card__body {
  padding: 1.75rem 2rem;
}

.team-card__body p {
  color: var(--gray);
  font-size: 0.93rem;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
}

/* ============================================
   Coming Soon (Schwester-Vorbereitung)
   ============================================ */
.coming-soon {
  opacity: 0.55;
  position: relative;
  pointer-events: none;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  z-index: 10;
}

.coming-soon-wrapper {
  position: relative;
}

/* Section-level coming soon */
.section-coming-soon {
  position: relative;
  opacity: 0.6;
}

.section-coming-soon::after {
  content: 'Demnächst verfügbar';
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
}

/* ============================================
   Contact
   ============================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-card__value a:hover {
  color: var(--gold);
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(45, 74, 122, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ============================================
   Page Hero (Unterseiten)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.page-hero .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 1.25rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
}

/* ============================================
   Leistungen (Service sections)
   ============================================ */
.service-section {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}

.service-section h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-section p {
  color: var(--gray);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-mid);
}

.service-item h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   Info Box
   ============================================ */
.info-box {
  background: rgba(28, 43, 74, 0.05);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box.gold {
  background: rgba(212, 168, 67, 0.08);
  border-left-color: var(--gold);
}

.info-box p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__brand-sub {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

a[href^="tel:"] {
  white-space: nowrap;
}

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer__contact-item .icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom p {
  font-size: 0.8rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1000px) {
  .layout {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > *:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

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

  .sidebar {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: 500;
    overflow-y: auto;
  }

  .sidebar.open {
    display: block;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
