:root {
  --primary:       #034c48;
  --primary-light: #1f736f;
  --primary-pale:  #e8f2f1;
  --cream:         #f8f6f3;
  --charcoal:      #2a2a2a;
  --mid:           #5a5248;
  --sand:          #e8e4df;
  --white:         #ffffff;
  --radius:        18px;
  --radius-lg:     52px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', -apple-system, sans-serif;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --t:             0.35s;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  min-height: 52px;
  min-width: 160px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(3,76,72,0.22);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(3,76,72,0.32);
}
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-intro {
  max-width: 560px;
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 56px;
}
.centered { text-align: center; }
.centered .section-intro { margin: 0 auto 56px; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.header.scrolled {
  background: rgba(248,246,243,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  padding: 12px 0;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: color var(--t) var(--ease);
  white-space: nowrap;
}
.logo:hover { color: var(--primary-light); }

.nav { display: flex; gap: 36px; }
.nav a {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
  transition: color var(--t);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width var(--t) var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }

/* ── Desktop Instagram icon in header ── */
.header-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(3,76,72,0.25);
  transition: background var(--t), border-color var(--t), transform var(--t), color var(--t);
  flex-shrink: 0;
}
.header-instagram:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.header-phone {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--primary);
  white-space: nowrap;
  transition: opacity var(--t), color var(--t);
}
.header-phone:hover { opacity: 0.7; color: var(--primary-light); }

/* ── Mobile "Book" button in header ── */
.header-book-btn {
  display: none; /* hidden on desktop */
}
@media (max-width: 768px) {
  .header-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto; /* pushes to the right before the toggle */
    padding: 9px 18px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    border-radius: 30px;
    white-space: nowrap;
    transition: background var(--t), transform var(--t);
  }
  .header-book-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
  }
}

/* ── Mobile toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  z-index: 210;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), width var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav overlay (mobile backdrop) ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 198;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.nav-overlay.is-open { display: block; opacity: 1; }

/* ── Mobile nav panel ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-instagram { display: none; } /* hidden on mobile — shown in nav panel instead */

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 28px 36px;
    box-shadow: -4px 0 40px rgba(0,0,0,0.15);
    transition: transform var(--t) var(--ease);
    z-index: 200;
    transform: translateX(100%);
    gap: 0;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }

  /* Brand name at top of panel */
  .nav-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
    padding: 16px 0 20px;
    border-bottom: 1px solid rgba(3,76,72,0.12);
    margin-bottom: 8px;
    pointer-events: none; /* label, not a link */
  }

  .nav a {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav a:last-of-type { border-bottom: none; }

  /* Instagram link inside mobile panel */
  .nav-instagram {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 0 !important;
    border-bottom: none !important;
    color: var(--primary) !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }
  .nav-instagram:hover { opacity: 1; }
  .nav-instagram::after { display: none !important; }

  .header-phone { display: none; }
}

/* Hide mobile-only nav elements on desktop */
@media (min-width: 769px) {
  .nav-brand    { display: none; }
  .nav-instagram { display: none; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 28px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: var(--cream);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(3,76,72,0.08);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  animation: slowSpin 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(3,76,72,0.06);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  animation: heroImageIn 1s 0.2s var(--ease) both;
}
.hero-image {
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 680px;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-image:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 36px; right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  animation: badgeIn 0.8s 0.9s var(--ease) both;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-text {
  background: var(--white);
  padding: 56px 52px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.07);
  animation: heroTextIn 1s 0.4s var(--ease) both;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-text h1 em { font-style: italic; font-weight: 400; }
.hero-text p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn { flex: 1 1 auto; min-width: 180px; }

@media (max-width: 576px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; min-width: 0; }
}

@keyframes heroImageIn {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
@keyframes slowSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 991px) {
  .hero { min-height: auto; padding: 100px 20px 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { max-height: 480px; }
  .hero-badge { right: 16px; bottom: 24px; }
  .hero-orb { display: none; }
}
@media (max-width: 576px) {
  .hero-text { padding: 36px 28px; }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: 110px 28px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(3,76,72,0.04);
  top: -160px; right: -160px;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 52px 36px 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  border-radius: inherit;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(3,76,72,0.14); }
.service-card:hover::before { opacity: 1; }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-num { color: rgba(255,255,255,0.9); }
.service-card:hover .service-line { background: rgba(255,255,255,0.4); }
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(3,76,72,0.1);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  transition: color var(--t);
}
.service-card h3 {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  transition: color var(--t);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  position: relative;
  transition: color var(--t);
}
.service-line {
  width: 40px; height: 2px;
  background: var(--primary);
  margin-top: 24px;
  opacity: 0.4;
  position: relative;
  transition: background var(--t), width var(--t) var(--ease);
}
.service-card:hover .service-line { width: 60px; opacity: 1; }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery { padding: 110px 28px; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(even) {
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(3,76,72,0) 40%, rgba(3,76,72,0.72) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  border-radius: inherit;
}
.gallery-item-label {
  position: absolute;
  bottom: 24px; left: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
@media (max-width: 991px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .gallery-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { padding: 110px 28px; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(3,76,72,0.1);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.06;
  position: absolute;
  top: 12px; left: 20px;
  pointer-events: none;
}
.testimonial-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 20px;
}
.testimonial-icon svg { width: 100%; height: 100%; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  position: relative;
}

/* ── Reviewer divider ── */
.reviewer-divider {
  width: 40px;
  height: 1.5px;
  background: var(--primary);
  opacity: 0.2;
  margin: 20px 0 16px;
}

.reviewer-info { position: relative; }
.reviewer-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.reviewer-location {
  font-size: 0.8rem;
  color: var(--mid);
  opacity: 0.75;
}

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

/* ═══════════════════════════════════════
   BOOK
═══════════════════════════════════════ */
.book { padding: 110px 28px; background: var(--white); }
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.book-image {
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  aspect-ratio: 5/6;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 16px 56px rgba(0,0,0,0.1);
  transition: transform var(--t) var(--ease);
}
.book-image:hover { transform: scale(1.01); }
.book-form-card {
  background: var(--cream);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
}
.book-form-card > p {
  color: var(--mid);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.consult-form { display: flex; flex-direction: column; gap: 14px; }
.consult-form input,
.consult-form textarea {
  padding: 15px 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.consult-form input:focus,
.consult-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3,76,72,0.08);
}
.consult-form input::placeholder,
.consult-form textarea::placeholder { color: #aaa; }
.consult-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consult-form .btn { margin-top: 6px; align-self: flex-start; }
.form-success {
  display: none;
  padding: 18px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 12px;
  animation: fadeUp 0.4s var(--ease) both;
}
.form-success.is-visible { display: block; }
@media (max-width: 768px) {
  .book-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .book-form-card { padding: 32px 24px; }
  .consult-form input,
  .consult-form textarea { padding: 16px 18px; font-size: 16px; min-height: 48px; }
  .consult-form textarea { min-height: 120px; }
  .consult-form .btn { min-height: 52px; width: 100%; margin-top: 8px; }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  position: relative;
  padding: 110px 28px 130px;
  background: var(--cream);
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: var(--charcoal);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 0;
}
.contact h2 { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.contact-layout {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-layout .map-wrap { order: 1; }
.contact-layout .contact-info { order: 2; }
.map-wrap {
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 400px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-info {
  background: var(--charcoal);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  box-shadow: 0 16px 56px rgba(0,0,0,0.16);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
}
.contact-info p { margin-bottom: 18px; opacity: 0.85; font-size: 0.92rem; line-height: 1.7; }
.contact-info strong {
  opacity: 1;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-links a {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.social-links svg { width: 20px; height: 20px; }
@media (max-width: 991px) {
  .contact-layout { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .contact-layout .contact-info { order: 1; }
  .contact-layout .map-wrap { order: 2; }
  .contact::after { height: 120px; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 52px 28px 40px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-brand p {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--t);
}
.footer-brand p:hover { color: var(--primary-light); }
.footer-slogan {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 24px;
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--white); }
.footer p { font-size: 0.82rem; }
.footer-credit {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  transition: color var(--t);
}
.footer-credit:hover { color: rgba(255,255,255,0.75); }
@media (max-width: 480px) {
  .footer-nav { flex-direction: column; gap: 16px; }
}

/* ═══════════════════════════════════════
   SHARED ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}