/* ============================================
   SALGUEIRO ADVOCACIA — stylesheet
   ============================================ */

/* --- Custom Fonts --- */
@font-face {
  font-family: 'Agenda One Condensed';
  src: url('../fonts/Agenda-One-Condensed-Light-Italic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  --navy:       #003354;
  --navy-dark:  #002640;
  --blue-mid:   #93adc2;
  --blue-light: #b8d3d9;
  --gold:       #b7a289;
  --gold-light: #c9b89e;
  --gray-light: #f2f2f2;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-body:  #4a4a5a;
  --text-muted: #7a7a8a;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-quote:   'Montserrat', sans-serif;
  --font-accent:  'Agenda One Condensed', 'Montserrat', sans-serif;

  --header-h: 90px;
  --section-py: 100px;
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow: 0 8px 30px rgba(0,51,84,0.08);
  --shadow-lg: 0 16px 50px rgba(0,51,84,0.12);
  --border-gold: 2px solid var(--gold);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text-body); background: var(--gray-light); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; color: var(--text-dark); line-height: 1.2; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--section-py) 0; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-40 { gap: 40px; }
.gap-50 { gap: 50px; }

/* --- Overlines (FIX: removido composes:, propriedades aplicadas diretamente) --- */
.section-header .overline,
.about-text .overline,
.profile-info .overline {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header .overline { margin-bottom: 16px; }

.hero .overline {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: #b7a289;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.section-header p {
  max-width: 100%;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-header.light .overline { color: var(--gold-light); }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 16px auto; }



/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(183,162,137,0.4); }
.btn-outline { border: var(--border-gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* --- Card base --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.header-top {
  background: var(--navy);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.7); }
.header-top a:hover { color: var(--gold); }
.header-top-left { display: flex; gap: 24px; }
.header-top-left span, .header-top-left a { display: inline-flex; align-items: center; gap: 6px; }
.header-top-right { display: flex; gap: 16px; }
.header-top-right a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.header-top-right a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.header-main { height: var(--header-h); display: flex; align-items: center; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.site-logo img { height: 70px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  display: block; padding: 10px 14px;
  font-family: var(--font-display); font-size: 0.70rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy);
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 18px; right: 18px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-cta .btn { padding: 6px 15px; font-size: 0.62rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all var(--transition); border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all var(--transition); }
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   HERO (FIX: adicionado padding-top para header fixo)
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  background-color: var(--navy); overflow: hidden;
  padding-top: var(--header-h);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,51,84,0.92) 0%, rgba(0,38,64,0.85) 50%, rgba(0,26,44,0.78) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.hero p { font-family: var(--font-accent); font-weight: 300; font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 540px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-page { min-height: 420px; padding-top: var(--header-h); }
.hero-page .hero-content { text-align: center; max-width: 700px; margin: 0 auto; }
.hero-page h1 { font-size: clamp(2rem, 5vw, 3rem); }
.hero-page .breadcrumb { margin-top: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.hero-page .breadcrumb a { color: var(--gold); }
.hero-page .breadcrumb a:hover { text-decoration: underline; }
.hero-page .breadcrumb span { margin: 0 8px; }

/* ============================================
   ABOUT
   ============================================ */
.about-preview { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; border: 3px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--navy); margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 10px; }

/* Stats */
.stats-row { background: var(--navy); padding: 60px 0; }


/* Stats / CTA institucional */
.stats-row {
  background: var(--navy);
  padding: 80px 0;
}
.stats-cta-text {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* Heading animation */
.heading-animation .animated-paragraph {
  overflow: hidden;
}
.heading-animation .paragraph-inner {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.heading-animation.is-visible .paragraph-inner {
  transform: translateY(0);
  opacity: 1;
}



/* ============================================
   HEADING ANIMATION — Style 2 (Legaro-like)
   ============================================ */
.heading-animation .line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}

.heading-animation .line-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.heading-animation.is-visible .line-inner {
  transform: translateY(0);
}

.heading-animation.is-visible .line-wrap:nth-child(2) .line-inner {
  transition-delay: 0.15s;
}
.heading-animation.is-visible .line-wrap:nth-child(3) .line-inner {
  transition-delay: 0.3s;
}
.heading-animation.is-visible .line-wrap:nth-child(4) .line-inner {
  transition-delay: 0.45s;
}

/* Variantes de cor */
.heading-animation.style-white .line-inner { color: var(--white); }
.heading-animation.style-navy  .line-inner { color: var(--navy); }
.heading-animation.style-gold  .line-inner { color: var(--gold); }

/* Estilo do parágrafo animado */
.heading-animation .animated-paragraph {
  overflow: hidden;
}
.heading-animation .animated-paragraph .paragraph-inner {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s,
              opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}
.heading-animation.is-visible .animated-paragraph .paragraph-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Linha decorativa animada */
.heading-animation .animated-line {
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
  margin: 20px 0;
}
.heading-animation.is-visible .animated-line {
  width: 60px;
}
.heading-animation.center .animated-line {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   AREA CARDS
   ============================================ */
.areas-section { background: var(--gray-light); }
.area-card { padding: 40px 30px; text-align: center; border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.area-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.area-card:hover { transform: translateY(-8px); }
.area-card:hover::before { transform: scaleX(1); }
.area-card .area-icon { width: 70px; height: 70px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: var(--gold); font-size: 1.5rem; overflow: hidden; }
.area-card .area-icon img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

/* Area detail */
.area-detail-card { padding: 48px 40px; margin-bottom: 30px; border-left: 4px solid var(--gold); }
.area-detail-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.area-detail-card h3 .icon-circle { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: var(--gold); font-size: 1rem; }
.area-detail-card p { line-height: 1.8; }
.area-detail-card ul { margin-top: 12px; display: grid; gap: 8px; }
.area-detail-card ul li { display: flex; align-items: baseline; gap: 10px; font-size: 0.92rem; }
.area-detail-card ul li::before { content: '\2014'; color: var(--gold); font-weight: 700; }

/* ============================================
   CTA
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(183,162,137,0.08), transparent 70%); border-radius: 50%; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Lado esquerdo */
.faq-left .overline {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.faq-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.faq-image {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
}
.faq-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Lado direito — Accordion */
.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 51, 84, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  transition: all var(--transition);
}
.faq-icon svg {
  transition: transform var(--transition);
}

/* Estado ativo */
.faq-item.active .faq-question {
  color: var(--gold);
}
.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--white);
}
.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              padding 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0;
}

/* ============================================
   FAQ RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .faq-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-image {
    position: static;
    max-height: 300px;
  }
}

/* ============================================
   NEWS
   ============================================ */
.news-section { background: var(--white); }

.news-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.news-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex: 1;
}

.news-body .btn {
  align-self: flex-start;
}

/* ============================================
   ARTICLE / NOTÍCIA
   ============================================ */
.article-section { background: var(--white); }

.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

/* Meta */
.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.article-meta svg { flex-shrink: 0; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Título */
.article-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Imagem */
.article-image {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Corpo */
.article-body {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-body);
}
.article-body p { margin-bottom: 18px; }
.article-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 14px;
}
.article-body ul {
  margin: 16px 0 24px 20px;
  list-style: disc;
}
.article-body ul li {
  margin-bottom: 8px;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* Tags */
.article-tags {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-right: 4px;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-light);
  border-radius: 20px;
  transition: all var(--transition);
}
.tag:hover {
  background: var(--gold);
  color: var(--white);
}

/* Leia Também */
.article-related {
  margin-top: 50px;
}
.article-related h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.related-card {
  display: flex;
  gap: 24px;
  padding: 20px;
  align-items: center;
}
.related-thumb {
  width: 160px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-body h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.related-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Sidebar */
.article-sidebar { position: sticky; top: 120px; }
.sidebar-card { padding: 30px; }
.sidebar-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .article-sidebar {
    position: static;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .related-card {
    flex-direction: column;
  }
  .related-thumb {
    width: 100%;
    height: 200px;
  }
}

/* News card como link */
a.news-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
a.news-card .btn {
  pointer-events: none;
}

/* Meta data da notícia */
.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.news-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Validação inline do formulário */
.input-erro {
  border-color: #c00 !important;
  background: #fff5f5 !important;
}
.campo-erro {
  display: block;
  color: #c00;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ============================================
   PROFILE
   ============================================ */
.profile-section { background: var(--white); }
.profile-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.profile-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 120px; }
.profile-image img { width: 100%; height: 580px; object-fit: cover; }
.profile-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--navy); margin-bottom: 6px; }
.profile-info .profile-title { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; }
.profile-info p { margin-bottom: 16px; }
.profile-details { margin-top: 30px; }
.profile-details h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.profile-list { display: grid; gap: 12px; }
.profile-list li { display: flex; align-items: baseline; gap: 12px; font-size: 0.95rem; }
.profile-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-cards { display: grid; gap: 24px; align-content: start; }
.contact-info-card { padding: 28px; display: flex; gap: 20px; align-items: flex-start; }
.contact-info-card .ci-icon { width: 50px; height: 50px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); color: var(--gold); font-size: 1.1rem; }
.contact-info-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; }
.contact-info-card a:hover { color: var(--gold); }

.contact-form-wrap { padding: 40px; }
.contact-form-wrap h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); background: var(--gray-light); color: var(--text-dark); transition: border-color var(--transition); font-size: 0.95rem; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 0.85rem; }

/* Map */
.map-section { background: var(--white); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 400px; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-about .footer-social { display: flex; gap: 10px; }
.footer-about .footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); transition: all var(--transition); font-size: 0.85rem; }
.footer-about .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '\203A'; color: var(--gold); font-weight: 700; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact .fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; z-index: 100; opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: 0 4px 15px rgba(183,162,137,0.4); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--navy); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image { position: static; max-width: 400px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; --header-h: 70px; }
  .header-top { display: none; }
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); padding: 100px 30px 30px; transition: right var(--transition); box-shadow: -4px 0 30px rgba(0,0,0,0.15); z-index: 1000; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero-page { min-height: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 300px; }
  .about-image::after { display: none; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}