/* ============================================
   BS Realestate – Modern CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  /* Farbpalette */
  --bg: #FAFAFA;
  --block: #FFFFFF;
  --block-alt: #F5F5F7;
  --text: #1A1A1A;
  --text-muted: #666666;
  --accent: #0D0D0D;
  --accent-hover: #333333;
  --gold: #C9A962;
  --gold-light: rgba(201, 169, 98, 0.1);
  
  /* Schatten & Effekte */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.2);
  
  /* Abstände & Radien */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  
  /* Transitionen */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ======= BASE STYLES ======= */
*, *::before, *::after { box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ======= NAVBAR ======= */
.nav { 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; 
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all 0.4s var(--ease);
}

/* Transparente Nav über Hero */
.nav.nav-transparent {
  background: rgba(0,0,0,0.15);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom-color: rgba(255,255,255,0.1);
}

.nav.nav-transparent .menu a,
.nav.nav-transparent .brand span {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.nav.nav-transparent .menu a:hover {
  background: rgba(255,255,255,.15);
}

.nav.nav-transparent .menu-toggle span {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.nav-inner { 
  max-width: 1280px; 
  margin: 0 auto; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 12px 24px;
  gap: 24px;
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 120px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}

.brand:hover img {
  transform: scale(1.05);
}

.brand span { 
  font-weight: 700; 
  white-space: nowrap;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.menu { 
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.menu a { 
  text-decoration: none; 
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  position: relative;
}

.menu a:hover { 
  background: rgba(0,0,0,.05);
}

.menu a.active { 
  background: var(--accent);
  color: #fff;
}

/* Hamburger Icon */
.menu-toggle { 
  display: none; 
  flex-direction: column; 
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span { 
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 860px) {
  .nav-inner { 
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  
  .menu-toggle { display: flex; }
  
  .menu { 
    display: none;
    width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    border-radius: var(--radius);
    padding: 12px;
    margin-top: 12px;
    box-shadow: var(--shadow);
    gap: 4px;
  }
  
  .nav.nav-transparent .menu {
    background: rgba(20,20,20,0.95);
  }
  
  .nav.nav-transparent .menu a {
    color: #fff;
    text-shadow: none;
  }
  
  .menu.open { 
    display: flex;
    animation: slideDown 0.3s var(--ease-bounce);
  }
  
  .menu a { 
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======= GENERIC SECTIONS & BLOCKS ======= */
.section { 
  padding: 100px 24px;
  position: relative;
}

.container { 
  max-width: 1280px;
  margin: 0 auto;
}

.block { 
  background: var(--block);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
}

/* Buttons */
.btn { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover { 
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active { 
  transform: translateY(0);
}

.btn-light { 
  background: #fff;
  color: var(--text);
  border: 2px solid #fff;
}

.btn-light:hover { 
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #D4B872;
  border-color: #D4B872;
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ======= HERO / STARTSEITE ======= */
.hero { 
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -96px;
  padding-top: 96px;
}

.hero::before { 
  content: "";
  position: absolute;
  inset: 0;
  background: url('modern-house.jpg') center center/cover no-repeat;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.hero:hover::before {
  transform: scale(1.06);
}

.hero::after { 
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0,0,0,0.4), transparent),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-content { 
  position: relative;
  z-index: 1;
  padding: 12vh 24px 16vh;
}

.hero-text {
  max-width: 800px;
}

.hero-text .eyebrow { 
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
  color: var(--gold);
  padding: 8px 16px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.tagline { 
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: clamp(42px, 8vw, 80px);
  line-height: 1.05;
  margin: 0 0 20px 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.subtle { 
  color: rgba(255,255,255,0.9);
  margin: 0 0 36px 0;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
  max-width: 55ch;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
  font-weight: 400;
}

@media (max-width: 540px) {
  .hero { min-height: 90vh; }
  .hero-content { padding: 10vh 16px 14vh; }
  .tagline { font-size: clamp(32px, 10vw, 48px); }
}

/* ======= ÜBER UNS ======= */
.grid-2 { 
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 960px) { 
  .grid-2 { grid-template-columns: 1fr; }
}

.about-title { 
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 24px;
  color: var(--text);
}

.about-title span {
  background: linear-gradient(135deg, var(--text) 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-logo { 
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Team/Leader Cards */
.leaders { 
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 720px) { 
  .leaders { grid-template-columns: 1fr; }
}

.leader { 
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--block);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: all 0.3s var(--ease);
}

.leader:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.leader img { 
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.leader h4 { 
  margin: 0 0 8px;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

.leader p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

/* Karte */
.karte { 
  background: var(--block);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0,0,0,.04);
}

.karte img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.karte:hover img {
  transform: scale(1.03);
}

/* ======= LEISTUNGEN ======= */
.services-grid { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 960px) { 
  .services-grid { grid-template-columns: 1fr; }
}

.btn-LEISTUNGEN { 
  margin: 24px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.btn-LEISTUNGEN:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.bullets { 
  background: var(--block);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
}

.bullets h3 { 
  margin: 0 0 20px;
  font-size: 24px;
}

.bullets ul { 
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.bullets li { 
  padding-left: 32px;
  position: relative;
  margin: 14px 0;
  font-size: 16px;
}

.bullets li::before { 
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.bullets p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Service Image Card */
.service-image { 
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--block);
  min-height: 400px;
  display: grid;
  place-items: center;
}

.service-image img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-overlay { 
  position: absolute;
  inset: auto 20px 20px auto;
}

/* Hero-Style für Content-Bereiche */
.section-hero-text {
  color: #fff;
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  max-width: 70%;
}

.section-hero-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.1;
  margin: 0 0 8px 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.section-hero-text p {
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
  margin: 0;
  text-transform: none;
}

.section-hero-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease);
  z-index: 3;
  font-size: 15px;
}

.section-hero-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* ======= REFERENZEN SLIDER ======= */
.ref-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: var(--shadow-lg);
}

.ref-slider .slide-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s var(--ease);
}

.ref-slider .slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 32px 24px;
  color: #fff;
  background: linear-gradient(
    180deg, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.5) 70%,
    rgba(0,0,0,0.85) 100%
  );
}

.ref-slider .caption {
  text-align: center;
  margin-bottom: 20px;
}

.ref-slider h4 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.ref-slider p {
  margin: 8px 0 0;
  opacity: 0.85;
  font-size: clamp(14px, 2vw, 16px);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ref-slider .pdf-btn {
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: all 0.3s var(--ease);
  margin-bottom: 16px;
}

.ref-slider .pdf-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.ref-slider .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.ref-slider .slider-nav:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-gold);
}

.ref-slider .slider-nav.prev { left: 24px; }
.ref-slider .slider-nav.next { right: 24px; }

/* Slide Indicators - oben positioniert */
.slide-indicators {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
  padding: 10px 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.indicator.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.indicator:hover:not(.active) {
  background: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .ref-slider { 
    aspect-ratio: 4/3;
    min-height: 280px;
  }
  .ref-slider .slider-nav { 
    width: 42px; 
    height: 42px; 
    font-size: 20px; 
  }
  .ref-slider .slider-nav.prev { left: 12px; }
  .ref-slider .slider-nav.next { right: 12px; }
  .slide-indicators { 
    top: 16px;
    gap: 10px;
    padding: 8px 14px;
  }
  .indicator {
    width: 8px;
    height: 8px;
  }
  .ref-slider .pdf-btn {
    margin-bottom: 12px;
    padding: 12px 24px;
  }
}

/* ======= MODAL ======= */
.modal-backdrop { 
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal { 
  background: var(--block);
  width: min(94vw, 960px);
  height: min(85vh, 760px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.4s var(--ease-bounce);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal header { 
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--block-alt);
}

.modal header h4 { 
  margin: 0;
  font-size: 18px;
}

.modal .content { 
  flex: 1;
  min-height: 0;
}

.modal .content iframe,
.modal .content object { 
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======= KONTAKT ======= */
#contact .block { 
  padding: 36px 32px;
  overflow: hidden;
}

#contact form { 
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

#contact form .full { grid-column: 1 / -1; }
#contact form > div { min-width: 0; }

#contact label { 
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

#contact input,
#contact textarea,
#contact button {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
}

#contact input,
#contact textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,.1);
  background: var(--block-alt);
  color: var(--text);
  font-size: 15px;
  margin: 0;
  transition: all 0.25s var(--ease);
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

#contact textarea { 
  resize: vertical;
  min-height: 140px;
}

#contact input:focus,
#contact textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px var(--gold-light);
  outline: none;
}

/* File Upload */
#contact input[type="file"] {
  padding: 12px;
  background: var(--block-alt);
  cursor: pointer;
}

#contact small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* DSGVO Consent */
#contact .consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

#contact .consent input[type="checkbox"] { 
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

#contact .consent a { 
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#contact .consent a:hover {
  color: var(--accent);
}

/* Button Row */
#contact form .full:last-child { 
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 8px;
}

#contact .btn { 
  padding: 14px 32px;
}

#contact .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Calendly Box */
.calendly-box {
  background: linear-gradient(135deg, var(--block) 0%, var(--block-alt) 100%);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold-light);
  position: relative;
  overflow: hidden;
}

.calendly-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, #D4B872 100%);
}

.calendly-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.calendly-icon {
  font-size: 28px;
}

.calendly-box h4 {
  margin: 0;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

.calendly-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.calendly-btn {
  width: 100%;
}

/* Map Box */
#contact .map-placeholder { 
  background: var(--block);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

#contact .map-placeholder p {
  max-width: 40ch;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

/* Responsive Contact */
@media (max-width: 960px) {
  #contact .grid-2 { grid-template-columns: 1fr !important; }
}

@media (max-width: 760px) {
  #contact .block { padding: 24px 20px; }
  #contact form { grid-template-columns: 1fr; }
  #contact .btn { width: 100%; }
}

/* ======= FOOTER ======= */
footer { 
  padding: 40px 24px;
  background: var(--block);
  border-top: 1px solid rgba(0,0,0,.06);
}

.footer-inner { 
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner small {
  color: var(--text-muted);
}

.links { 
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.links a { 
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.links a:hover { 
  color: var(--gold);
}

/* ======= ANIMATIONS ======= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ======= NOTIFICATIONS ======= */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 48px 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--block);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  max-width: 400px;
  font-size: 15px;
  transform: translateX(120%);
  transition: transform 0.4s var(--ease-bounce);
  border-left: 4px solid var(--accent);
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: #22c55e;
}

.notification-error {
  border-left-color: #ef4444;
}

.notification button {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}

.notification button:hover {
  color: var(--text);
}

/* ======= UTILITY CLASSES ======= */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.bg-gold { background: var(--gold); }

.display-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 16px 0;
}

/* ======= SELECTION ======= */
::selection {
  background: var(--gold);
  color: #fff;
}

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.2);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,.35);
}
