:root {
  --ink: #192634;
  --muted: #45525e;
  --coral: #e75f67;
  --teal: #078d90;
  --green: #11a45e;
  --line: #e8e8e8;
  --soft: #fff7f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'DM Sans',sans-serif;
  font-size: 15px;
}

h1,h2,h3,p {
  margin-top: 0;
}

h1,h2,.brand strong,.info-card h3,.package-card h3 {
  font-family: 'Playfair Display',Georgia,serif;
}

h1 {
  font-size: clamp(42px,5vw,72px);
  line-height: 1.05;
  margin: 12px 0;
}

h2 {
  font-size: clamp(27px,3vw,38px);
  line-height: 1.2;
  margin: 3px 0 18px;
}

h3 {
  font-size: 18px;
}

p {
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.wrap {
  width: min(1200px,calc(100% - 48px));
  margin: auto;
}

.section {
  padding: 42px 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .34em;
  margin: 0;
  color: #344652;
}

.center {
  text-align: center;
}

.site-header {
  height: 72px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 14px #25344a0a;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.1;
}

.brand-hat {
  height: 22px;
  color: #d89944;
  font-size: 27px;
  line-height: 19px;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  font-size: 6px;
  letter-spacing: .11em;
  margin-top: 3px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 24px;
  margin: auto;
  font-size: 13px;
}

.main-nav a {
  padding: 27px 0 24px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,.main-nav a.active {
  color: var(--coral);
  border-color: var(--coral);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 13px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s,filter .2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(.95);
}

.btn-coral {
  background: var(--coral);
  color: white;
}

.btn-green {
  background: var(--green);
  color: white;
}

.btn-teal {
  background: var(--teal);
  color: white;
}

.btn-outline {
  border: 1px solid #cfd4d8;
  background: #fff;
}

.coral-outline {
  border-color: #f4a9ae;
  color: #d94d58;
}

.header-cta {
  border-radius: 30px;
  font-size: 12px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 23px;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #fff9f7;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#fffaf9 0%,#fffaf9 35%,#fffaf9d9 45%,transparent 68%),linear-gradient(0deg,#fff 0%,transparent 20%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 55px;
  padding-bottom: 35px;
}

.hero-lead {
  max-width: 510px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin: 20px 0 34px;
}

.hero-benefits {
  display: flex;
  gap: 26px;
  max-width: 770px;
}

.hero-benefits span {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 8px;
  font-size: 12px;
}

.hero-benefits i {
  grid-row: span 2;
  color: var(--coral);
  font-size: 22px;
  align-self: center;
}

.hero-benefits small {
  font-size: 11px;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2:after {
  content: '';
  display: block;
  width: 75px;
  height: 2px;
  background: var(--coral);
  margin: 13px auto 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.four {
  grid-template-columns: repeat(4,1fr);
}

.grid.six {
  grid-template-columns: repeat(6,1fr);
}

.grid.three {
  grid-template-columns: repeat(3,1fr);
}

.info-card,.service-card,.package-card,.quote-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 5px 20px #25344a08;
  background: #fff;
}

.info-card {
  text-align: center;
  padding: 20px 18px;
  min-height: 215px;
}

.info-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.info-card p {
  font-size: 13px;
  margin: 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  color: #fff;
  font-size: 25px;
}

.icon-circle.coral {
  background: #f19ba1;
}

.icon-circle.teal {
  background: var(--teal);
}

.icon-circle.orange {
  background: #ef8a29;
}

.icon-circle.lime {
  background: #a6bb2b;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 15px;
}

.section-top h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  font-size: 13px;
  white-space: nowrap;
}

.text-link i {
  margin-left: 7px;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.service-card div {
  padding: 13px;
}

.service-card h3 {
  font-family: 'DM Sans',sans-serif;
  font-size: 13px;
  margin: 0 0 7px;
  white-space: nowrap;
}

.service-card h3 i {
  color: var(--coral);
  margin-right: 4px;
}

.service-card:nth-child(5) h3 i {
  color: var(--teal);
}

.service-card:nth-child(6) h3 i {
  color: #a6bb2b;
}

.service-card p {
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

.locations {
  background: #fcf9f9;
}

.location-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.3fr .55fr;
  gap: 22px;
  align-items: center;
}

.locations p:not(.eyebrow) {
  font-size: 14px;
  max-width: 395px;
}

.locations .btn {
  margin-top: 8px;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-pills span {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 23px;
  padding: 10px 13px;
  box-shadow: 0 3px 14px #2233aa08;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.location-pills i {
  color: var(--teal);
  margin-right: 6px;
}

.location-art {
  text-align: center;
  color: #dfe2e4;
}

.location-art i {
  font-size: 115px;
}

.location-art span {
  display: block;
  color: var(--ink);
  font-family: 'Playfair Display',serif;
  font-style: italic;
  transform: rotate(-8deg);
}

.video-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.75;
  background: #26303c;
}

.video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0003;
}

.video-image i {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  padding-left: 3px;
}

.video-card b {
  display: block;
  font-size: 13px;
  margin: 8px 0 2px;
}

.video-card>span {
  font-size: 12px;
  color: var(--coral);
}

.package-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card.featured {
  border-color: var(--teal);
}

.package-card h3 {
  font-size: 19px;
  margin: 0 0 5px;
}

.package-card p {
  font-size: 12px;
  margin: 0 0 14px;
}

.package-card strong {
  font-family: 'Playfair Display',serif;
  font-size: 24px;
  white-space: nowrap;
}

.package-card ul {
  padding: 0;
  list-style: none;
  margin: 14px 0 20px;
}

.package-card li {
  font-size: 13px;
  margin: 7px 0;
}

.package-card li:before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  margin-right: 9px;
}

.package-card .btn {
  margin-top: auto;
}

.popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: var(--teal);
  padding: 5px 13px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.price-note {
  font-size: 11px;
  color: #66717c;
  margin: 11px 0 0;
}

.promo {
  background: linear-gradient(90deg,#fff3f4,#fff9f8);
  overflow: hidden;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1.4fr .55fr .75fr;
  align-items: center;
  gap: 28px;
  min-height: 175px;
}

.promo h2 {
  margin-bottom: 6px;
}

.promo p {
  margin-bottom: 15px;
}

.promo-points {
  display: flex;
  gap: 20px;
  font-size: 11px;
}

.promo-points i {
  color: var(--coral);
}

.promo img {
  width: 180px;
  height: 170px;
  object-fit: cover;
  object-position: 75% 40%;
  border-radius: 50% 50% 0 0;
  align-self: end;
}

.promo-inner>div:last-child {
  text-align: center;
}

.promo small {
  display: block;
  margin-top: 9px;
}

.quote-card {
  padding: 20px;
  position: relative;
}

.quote-mark {
  font-size: 40px;
  color: #f09ea4;
  line-height: 1;
}

.quote-card p {
  font-size: 13px;
  min-height: 55px;
  margin: 0;
}

.stars {
  color: #f28b22;
  letter-spacing: 2px;
  margin: 8px 0;
}

.quote-card strong {
  font-size: 12px;
}

.faq {
  background: #fcfdfd;
}

.faq-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.faq-inner>div:first-child>p:not(.eyebrow) {
  max-width: 350px;
  font-size: 14px;
}

.faq-list details {
  border: 1px solid #e7e9eb;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 7px;
}

.faq-list summary {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.faq-list summary:after {
  content: '⌄';
  font-size: 19px;
  line-height: 13px;
}

.faq-list details[open] summary:after {
  content: '⌃';
}

.faq-list details p {
  padding: 0 18px 12px;
  font-size: 12px;
  margin: 0;
}

.final-cta {
  text-align: center;
  padding: 45px 0;
  background: linear-gradient(90deg,#fff7f4d9,#fff9f6e8),url('assets/mariachis-cdmx.webp') center 55%/cover;
}

.final-cta p {
  max-width: 540px;
  margin: 0 auto 17px;
  font-size: 13px;
}

.footer {
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .9fr .9fr;
  gap: 45px;
  padding: 35px 0;
}

.footer-grid>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid .brand {
  align-items: center;
}

.footer-grid p {
  font-size: 12px;
  max-width: 280px;
  margin: 15px 0;
}

.footer-grid h3 {
  font: 700 13px 'DM Sans',sans-serif;
  margin: 5px 0 14px;
}

.footer-grid a:not(.brand),.footer-grid span {
  font-size: 12px;
  margin: 3px 0;
}

.footer-grid>div:last-child i {
  color: var(--teal);
  margin-right: 10px;
}

.footer-link {
  color: var(--teal);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #54616d;
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}

.footer-bottom i {
  color: var(--coral);
}

@media(max-width:1080px) {
  .main-nav {
    gap: 12px;
  }
  .header-cta {
    display: none;
  }
  .grid.six {
    grid-template-columns: repeat(3,1fr);
  }
  .service-card img {
    height: 150px;
  }
  .location-inner {
    grid-template-columns: 1fr 1.2fr;
  }
  .location-art {
    display: none;
  }
  .promo-inner {
    grid-template-columns: 1fr .35fr .65fr;
  }
  .promo-points {
    flex-wrap: wrap;
  }
}

@media(max-width:760px) {
  .wrap {
    width: min(100% - 32px,560px);
  }
  .site-header {
    height: 65px;
  }
  .header-inner {
    justify-content: space-between;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 15px 20px #1b2c3a18;
    padding: 10px 16px 20px;
    flex-direction: column;
    gap: 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 12px;
    border: 0;
  }
  .hero {
    min-height: 0;
  }
  .hero-photo {
    width: 100%;
    height: 350px;
    object-position: 67% center;
    opacity: .75;
  }
  .hero:after {
    background: linear-gradient(90deg,#fffaf9ef,#fffaf9af 63%,#fffaf950),linear-gradient(0deg,#fff 0%,transparent 35%);
  }
  .hero-content {
    padding: 55px 0 30px;
  }
  .hero-lead {
    max-width: 470px;
    font-size: 15px;
  }
  .hero-benefits {
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero-benefits span {
    min-width: 145px;
  }
  .section {
    padding: 34px 0;
  }
  .grid.four,.grid.three {
    grid-template-columns: repeat(2,1fr);
  }
  .info-card {
    min-height: 0;
  }
  .grid.six {
    grid-template-columns: repeat(2,1fr);
  }
  .location-inner,.faq-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .promo-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 24px;
  }
  .promo-inner>div:first-child {
    grid-column: span 2;
  }
  .promo-inner img {
    height: 125px;
    width: 125px;
  }
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
  }
  .section-top {
    align-items: start;
    gap: 10px;
  }
  .section-top .text-link {
    margin-top: 8px;
  }
  .package-card {
    padding: 16px;
  }
  .package-card strong {
    font-size: 20px;
  }
}

@media(max-width:480px) {
  h1 {
    font-size: 42px;
  }
  .hero-photo {
    height: 390px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-benefits span:last-child {
    grid-column: span 2;
  }
  .section-top {
    display: block;
  }
  .section-top .text-link {
    display: inline-block;
    margin: 8px 0 0;
  }
  .grid.four,.grid.three,.grid.six {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .info-card {
    padding: 15px 10px;
  }
  .info-card h3 {
    font-size: 15px;
  }
  .info-card p {
    font-size: 11px;
  }
  .service-card img {
    height: 110px;
  }
  .service-card div {
    padding: 10px;
  }
  .service-card h3 {
    white-space: normal;
    font-size: 12px;
  }
  .service-card p {
    font-size: 10px;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-image i {
    width: 36px;
    height: 36px;
  }
  .package-grid {
    grid-template-columns: 1fr!important;
  }
  .promo-inner {
    grid-template-columns: 1fr;
  }
  .promo-inner>div:first-child {
    grid-column: auto;
  }
  .promo-inner img {
    display: none;
  }
  .promo-inner>div:last-child {
    text-align: left;
    margin-bottom: 23px;
  }
  .promo-points {
    gap: 8px;
  }
  .quote-card {
    padding: 14px;
  }
  .quote-card p {
    font-size: 11px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-bottom .wrap {
    display: block;
  }
  .footer-bottom .wrap>span {
    display: block;
    margin: 5px 0;
  }
}

/* Shared contact button */
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 22px #0a7e4a55;
  font-size: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 11px 28px #0a7e4a77;
}

/* Home blog preview */
.home-blog { background: #fffaf8; }
.home-blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-blog-card { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding-bottom: 15px; }
.home-blog-card img { width: 100%; height: 145px; object-fit: cover; }
.home-blog-card span, .home-blog-card h3, .home-blog-card small { margin-left: 15px; margin-right: 15px; }
.home-blog-card span { display: block; margin-top: 12px; color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.home-blog-card h3 { margin-top: 7px; margin-bottom: 10px; font-size: 18px; }
.home-blog-card small { color: var(--coral); font-weight: 700; }

/* Magazine index */
.blog-masthead { padding: 35px 0 48px; background: linear-gradient(95deg, #fff9f7, #fff4f1); }
.blog-masthead .breadcrumbs { margin-bottom: 34px; }
.blog-masthead h1 { max-width: 800px; margin: 11px 0 16px; }
.blog-masthead p:last-child { max-width: 660px; font-size: 17px; }
.issue-count { color: var(--muted); font-size: 12px; }
.article-category { color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.featured-story { display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.featured-story img { width: 100%; height: 330px; object-fit: cover; }
.featured-story > div { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.featured-story h3 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 3vw, 38px); line-height: 1.16; margin: 10px 0 15px; }
.featured-story p { color: var(--muted); max-width: 390px; }
.read-link { color: var(--coral); font-size: 13px; font-weight: 700; }
.read-link i { margin-left: 5px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.story-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; transition: transform .2s ease; }
.story-card:hover, .related-card:hover, .home-blog-card:hover { transform: translateY(-3px); }
.story-card img { width: 100%; height: 185px; object-fit: cover; }
.story-card > div { padding: 20px; }
.story-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; line-height: 1.22; margin: 9px 0; }
.story-card p { color: var(--muted); font-size: 13px; min-height: 58px; }
.blog-newsletter { background: #fff4f3; padding: 35px 0; }
.blog-newsletter .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.blog-newsletter h2 { margin-bottom: 8px; }
.blog-newsletter p:last-child { margin-bottom: 0; }

/* Article pages */
.article-shell { padding-top: 26px; padding-bottom: 50px; }
.article-breadcrumbs { flex-wrap: wrap; margin-bottom: 32px; }
.magazine-article { max-width: 850px; margin: auto; }
.article-header { text-align: center; }
.article-header h1 { font-size: clamp(38px, 5vw, 64px); margin: 12px auto; }
.article-deck { max-width: 640px; margin: 0 auto 15px; color: var(--muted); font-size: 18px; }
.article-byline { color: #697581; font-size: 12px; }
.article-byline i { color: var(--coral); margin-right: 5px; }
.article-byline span { padding: 0 8px; }
.article-cover { margin: 30px 0; }
.article-cover img { width: 100%; height: 370px; object-fit: cover; border-radius: 12px; }
.article-cover figcaption { color: #71808b; font-size: 11px; margin-top: 8px; text-align: center; }
.article-body { max-width: 720px; margin: auto; }
.article-body p { font-size: 17px; line-height: 1.78; margin-bottom: 20px; }
.article-body h2 { margin: 35px 0 14px; font-size: 30px; }
.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.article-contact { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 28px; margin: 45px 0; border-radius: 14px; background: #fff4f3; }
.article-contact h2 { margin-bottom: 8px; }
.article-contact p:last-child { max-width: 570px; margin-bottom: 0; font-size: 13px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: block; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; padding-bottom: 17px; transition: transform .2s ease; }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card .article-category, .related-card h3, .related-card .read-link { display: block; margin-left: 15px; margin-right: 15px; }
.related-card .article-category { margin-top: 13px; }
.related-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; line-height: 1.22; margin-top: 8px; margin-bottom: 11px; }

@media(max-width: 760px) {
  .home-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-story { grid-template-columns: 1fr; }
  .featured-story img { height: 270px; }
  .story-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-newsletter .wrap, .article-contact { flex-direction: column; align-items: flex-start; }
  .article-cover img { height: 300px; }
}

@media(max-width: 480px) {
  .whatsapp-float { left: 14px; bottom: 14px; width: 52px; height: 52px; font-size: 28px; }
  .home-blog-card img { height: 110px; }
  .home-blog-card h3 { font-size: 15px; }
  .blog-masthead { padding: 25px 0 35px; }
  .blog-masthead h1 { font-size: 39px; }
  .featured-story > div { padding: 22px; }
  .story-grid, .related-grid { grid-template-columns: 1fr; }
  .story-card img { height: 190px; }
  .article-header h1 { font-size: 38px; }
  .article-deck { font-size: 15px; }
  .article-cover img { height: 225px; }
  .article-body p { font-size: 16px; }
  .article-body h2 { font-size: 26px; }
  .article-contact { padding: 22px; }
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 27px 0 24px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.dropdown-toggle i {
  font-size: 10px;
  margin-left: 4px;
}

.dropdown-toggle:hover,.nav-dropdown.open .dropdown-toggle {
  color: var(--coral);
  border-color: var(--coral);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 25px #1b2c3a19;
  border-radius: 10px;
  padding: 8px;
  z-index: 35;
}

.nav-dropdown.open .dropdown-menu,.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 9px 12px!important;
  border: 0!important;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #fff5f5;
}

.location-pills a {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 23px;
  padding: 10px 13px;
  box-shadow: 0 3px 14px #2233aa08;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.location-pills a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.location-pills a i {
  color: var(--teal);
  margin-right: 6px;
}

.location-hero {
  min-height: 510px;
}

.location-hero .hero-content {
  padding-top: 22px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.breadcrumbs i {
  font-size: 8px;
}

.breadcrumbs a:hover {
  color: var(--coral);
}

.location-hero h1 {
  max-width: 530px;
}

.location-subtitle {
  font-family: 'Playfair Display',serif;
  font-size: 24px;
  line-height: 1.1;
  max-width: 520px;
  margin-bottom: 12px;
}

.location-hero .hero-lead {
  font-size: 14px;
  max-width: 520px;
}

.location-intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 35px;
}

.location-intro figure {
  margin: 0;
}

.location-intro figure img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 12px;
}

.location-intro figcaption {
  font-size: 12px;
  margin-top: 8px;
}

.location-intro figcaption i {
  color: var(--coral);
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.intro-columns p {
  font-size: 14px;
  margin: 0;
}

.intro-columns p+ p {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}

.local-neighborhoods {
  background: #fcfafa;
}

.local-neighborhoods .location-pills {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.local-neighborhoods .location-pills span {
  white-space: normal;
}

.local-neighborhoods .section-top small {
  font-size: 12px;
  color: var(--muted);
}

@media(max-width:760px) {
  .nav-dropdown {
    display: block;
  }
  .dropdown-toggle {
    padding: 12px;
    text-align: left;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    max-height: 220px;
    min-width: 0;
    padding: 0 0 0 14px;
  }
  .nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }
  .location-intro-grid {
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }
  .intro-columns {
    display: block;
  }
  .intro-columns p+ p {
    border: 0;
    padding: 0;
    margin-top: 10px;
  }
  .local-neighborhoods .location-pills {
    grid-template-columns: repeat(2,1fr);
  }
  .location-hero .hero-photo {
    height: 100%;
    opacity: .55;
  }
}

@media(max-width:480px) {
  .location-intro-grid {
    grid-template-columns: 1fr;
  }
  .location-intro figure {
    max-width: 220px;
  }
  .location-subtitle {
    font-size: 20px;
  }
  .local-neighborhoods .location-pills span {
    font-size: 11px;
  }
  .location-hero .hero-benefits {
    gap: 10px;
  }
  .location-hero .hero-content {
    padding-top: 25px;
  }
}
