/* ============================================
   VALLE ABOGADOS - Main Stylesheet
   Elegant, authoritative legal aesthetic
   ============================================ */
/* ---- Variables ---- */
:root {
  --gold: #b8965a;
  --gold-light: #d4ae78;
  --gold-dark: #8c6e3a;
  --navy: #1e2a3a;
  --navy-light: #2d3f55;
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --text-dark: #2c2c2c;
  --text-mid: #5a5a5a;
  --text-light: #9a9a9a;
  --white: #ffffff;
  --border: rgba(184,150,90,0.25);
  --font-serif: "Inter", Arial, sans-serif;
  --font-sans: "Inter", Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.14);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--gold-dark);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 1px;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  padding: 0.55rem 0;
}
.top-bar .top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar a:hover {
  color: var(--gold-light);
}
.top-bar .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}
.top-bar .top-bar__social {
  margin-left: auto;
}
.top-bar .top-bar__social a {
  font-size: 1rem;
}

/* ---- Navigation ---- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__logo-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 42, 58, 0.92) 0%, rgba(30, 42, 58, 0.78) 100%), url("/assets/images/hero-bg.jpg") center/cover no-repeat;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem;
  animation: heroFade 1.2s ease both;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}
.hero__badge::before, .hero__badge::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 300;
}
.hero__subtitle {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline:hover {
  border-color: var(--white);
  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(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}
.btn svg, .btn i {
  font-size: 0.9em;
}

/* ---- Feature Cards ---- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.feature-card:nth-child(2) {
  background: var(--navy);
  border-top-color: var(--gold);
}
.feature-card:nth-child(2) .feature-card__icon {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.feature-card:nth-child(2) .feature-card__title {
  color: var(--white);
}
.feature-card:nth-child(2) .feature-card__text {
  color: rgba(255, 255, 255, 0.85);
}
.feature-card:first-child {
  border-top-color: var(--gold);
}
.feature-card:last-child {
  border-top-color: var(--gold);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  font-size: 1.4rem;
}
.feature-card__title {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- Sections ---- */
.section {
  padding: 6rem 2rem;
}
.section--cream {
  background: var(--cream);
}
.section--navy {
  background: var(--navy);
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Areas Grid ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

.area-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: pointer;
}
.area-item:nth-child(4n) {
  border-right: none;
}
.area-item.is-open {
  background: var(--cream);
}
.area-item.is-open .area-item__icon {
  color: var(--gold-dark);
}
.area-item.is-open .area-item__chevron {
  transform: rotate(180deg);
}
.area-item.is-open .area-item__panel {
  max-height: 180px;
  padding: 0 0 1.25rem;
  opacity: 1;
}
.area-item:hover:not(.is-open) {
  background: var(--cream);
}
.area-item:hover:not(.is-open) .area-item__icon {
  color: var(--gold-dark);
  transform: scale(1.08);
}
.area-item__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.area-item__icon {
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
  display: block;
}
.area-item__name {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.area-item__chevron {
  font-size: 0.65rem;
  color: var(--text-light);
  transition: transform 0.35s ease;
}
.area-item__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.35s ease;
  padding: 0;
}
.area-item__panel p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin: 0;
}

/* ---- Lawyers ---- */
.lawyers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .lawyers-grid {
    grid-template-columns: 1fr;
  }
}

.lawyer-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
}
@media (max-width: 520px) {
  .lawyer-card {
    grid-template-columns: 1fr;
  }
}
.lawyer-card__photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  min-height: 220px;
}
.lawyer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: filter var(--transition);
}
.lawyer-card__info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.lawyer-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.lawyer-card__bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.lawyer-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.lawyer-card__meta:first-of-type {
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.lawyer-card__contact {
  font-size: 0.88rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lawyer-card__contact i {
  font-size: 0.85em;
}

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info__item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 20px;
}
.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.contact-info__value a {
  color: var(--text-dark);
}
.contact-info__value a:hover {
  color: var(--gold);
}
.contact-info .hours-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.contact-info .hours-block__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.contact-info .hours-block__header i {
  color: var(--gold);
}
.contact-info .hours-block__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.85rem;
}
.contact-info .hours-block__row:last-child {
  border-bottom: none;
}
.contact-info .hours-block__row--closed .hours-block__day {
  color: var(--text-light);
}
.contact-info .hours-block__day {
  color: var(--text-dark);
  font-weight: 500;
}
.contact-info .hours-block__time {
  color: var(--text-mid);
}
.contact-info .hours-block__badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--cream-dark);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}
.contact-info .map-block {
  margin-top: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.contact-info .map-block iframe {
  display: block;
}

/* ---- Contact Form ---- */
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  margin-top: 1.2rem;
}
.contact-form label:first-child {
  margin-top: 0;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ---- FAQ ---- */
.faq-list {
  margin-top: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-item__question:hover {
  background: var(--cream);
}
.faq-item__question.open {
  background: var(--navy);
  color: var(--white);
}
.faq-item__question.open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--gold-light);
}
.faq-item__icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  background: var(--cream);
}
.faq-item__answer.open {
  max-height: 300px;
  padding: 1.2rem 1.5rem;
}

/* ---- Blog ---- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover {
  box-shadow: var(--shadow-md);
}
.post-card:hover .post-card__img img {
  transform: scale(1.04);
}
.post-card__img {
  overflow: hidden;
  height: 200px;
  background: var(--cream-dark);
}
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.post-card__img--default img {
  opacity: 0.55;
  filter: grayscale(20%);
}
.post-card__body {
  padding: 1.5rem;
}
.post-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.post-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.post-card__title a {
  color: inherit;
}
.post-card__title a:hover {
  color: var(--gold-dark);
}
.post-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.post-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-card__meta i {
  color: var(--gold);
}

/* ---- Post Page ---- */
.post-layout {
  max-width: 780px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.post-header__cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.post-header__meta {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
}
.post-content h2, .post-content h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.post-content h2 {
  font-size: 1.6rem;
}
.post-content h3 {
  font-size: 1.25rem;
}
.post-content p {
  margin-bottom: 1.4rem;
}
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--cream);
  font-style: italic;
  color: var(--text-mid);
  margin: 2rem 0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 2rem 1.5rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer__logo {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.site-footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer__links {
  list-style: none;
}
.site-footer__links li {
  margin-bottom: 0.5rem;
}
.site-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__links a:hover {
  color: var(--gold-light);
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

/* ---- Responsive Nav ---- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__toggle {
    display: flex;
  }
}
/* ---- Utility ---- */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* ---- No-hero page header ---- */
.page-hero {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
  font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */