:root {
  --bg: #fbf7f0;
  --paper: #fffdf8;
  --ink: #2f2a24;
  --muted: #7b7066;
  --line: #e8ded1;
  --accent: #9b6f52;
  --accent-soft: #ead8c8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 42px;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}

nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  padding: 86px 0 72px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
  max-width: 740px;
}

.hero-copy {
  max-width: 560px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(70, 51, 36, 0.08);
}

.hero-card-image {
  min-height: 360px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(251, 247, 240, 0.15), rgba(251, 247, 240, 0.15)),
    url("../images/engagementFitted.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
}

.hero-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 44px 0 24px;
  border-top: 1px solid var(--line);
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.08);
}

.article-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.article-body {
  padding: 24px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.article-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.read-more {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.wide-card {
  grid-column: span 2;
}

.rsvp-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 32px;
  margin-top: 42px;
}

.rsvp-strip h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.rsvp-strip p {
  color: var(--muted);
  margin-top: 6px;
}

footer {
  color: var(--muted);
  text-align: center;
  padding-top: 52px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wide-card {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .site-wrapper {
    padding: 20px 16px 48px;
  }

  nav {
    font-size: 0.8rem;
  }

  .hero-card-image {
    min-height: 270px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .rsvp-strip {
    grid-template-columns: 1fr;
  }
}

.travel-page {
  min-height: 100vh;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
  padding: 72px 0 56px;
}

.page-hero-travel {
  border-bottom: 1px solid var(--line);
}

.page-hero-copy {
  max-width: 700px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.travel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.travel-tag.soft {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--accent);
}

.travel-hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.06);
}

.travel-hero-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.travel-summary-list {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.travel-summary-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.travel-summary-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.travel-section {
  padding: 48px 0 8px;
}

.travel-heading {
  border-top: none;
  padding-top: 0;
}

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

.travel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(70, 51, 36, 0.05);
}

.travel-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.travel-mini-note {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.travel-card h3,
.travel-feature-content h3,
.checklist-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.travel-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.travel-card p,
.travel-feature-content p,
.checklist-card p {
  color: var(--muted);
}

.travel-feature-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.06);
}

.travel-feature-content {
  padding: 32px;
}

.travel-feature-content h3 {
  font-size: 2rem;
  margin: 18px 0 14px;
}

.travel-feature-content p + p {
  margin-top: 14px;
}

.hotel-link-button {
  margin-top: 20px;
}

.hotel-link-button .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hotel-link-button .button.primary {
  background: var(--accent);
  color: white;
}

.hotel-link-button .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 111, 82, 0.3);
}

.travel-feature-image {
  min-height: 320px;
  background:
    linear-gradient(rgba(251, 247, 240, 0.12), rgba(251, 247, 240, 0.12)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

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

.checklist-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.checklist-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .travel-card-grid,
  .travel-checklist-grid,
  .travel-feature-card {
    grid-template-columns: 1fr;
  }

  .travel-feature-image {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 44px 0 40px;
  }

  .travel-card,
  .checklist-card,
  .travel-feature-content,
  .travel-hero-card {
    padding: 20px;
  }

  .travel-feature-content h3 {
    font-size: 1.7rem;
  }

  .hotel-link-button .button {
    font-size: 0.85rem;
    min-height: 40px;
    padding: 0 16px;
  }

  .travel-tag {
    font-size: 0.8rem;
  }
}

.itinerary-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
}

.itinerary-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.itinerary-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-hero {
  border-bottom: 1px solid var(--line);
}

.schedule-hero-copy-full {
  max-width: 760px;
}

.schedule-list {
  display: grid;
  gap: 22px;
}

.schedule-event-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.06);
}

.schedule-event-date {
  background: #f6efe7;
  border-right: 1px solid var(--line);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.schedule-event-day {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.schedule-event-full-date {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-event-body {
  padding: 30px 30px 28px;
}

.schedule-event-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.schedule-event-label {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.schedule-event-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.schedule-event-body p {
  color: var(--muted);
}

.schedule-detail-box {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.schedule-detail-box h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
}

.schedule-detail-box span {
  color: var(--accent);
}

@media (max-width: 900px) {
  .schedule-event-card {
    grid-template-columns: 1fr;
  }

  .schedule-event-date {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 22px 24px;
  }
}

@media (max-width: 640px) {
  .schedule-event-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-event-body {
    padding: 24px 22px;
  }

  .schedule-event-body h3 {
    font-size: 1.65rem;
  }

  .schedule-event-day {
    font-size: 1.45rem;
  }
}

.visa-hero {
  border-bottom: 1px solid var(--line);
}

.visa-hero-copy-full {
  max-width: 780px;
}

.visa-accordion {
  display: grid;
  gap: 18px;
}

.visa-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.05);
}

.visa-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 28px;
  align-items: center;
  column-gap: 18px;
}

.visa-item summary::-webkit-details-marker {
  display: none;
}

.visa-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  justify-self: end;
  line-height: 1;
}

.visa-item[open] summary::after {
  content: "–";
}

.visa-main-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--ink);
  min-width: 0;
}

.visa-summary-note {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  justify-self: end;
  text-align: right;
}

.visa-item-content {
  padding: 0 28px 28px;
  border-top: 1px solid var(--line);
}

.visa-item-content p {
  color: var(--muted);
  margin-top: 18px;
}

.visa-info-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.visa-info-list li + li {
  margin-top: 10px;
}

.visa-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 760px) {
  .visa-item summary {
    grid-template-columns: 1fr 24px;
    row-gap: 6px;
  }

  .visa-main-title {
    grid-column: 1 / 2;
    font-size: 1.2rem;
  }

  .visa-summary-note {
    grid-column: 1 / 2;
    justify-self: start;
    text-align: left;
    white-space: normal;
    font-size: 0.72rem;
  }

  .visa-item summary::after {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .visa-item-content {
    padding: 0 20px 22px;
  }
}

.visa-top-note {
  padding-top: 28px;
}

.visa-top-heading {
  margin-bottom: 18px;
}

.visa-universal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.05);
}

.visa-universal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.visa-universal-list li + li {
  margin-top: 12px;
}

.visa-universal-list li::marker {
  color: var(--accent);
}

/* =========================================================
   Article Pages
   Used by: mexican-music-dancing.html
========================================================= */

.article-hero {
  padding: 4rem 1.5rem 2rem;
}

.article-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(180, 130, 95, 0.22);
  box-shadow: 0 18px 45px rgba(92, 58, 33, 0.08);
}

.article-kicker,
.section-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a15b3b;
  font-weight: 700;
}

.article-hero h1 {
  max-width: 820px;
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  color: #33251d;
}

.article-hero p {
  max-width: 780px;
  margin: 0;
  color: #6f5d4f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading-row h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #33251d;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: #7b6a5c;
  line-height: 1.6;
}

/* Tabs */

.article-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.article-tab {
  border: 1px solid rgba(180, 130, 95, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: #3a2a21;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-tab:hover,
.article-tab.active {
  background: #a85f42;
  border-color: #a85f42;
  color: #fffaf3;
}

/* Music Panels */

.article-tab-panel {
  display: none;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(180, 130, 95, 0.22);
  box-shadow: 0 18px 45px rgba(92, 58, 33, 0.08);
}

.article-tab-panel.active {
  display: block;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.music-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #33251d;
}

.music-copy p {
  color: #6f5d4f;
  line-height: 1.75;
}

.tag-pill {
  display: inline-block;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #eef1df;
  color: #5d6539 !important;
  font-size: 0.88rem;
  line-height: 1.3 !important;
}

.callout-card {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  background: #f8e9c6;
  border: 1px solid rgba(145, 102, 48, 0.15);
  color: #4a3829;
}

.callout-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #33251d;
}

.callout-card span {
  display: block;
  line-height: 1.6;
}

/* Spotify Song Cards */

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.song-grid.single-song {
  grid-template-columns: 1fr;
}

.song-card {
  padding: 1rem;
  border-radius: 22px;
  background: #fffaf3;
  border: 1px solid rgba(180, 130, 95, 0.2);
  box-shadow: 0 10px 28px rgba(92, 58, 33, 0.06);
}

.song-card p {
  margin: 0 0 0.25rem;
  color: #9a725e;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.song-card h4 {
  margin: 0 0 0.85rem;
  color: #33251d;
  font-size: 1.05rem;
}

.song-card iframe {
  width: 100%;
  border: 0;
  border-radius: 14px;
}

/* Closing Note */

.closing-note-section {
  padding-top: 1rem;
}

.closing-note-card {
  padding: 2.25rem;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(180, 130, 95, 0.22);
  box-shadow: 0 18px 45px rgba(92, 58, 33, 0.08);
}

.closing-note-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #33251d;
}

.closing-note-card p {
  max-width: 820px;
  color: #6f5d4f;
  line-height: 1.75;
}

.article-back-link {
  display: inline-block;
  margin-top: 1rem;
  color: #a85f42;
  font-weight: 700;
  text-decoration: none;
}

.article-back-link:hover {
  text-decoration: underline;
}

/* Mobile */

@media (max-width: 900px) {
  .section-heading-row {
    display: block;
  }

  .section-note {
    margin-top: 0.75rem;
  }

  .music-layout {
    grid-template-columns: 1fr;
  }

  .song-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Hotel Information Section
   Used by: travel.html
========================================================= */

.hotel-info-section {
  margin-top: 42px;
  padding: 40px 0;
}

.hotel-accordion {
  display: grid;
  gap: 18px;
}

.hotel-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.05);
}

.hotel-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 28px;
  align-items: center;
  column-gap: 18px;
}

.hotel-item summary::-webkit-details-marker {
  display: none;
}

.hotel-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  justify-self: end;
  line-height: 1;
}

.hotel-item[open] summary::after {
  content: "–";
}

.hotel-main-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--ink);
  min-width: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hotel-summary-note {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  justify-self: end;
  text-align: right;
}

.hotel-item-content {
  padding: 0 28px 28px;
  border-top: 1px solid var(--line);
}

.hotel-item-content .table-wrapper {
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hotel-item-content .benefits-grid {
  margin: 0;
}

.hotel-item-content .benefits-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hotel-item-content .benefits-card h4 {
  display: none;
}

@media (max-width: 760px) {
  .hotel-item summary {
    grid-template-columns: 1fr 24px;
    row-gap: 6px;
  }

  .hotel-main-title {
    grid-column: 1 / 2;
    font-size: 1.2rem;
  }

  .hotel-summary-note {
    grid-column: 1 / 2;
    justify-self: start;
    text-align: left;
    white-space: normal;
    font-size: 0.72rem;
  }

  .hotel-item summary::after {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .hotel-item-content {
    padding: 0 20px 22px;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(70, 51, 36, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(70, 51, 36, 0.08);
}

.step-card[href] {
  cursor: pointer;
  text-decoration: none;
}

.step-card[href]:hover {
  border-color: var(--accent);
  background: rgba(155, 111, 82, 0.02);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 auto 12px;
}

.step-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.step-action-button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(155, 111, 82, 0.3);
}

.step-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(155, 111, 82, 0.4);
  background: #8a5f3f;
}

.clickable-step {
  border-color: var(--accent);
  background: rgba(155, 111, 82, 0.02);
}

.confirmation-note {
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Rates Table */

.table-wrapper {
  overflow-x: auto;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  margin: 0;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.rates-table thead {
  border-bottom: 2px solid var(--line);
}

.rates-table th {
  text-align: left;
  padding: 12px 8px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
}

.rates-table td {
  padding: 10px 8px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.rates-table tbody tr:last-child td {
  border-bottom: none;
}

.rates-table tbody tr:hover {
  background: rgba(155, 111, 82, 0.03);
}

/* Benefits Section */

.benefits-grid {
  margin: 0;
}

.benefits-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.benefits-card h4 {
  display: none;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.benefits-list li {
  padding-left: 24px;
  position: relative;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rates-table {
    font-size: 0.85rem;
  }

  .rates-table th,
  .rates-table td {
    padding: 10px 8px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .step-card h4 {
    font-size: 1rem;
  }

  .step-action-button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .confirmation-note {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .article-hero {
    padding: 2rem 1rem 1rem;
  }

  .article-hero-inner,
  .article-tab-panel,
  .closing-note-card {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .article-section {
    padding: 2rem 1rem;
  }

  .article-tabs {
    gap: 0.5rem;
  }

  .article-tab {
    padding: 0.65rem 0.9rem;
    font-size: 0.92rem;
  }
}

/* =========================================================
   Articles Landing Page
   Used by: articles.html
========================================================= */

.articles-hero {
  padding: 4rem 1.5rem 2rem;
}

.articles-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(180, 130, 95, 0.22);
  box-shadow: 0 18px 45px rgba(92, 58, 33, 0.08);
}

.articles-hero h1 {
  max-width: 820px;
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #33251d;
}

.articles-hero p {
  max-width: 780px;
  margin: 0;
  color: #6f5d4f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.articles-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(180, 130, 95, 0.22);
  box-shadow: 0 12px 32px rgba(92, 58, 33, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(92, 58, 33, 0.1);
}

.article-card.featured {
  background: linear-gradient(135deg, #fffaf3 0%, #f7e5d9 100%);
  border-color: rgba(168, 95, 66, 0.35);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.article-tags span {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #eef1df;
  color: #5d6539;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.article-card h3 {
  margin: 0 0 0.75rem;
  color: #33251d;
  font-size: 1.25rem;
  line-height: 1.25;
}

.article-card p {
  margin: 0;
  color: #6f5d4f;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .articles-hero {
    padding: 2rem 1rem 1rem;
  }

  .articles-hero-inner {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .articles-section {
    padding: 2rem 1rem 4rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: auto;
  }
}

/* =========================================================
   Compact YouTube Song List
   Used by: mexican-music-dancing.html
========================================================= */

.song-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.song-grid.single-song {
  max-width: 100%;
}

.song-card {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.55);
  border: 1px solid rgba(180, 130, 95, 0.16);
  box-shadow: none;
}

.song-card p {
  margin: 0 0 0.2rem;
  color: #9a725e;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.2;
}

.song-card h4 {
  margin: 0;
  color: #33251d;
  font-size: 0.95rem;
  line-height: 1.2;
}

.youtube-embed {
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 12px;
}

/* Mobile: stack video above title text */
@media (max-width: 640px) {
  .song-card {
    grid-template-columns: 1fr;
  }

  .youtube-embed {
    grid-row: auto;
  }
}

/* =========================================================
   Compact Song Link List
   Used by: mexican-music-dancing.html
========================================================= */

.song-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.song-grid.single-song {
  max-width: 100%;
}

.song-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.58);
  border: 1px solid rgba(180, 130, 95, 0.16);
  box-shadow: none;
}

.song-card p {
  margin: 0 0 0.15rem;
  color: #9a725e;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.2;
}

.song-card h4 {
  margin: 0;
  color: #33251d;
  font-size: 0.95rem;
  line-height: 1.25;
}

.song-link {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #a85f42;
  color: #fffaf3;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.song-link:hover {
  background: #8f4f37;
}

@media (max-width: 640px) {
  .song-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
}