/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #08111F; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TOKENS ===== */
:root {
  --navy: #08111F;
  --navy2: #17223A;
  --gold: #C89A3D;
  --gold-soft: #E2C079;
  --sand: #F8F6F1;
  --white: #FFFFFF;
  --border: #E5E6EA;
  --muted: #6A6E78;
  --max: 1280px;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.1; }
h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.6rem; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ===== EYEBROW ===== */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.25s ease; border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy2); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===========================
   HEADER
=========================== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}
#header.transparent { background: transparent; }
#header.solid { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
#header.solid .header-inner { border-bottom: none; }

.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: height 0.35s ease;
}
#header.solid .header-inner { height: 64px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { color: var(--gold); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; color: var(--white); }
.logo-name span { color: var(--gold); }
.logo-tagline { font-size: 0.58rem; letter-spacing: 0.18em; color: var(--gold); font-weight: 400; text-transform: uppercase; margin-top: 1px; }

nav { display: flex; align-items: center; gap: 40px; }
nav a { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; position: relative; padding-bottom: 2px; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--gold); }
nav a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--gold); }

.header-cta { font-size: 0.7rem; padding: 12px 22px; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 99; flex-direction: column;
  padding: 40px 24px; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; color: var(--white); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

@media (max-width: 900px) {
  nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { padding: 0 24px; }
}

/* ===========================
   HOME — HERO
=========================== */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1800&q=80');
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,17,31,0.92) 0%, rgba(8,17,31,0.65) 100%); }

.hero-content { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 48px; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.68rem; letter-spacing: 0.22em; color: var(--gold); font-weight: 600; text-transform: uppercase; }

.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 400; color: var(--white); line-height: 1.08; margin-bottom: 28px; max-width: 760px; }
.hero-title em { color: var(--gold); font-style: italic; }

.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 480px; margin-bottom: 44px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  max-width: 680px;
}
.stat { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 500; }

@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ===========================
   HOME — ABOUT
=========================== */
#about { padding: 120px 0; background: var(--white); }
.about-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute; bottom: 40px; left: -24px;
  background: var(--gold); padding: 28px 32px; max-width: 220px;
}
.about-badge-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 6px; }
.about-badge-sub { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(8,17,31,0.65); font-weight: 600; }

.about-text .eyebrow { margin-bottom: 20px; }
.about-text h2 { margin-bottom: 28px; color: var(--navy); }
.about-text p { font-size: 1rem; line-height: 1.8; color: #3a3f4a; margin-bottom: 36px; }

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--navy); line-height: 1.5; }
.check-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--gold); }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .about-badge { left: 0; bottom: -24px; }
  #about { padding: 80px 0 100px; }
}

/* ===========================
   HOME — SERVICES
=========================== */
#services { padding: 120px 0; background: var(--sand); }
.section-header { max-width: var(--max); margin: 0 auto; padding: 0 48px 64px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { max-width: 640px; }

.services-grid { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.service-card { background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.service-img-wrap { overflow: hidden; height: 260px; position: relative; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img { transform: scale(1.06); }

.service-icon-wrap { background: var(--white); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; margin: -26px 0 0 24px; position: relative; z-index: 2; border: 1px solid var(--border); }
.service-icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }

.service-body { padding: 24px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.service-list { flex: 1; }
.service-list li { font-size: 0.85rem; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.service-list li::before { content: '·'; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.service-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.service-cta:hover { color: var(--gold); border-color: var(--gold); }
.service-cta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }
  .section-header { padding: 0 24px 48px; }
  #services { padding: 80px 0; }
}

/* ===========================
   HOME — PROJECTS
=========================== */
#projects { padding: 120px 0; background: var(--white); }
.projects-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 4px;
}
.project-card { position: relative; overflow: hidden; cursor: pointer; }
.project-card:first-child { grid-row: 1 / 2; }
.project-card:nth-child(3) { grid-row: 1 / 3; }

.project-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform 0.6s ease; display: block; }
.project-card:hover .project-img { transform: scale(1.06); }

.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,31,0.85) 0%, transparent 55%); }
.project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px; }
.project-cat { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; margin-bottom: 6px; }
.project-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--white); }

.project-card-tall .project-img { min-height: 560px; }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; gap: 4px; padding: 0 24px; }
  .project-card:nth-child(3) { grid-row: auto; }
  .project-card-tall .project-img { min-height: 280px; }
  #projects { padding: 80px 0; }
}

/* ===========================
   HOME — WHY US
=========================== */
#why { padding: 120px 0; background: var(--navy); }
#why .section-header { padding-bottom: 64px; }
#why .section-header .eyebrow { color: var(--gold); }
#why .section-header h2 { color: var(--white); }

.why-grid { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.08); }
.why-card { padding: 48px 36px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.why-card:nth-child(3), .why-card:nth-child(6) { border-right: none; }
.why-card:nth-child(4), .why-card:nth-child(5), .why-card:nth-child(6) { border-bottom: none; }
.why-icon { width: 44px; height: 44px; border: 1px solid rgba(200,154,61,0.4); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.why-icon svg { width: 18px; height: 18px; color: var(--gold); }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.why-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; padding: 0 24px; border: none; }
  .why-card { border: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 36px 0; }
  .why-card:last-child { border-bottom: none; }
  #why { padding: 80px 0; }
}

/* ===========================
   HOME — COVERAGE
=========================== */
#coverage { padding: 120px 0; background: var(--sand); }
.coverage-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coverage-text .eyebrow { margin-bottom: 20px; }
.coverage-text h2 { margin-bottom: 24px; }
.coverage-text p { font-size: 0.95rem; line-height: 1.8; color: #3a3f4a; margin-bottom: 40px; max-width: 480px; }

.coverage-chips { display: grid; grid-template-columns: repeat(3, auto); gap: 10px; justify-content: flex-start; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border: 1px solid var(--border); background: var(--white); font-size: 0.82rem; font-weight: 500; color: var(--navy); }
.chip svg { width: 14px; height: 14px; color: var(--gold); }

.coverage-map { position: relative; display: flex; align-items: center; justify-content: center; height: 320px; }
.map-blob-1 { position: absolute; width: 260px; height: 180px; background: var(--gold); border-radius: 50% 45% 55% 40% / 55% 45% 55% 50%; left: 20px; top: 60px; opacity: 0.85; }
.map-blob-2 { position: absolute; width: 240px; height: 190px; background: var(--navy); border-radius: 45% 55% 45% 55% / 55% 45% 60% 45%; right: 20px; top: 40px; }
.map-dots { position: absolute; inset: 0; }
.map-dot { position: absolute; display: flex; align-items: center; gap: 8px; }
.map-dot-circle { width: 8px; height: 8px; border-radius: 50%; background: var(--white); flex-shrink: 0; }
.map-dot-label { font-size: 0.75rem; color: var(--white); font-weight: 500; white-space: nowrap; }

@media (max-width: 900px) {
  .coverage-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .coverage-map { display: none; }
  #coverage { padding: 80px 0; }
}

/* ===========================
   HOME — TESTIMONIALS
=========================== */
#testimonials { padding: 120px 0; background: var(--white); }
.testi-grid { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--sand); padding: 36px; position: relative; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testi-stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.testi-quote-icon { position: absolute; top: 28px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold-soft); opacity: 0.4; line-height: 1; }
.testi-text { font-size: 0.95rem; line-height: 1.75; color: #3a3f4a; font-style: italic; margin-bottom: 28px; }
.testi-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.testi-author { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.testi-role { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; padding: 0 24px; }
  #testimonials { padding: 80px 0; }
}

/* ===========================
   HOME — FINAL CTA
=========================== */
#cta-final {
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1600&q=80');
  background-size: cover; background-position: center;
  position: relative;
}
#cta-final::before { content: ''; position: absolute; inset: 0; background: rgba(8,17,31,0.88); }
.cta-final-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 48px; text-align: center; }
.cta-final-inner .eyebrow { justify-content: center; }
.cta-final-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-final-inner p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; margin: 0 auto 48px; line-height: 1.7; }
.cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-phone { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 0.85rem; font-weight: 500; transition: all 0.25s; }
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-phone svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .cta-final-inner { padding: 0 24px; } #cta-final { padding: 80px 0; } }

/* ===========================
   FOOTER
=========================== */
footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { margin-bottom: 20px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 320px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 20px; }
.footer-col p, .footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 2; display: block; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 24px 48px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-tagline { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; padding: 0 24px 48px; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
}

/* ===========================
   CONTACT PAGE
=========================== */
#contact-page { padding-top: 72px; }
.contact-hero { background: var(--navy); padding: 100px 48px 80px; text-align: center; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1400&q=70'); background-size: cover; background-position: center; opacity: 0.15; }
.contact-hero-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.contact-hero .eyebrow { justify-content: center; }
.contact-hero h1 { color: var(--white); margin-bottom: 20px; }
.contact-hero h1 em { color: var(--gold); font-style: italic; }
.contact-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; max-width: 460px; margin: 0 auto 40px; }
.contact-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.contact-body { background: var(--sand); padding: 80px 48px; }
.contact-body-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 48px; }

/* Form */
.contact-form-card { background: var(--white); padding: 48px; }
.contact-form-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.contact-form-card .form-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border); padding: 14px 16px; font-size: 0.88rem; font-family: 'Inter', sans-serif;
  color: var(--navy); background: var(--white); outline: none; border-radius: 0;
  transition: border-color 0.2s; appearance: none; -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A6E78' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-info { background: var(--navy); padding: 40px; }
.sidebar-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--white); margin-bottom: 32px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 40px; height: 40px; border: 1px solid rgba(200,154,61,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 16px; height: 16px; color: var(--gold); }
.info-label { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.info-val { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.info-val strong { color: var(--white); display: block; }

.sidebar-advantages { background: var(--white); border: 1px solid var(--border); padding: 32px; }
.sidebar-advantages h4 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.adv-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--border); }
.adv-item:last-child { border-bottom: none; }
.adv-check { width: 18px; height: 18px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.adv-check svg { width: 10px; height: 10px; color: var(--gold); }

.contact-map { width: 100%; border: none; display: block; filter: grayscale(20%); }

@media (max-width: 900px) {
  .contact-body { padding: 48px 24px; }
  .contact-body-inner { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero { padding: 80px 24px 60px; }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.7s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
