/*
Theme Name: Elisabeth Brillant
Theme URI: https://www.elisabethbrillant.fr
Author: Elisabeth Brillant
Author URI: https://www.elisabethbrillant.fr
Description: Thème personnalisé pour Elisabeth Brillant — Voyante, Médium, Marseille
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elisabethbrillant
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --color-body-bg: #140327;
  --color-section-bg: #1A0535;
  --color-accent-dark: #2D0A4E;
  --color-pink: #F496FD;
  --color-white: #FFFFFF;
  --color-body-text: #CCCCCC;
  --color-muted: #AAAAAA;
  --color-shadow: #EA23FC;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   1. Reset / Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--color-body-bg);
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-white);
  margin: 0;
}

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

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   2. Accessibility
   ========================================================================== */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  left: -9999px;
  padding: 8px 16px;
  position: absolute;
  top: -9999px;
  z-index: 999;
}

.skip-link:focus-visible {
  left: 8px;
  top: 8px;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 60px 120px;
}

.section--dark {
  background: var(--color-body-bg);
}

.section--card {
  background: var(--color-section-bg);
}

.flex {
  display: flex;
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ==========================================================================
   4. Navigation (.site-header)
   ========================================================================== */

.site-header {
  background: var(--color-section-bg);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  border-bottom: 1px solid var(--color-accent-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-white);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-body-text);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
  color: var(--color-pink);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone a {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-pink);
}

.nav-phone i {
  font-size: 16px;
  color: var(--color-pink);
}

/* Mobile nav toggle */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-pink);
  padding: 0;
}

.mobile-nav {
  display: none;
}

/* ==========================================================================
   5. Footer (.site-footer)
   ========================================================================== */

.site-footer {
  background: var(--color-pink);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  border-top: 1px solid var(--color-accent-dark);
}

.footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
}

.footer-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-menu li a {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-menu li a:hover {
  opacity: 0.8;
}

.footer-menu li.current-menu-item a,
.footer-menu li.current_page_item a {
  font-weight: 700;
}

/* ==========================================================================
   6. Hero Sections
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, var(--color-body-bg), var(--color-accent-dark));
  padding: 40px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.hero--home {
  height: 580px;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--color-pink);
}

.hero__subtitle {
  font-size: 15px;
  color: var(--color-body-text);
}

.hero--home .hero__title {
  font-size: 88px;
  line-height: 0.85;
  color: var(--color-white);
}

.hero--home .hero__title span {
  color: var(--color-pink);
}

.hero__content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__portrait {
  width: 380px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px -10px rgba(234, 35, 252, 0.27);
}

/* ==========================================================================
   7. Badge
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--color-body-bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
}

/* ==========================================================================
   8. Stats Row
   ========================================================================== */

.stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--color-body-bg);
  border: 1px solid var(--color-pink);
  box-shadow: 0 4px 16px -2px rgba(234, 35, 252, 0.13);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-pink);
}

.stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   9. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 4px;
  border: 1px solid var(--color-pink);
}

.btn--secondary:hover {
  background: rgba(244, 150, 253, 0.1);
}

.btn--full {
  width: 100%;
  justify-content: center;
  border-radius: 25px;
  height: 50px;
  font-size: 15px;
  font-weight: 700;
}

.btn--location {
  padding: 18px 36px;
}

/* ==========================================================================
   10. Cards
   ========================================================================== */

/* General card */

.card {
  background: var(--color-section-bg);
  border-radius: 20px;
  box-shadow: 0 8px 30px -4px rgba(234, 35, 252, 0.13);
  padding: 40px;
}

.card--body {
  border-radius: 24px;
  padding: 60px 80px;
}

/* Consultation card */

.card-service {
  background: var(--color-section-bg);
  border-radius: 20px;
  box-shadow: 0 8px 40px -4px rgba(234, 35, 252, 0.13);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-service__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-service__icon i {
  font-size: 24px;
  color: var(--color-pink);
}

.card-service__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-pink);
}

.card-service__hours {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
}

.card-service__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body-text);
}

.card-service__note {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
}

/* Award card */

.card-award {
  background: var(--color-section-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px -2px rgba(234, 35, 252, 0.13);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.card-award__star {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-pink);
  flex-shrink: 0;
}

.card-award__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
}

.card-award__subtitle {
  font-size: 12px;
  color: var(--color-muted);
}

/* Zodiac card */

.card-zodiac {
  background: var(--color-section-bg);
  border-radius: 12px;
  box-shadow: 0 4px 16px -2px rgba(234, 35, 252, 0.13);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-zodiac__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-pink);
}

.card-zodiac__dates {
  font-size: 11px;
  color: var(--color-muted);
}

.card-zodiac__desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-body-text);
}

/* Press article card */

.card-article {
  background: var(--color-section-bg);
  border-radius: 20px;
  box-shadow: 0 8px 30px -4px rgba(234, 35, 252, 0.13);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.card-article__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-article__icon i {
  font-size: 28px;
  color: var(--color-pink);
}

.card-article__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
}

.card-article__source {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
}

.card-article__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body-text);
}

/* Contact info card */

.card-contact {
  background: var(--color-section-bg);
  border-radius: 16px;
  border: 1px solid var(--color-accent-dark);
  box-shadow: 0 4px 24px -2px rgba(234, 35, 252, 0.13);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row__icon i {
  font-size: 18px;
  color: var(--color-pink);
}

.info-row__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
}

.info-row__value {
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.6;
}

/* Legal section card */

.card-legal {
  background: var(--color-section-bg);
  border-radius: 16px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-legal__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-pink);
}

.card-legal__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-body-text);
}

/* ==========================================================================
   11. Icon Circle (reusable)
   ========================================================================== */

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-dark);
  flex-shrink: 0;
}

.icon-circle--sm {
  width: 40px;
  height: 40px;
}

.icon-circle--md {
  width: 56px;
  height: 56px;
}

.icon-circle--lg {
  width: 60px;
  height: 60px;
}

/* ==========================================================================
   12. Quote Section
   ========================================================================== */

.quote-section {
  background: var(--color-body-bg);
  padding: 80px 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.quote-section__icon {
  font-size: 40px;
  color: var(--color-pink);
  opacity: 0.6;
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-white);
  max-width: 900px;
}

.quote-section__author {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   13. Inline Quote Block (A Propos)
   ========================================================================== */

.quote-block {
  background: var(--color-body-bg);
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 3px solid var(--color-pink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  font-style: italic;
}

.quote-block__author {
  font-size: 12px;
  color: var(--color-body-text);
}

/* ==========================================================================
   14. Divider
   ========================================================================== */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.divider__line {
  width: 40px;
  height: 1px;
  background: var(--color-pink);
}

.divider__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-pink);
}

/* ==========================================================================
   15. Forms (Contact Form 7 overrides)
   ========================================================================== */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  background: var(--color-accent-dark);
  border: 1px solid var(--color-pink);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 2px rgba(244, 150, 253, 0.2);
}

.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-body-text);
  display: block;
  margin-bottom: 8px;
}

.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
  text-decoration: none;
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

/* ==========================================================================
   16. Section Titles
   ========================================================================== */

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-white);
}

.section-title--pink {
  color: var(--color-pink);
}

.section-title--sm {
  font-size: 36px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-body-text);
  margin-top: 8px;
}

/* ==========================================================================
   17. CTA Section (mobile)
   ========================================================================== */

.cta-section {
  background: var(--color-section-bg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ==========================================================================
   18. Map Section
   ========================================================================== */

.map-section {
  position: relative;
}

.map-section__image {
  width: 100%;
  border-radius: 16px;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 8px 30px -4px rgba(234, 35, 252, 0.13);
}

.map-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 3, 39, 0.8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   19. About Section (Home)
   ========================================================================== */

.about-section {
  background: var(--color-section-bg);
  display: flex;
  gap: 80px;
  padding: 60px 80px;
  border-radius: 24px;
  box-shadow: 0 8px 40px -4px rgba(0, 0, 0, 0.08);
}

.about-section__image {
  width: 360px;
  height: 480px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 20px 60px -10px rgba(234, 35, 252, 0.27);
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================================================================
   20. Page-specific: Palmares
   ========================================================================== */

.awards-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   21. Page-specific: Astrologie
   ========================================================================== */

.zodiac-intro {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-pink);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ==========================================================================
   22. Page-specific: Mentions Légales
   ========================================================================== */

.legal-layout {
  display: flex;
  gap: 60px;
}

.legal-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-sidebar {
  width: 340px;
  flex-shrink: 0;
}

/* ==========================================================================
   23. Page-specific: Contact layout
   ========================================================================== */

.contact-layout {
  display: flex;
  gap: 60px;
}

.contact-form-col {
  flex: 1;
}

.contact-info-col {
  width: 440px;
  flex-shrink: 0;
}

/* ==========================================================================
   24. Responsive (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

  /* Navigation */
  .site-header {
    height: 56px;
    padding: 0 20px;
  }

  .site-logo {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--color-pink);
  }

  .nav-menu {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile menu overlay */
  .mobile-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-section-bg);
    z-index: 99;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-body-text);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-accent-dark);
    display: block;
  }

  .mobile-nav a:hover,
  .mobile-nav .current-menu-item a {
    color: var(--color-pink);
  }

  /* Footer */
  .site-footer {
    height: auto;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    text-align: center;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-menu {
    gap: 16px;
  }

  .footer-menu li a {
    font-size: 11px;
  }

  /* Hero */
  .hero {
    padding: 40px 20px;
  }

  .hero--home {
    height: auto;
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
    padding: 40px 24px;
  }

  .hero--home .hero__content {
    max-width: 100%;
    align-items: center;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero--home .hero__title {
    font-size: 52px;
  }

  .hero__portrait {
    width: 160px;
    height: 180px;
    border-radius: 16px;
  }

  /* Stats */
  .stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Buttons */
  .btn--primary,
  .btn--secondary {
    width: 100%;
    justify-content: center;
  }

  /* Sections */
  .section {
    padding: 40px 20px;
  }

  .container {
    padding: 0 20px;
  }

  /* Cards */
  .card--body {
    padding: 24px 20px;
    flex-direction: column;
    gap: 24px;
  }

  .card-service {
    padding: 24px;
  }

  .card-article {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .card-award {
    padding: 16px 20px;
  }

  /* About section */
  .about-section {
    flex-direction: column;
    padding: 24px 20px;
    gap: 24px;
  }

  .about-section__image {
    width: 100%;
    height: 280px;
  }

  /* Quote */
  .quote-section {
    padding: 40px 20px;
  }

  .quote-section__text {
    font-size: 24px;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .zodiac-grid {
    grid-template-columns: 1fr;
  }

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

  /* Legal */
  .legal-layout {
    flex-direction: column;
  }

  .legal-sidebar {
    width: 100%;
  }

  /* Contact */
  .contact-layout {
    flex-direction: column;
  }

  .contact-info-col {
    width: 100%;
  }

  /* CTA Section mobile */
  .cta-section {
    padding: 24px 20px;
  }

  /* Location section mobile */
  .location-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  /* Map layout mobile */
  .map-layout {
    flex-direction: column;
    gap: 24px;
  }
  .map-layout__info {
    width: 100%;
  }
  .map-layout__map {
    width: 100%;
  }
}

/* ==========================================================================
   Homepage Pencil-exact overrides
   ========================================================================== */

/* Hero home: 2-column */
.hero--home {
  min-height: 620px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 120px;
  gap: 80px;
  text-align: left;
}

.hero__content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__title--home {
  font-size: 88px;
  font-weight: 300;
  line-height: 0.85;
  margin: 0;
}

.hero__title--pink {
  color: var(--color-pink);
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-body-text);
  max-width: 520px;
  margin: 0;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero__portrait {
  width: 380px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px -10px rgba(234, 35, 252, 0.27);
  flex-shrink: 0;
}

/* About section: text LEFT, image RIGHT */
.about-section {
  display: flex;
  gap: 80px;
  padding: 60px 80px;
  background: var(--color-section-bg);
  border-radius: 24px;
  box-shadow: 0 8px 40px -4px rgba(0, 0, 0, 0.08);
  align-items: stretch;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 600px;
  flex-shrink: 0;
}

.about-section__image {
  width: 400px;
  height: 520px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 20px 60px -10px rgba(234, 35, 252, 0.27);
}

/* Location section */
.location-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.location-section__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 420px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Map layout: info left 480px, image right 680px */
.map-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.map-layout__info {
  width: 480px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-layout__map {
  flex: 1;
}

.map-section__image {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 30px -4px rgba(234, 35, 252, 0.13);
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  border: none;
}

/* Mobile overrides for homepage */
@media (max-width: 768px) {
  .hero--home {
    height: auto;
    flex-direction: column-reverse;
    padding: 40px 24px;
    gap: 24px;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
    align-items: center;
  }
  .hero__title--home {
    font-size: 52px;
  }
  .hero__desc {
    max-width: 320px;
    font-size: 13px;
  }
  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__portrait {
    width: 160px;
    height: 180px;
    border-radius: 16px;
  }
  .stats {
    justify-content: center;
  }
  .about-section {
    flex-direction: column;
    padding: 24px 20px;
    gap: 24px;
  }
  .about-section__content {
    width: 100%;
  }
  .about-section__image {
    width: 100%;
    height: 280px;
  }
  .location-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .location-section__info {
    width: 100%;
  }
  .map-layout {
    flex-direction: column;
    gap: 24px;
  }
  .map-layout__info {
    width: 100%;
  }
  .map-section__image {
    height: 200px;
  }
}
