/* ── FIXED BACKGROUND ── */

body {
  background: var(--ivory);
}

/* ── NAV ── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--parchment);
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex: 1;
}

.nav-links--left  { justify-content: flex-end; padding-right: 2.5rem; }
.nav-links--right { justify-content: flex-start; padding-left: 2.5rem; }

/* .nav-link: all type inherited */
.nav-links a {
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bark); }

/* ── HERO ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 6rem 3rem 6rem 0;
  margin-right: 7vw;
  max-width: 560px;
}

/* mobile-only panels */
.hero-intro {
  display: none;
  min-height: 90vh;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  padding: 0;
}

.hero-details {
  display: none;
  min-height: 70vh;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 0;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/couple/hero-bg-2.png');
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.hero-intro-box {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 3rem 3rem 4rem;
  margin-right: 7vw;
  margin-bottom: 2.5rem;
  max-width: 560px;
  background: rgba(250,247,242,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-details-inner {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 4rem 3rem;
  margin-right: 7vw;
  max-width: 560px;
  background: rgba(250,247,242,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* .subheading: font-family, font-weight, text-transform inherited; override size + tracking */
.hero-eyebrow {
  color: var(--dusty-rose);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

/* .title: font-family, font-weight, letter-spacing inherited; override size + line-height */
.hero-title {
  font-size: clamp(56px, 7vw, 104px);
  line-height: var(--leading-tight);
  color: var(--bark);
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
  margin-bottom: 0;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 1.75rem 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.hero-divider-line {
  width: 60px;
  height: 0.5px;
  background: var(--blush);
}

.hero-divider-diamond {
  width: 5px;
  height: 5px;
  background: var(--dusty-rose);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* .subtitle: font-family, font-weight, text-transform inherited; override size + tracking */
.hero-date {
  color: var(--mist);
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  margin-bottom: 0.4rem;
}

/* .subtitle: font-family, font-weight, text-transform inherited; override size + tracking */
.hero-location {
  color: var(--mist);
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

/* ── BUTTONS ── */

/* .btn-text: all type inherited */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--deep-rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--dusty-rose); }

.btn-outline {
  background: transparent;
  color: var(--bark);
  border: 0.5px solid var(--parchment);
}
.btn-outline:hover { border-color: var(--dusty-rose); color: var(--deep-rose); }

/* ── COUNTDOWN ── */

.countdown-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 2rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 1.25rem;
  border: 0.5px solid rgba(212,145,122,0.3);
  background: rgba(250,247,242,0.85);
  min-width: 72px;
}

/* Typography: .heading-md in styles.css */
.countdown-num {
  color: var(--bark);
  display: block;
}

/* Typography: .subheading in styles.css */
.countdown-label {
  color: var(--mist);
  display: block;
  margin-top: 4px;
}

/* ── VENUE ── */

.venue-section {
  background: url('../images/couple/hero-bg-2.png') left top / cover no-repeat fixed;
  padding: 4rem 2rem 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.venue-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  border: 2.5px solid var(--blush);
  background: rgba(250,247,242,0.95);
  overflow: hidden;
  z-index: 2;
}

.venue-inner::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--blush);
  pointer-events: none;
  z-index: 3;
}

.venue-vine {
  position: absolute;
  width: 240px;
  pointer-events: none;
  filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(50deg) brightness(0.7);
  opacity: 0.65;
}

.venue-vine--top  { top: 28px; left: 28px; }
.venue-vine--bottom { bottom: 28px; right: 28px; transform: rotate(180deg); }

.venue-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 4rem 290px;
}

.venue-date { color: var(--dusty-rose); }

.venue-at {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.venue-name {
  color: var(--bark);
  margin: 0.5rem 0 2rem;
}

/* ── SHARED SECTION STYLES ── */

section { padding: 4rem 2rem 6rem; }

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* .subheading: font-family, font-weight, text-transform inherited; override size + tracking */
.eyebrow {
  color: var(--dusty-rose);
  display: block;
  margin-bottom: 1rem;
}

/* .heading: font-family, font-weight, line-height, letter-spacing inherited; override size */
.section-heading {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--bark);
  margin-bottom: 1.5rem;
}
.section-heading em {
  font-style: italic;
  color: var(--deep-rose);
}

.thin-rule {
  width: 36px;
  height: 0.5px;
  background: var(--blush);
  margin: 1.5rem 0;
}

/* .paragraph: font-family, font-weight inherited; override size + line-height */
p.body {
  color: var(--mist);
  max-width: 580px;
}

/* ── SECTION ALIGNMENT ── */

.section--right .eyebrow,
.section--right .section-heading { text-align: right; }
.section--right .thin-rule { margin-left: auto; margin-right: 0; }

/* ── PHOTO STRIP ── */

.photo-strip {
  background: var(--ivory);
  padding: 0;
  overflow: hidden;
}

.photo-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  height: 380px;
}

.photo-block {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* .title: font-family inherited; override size + color */
.photo-placeholder {
  color: var(--blush);
  opacity: 0.7;
  text-align: center;
  padding: 1rem;
}

.photo-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250,247,242,0.9);
  backdrop-filter: blur(6px);
  padding: 0.6rem 1.5rem;
  white-space: nowrap;
}

/* .title: font-family inherited; override size + color */
.photo-caption span {
  color: var(--bark);
}

/* ── OUR STORY ── */

.story-section { background: var(--ivory); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.story-img { position: relative; }

.story-img-frame {
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.story-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* .title: font-family inherited; override size + color */
.story-img-frame-placeholder {
  color: var(--blush);
  opacity: 0.5;
}

.story-img-frame::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 0.5px solid rgba(212,145,122,0.3);
  pointer-events: none;
}

.story-img::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 0.5px solid var(--sage);
  z-index: -1;
}

.story-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  padding: 0.6rem 1.25rem;
  background: var(--mist-green);
  border: 0.5px solid var(--sage);
}

/* .subheading: font-family, font-weight, text-transform inherited; override size + color */
.story-date-badge span {
  color: var(--garden);
}

.badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── EVENTS ── */

.events-section { background: var(--ivory); }

.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.events-left {
  position: relative;
}

.events-section .section-inner { position: relative; }

.events-flower {
  position: absolute;
  width: 260px;
  pointer-events: none;
  filter: brightness(0) invert(1) sepia(1) saturate(8) hue-rotate(305deg) brightness(0.88);
  opacity: 0.32;
  z-index: 0;
}

.events-flower--tl {
  top: 2rem;
  left: -5rem;
}

.events-flower--br {
  bottom: -6rem;
  right: -5rem;
  transform: rotate(180deg);
}

.events-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.5rem 0;
}

.events-divider-line {
  width: 48px;
  height: 0.5px;
  background: var(--blush);
}

.events-divider-diamond {
  width: 5px;
  height: 5px;
  background: var(--dusty-rose);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.events-teaser {
  color: var(--mist);
  max-width: 400px;
  margin: 0 0 2.5rem;
  position: relative;
  z-index: 1;
}

.events-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── VERTICAL TIMELINE ── */

.v-timeline {
  border-right: 0.5px solid var(--blush);
  padding-right: 1.75rem;
}

.v-timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.v-timeline-item:last-child { padding-bottom: 0; }

.v-tl-node {
  position: absolute;
  right: calc(-1.75rem - 4px);
  top: 2px;
}

.v-tl-diamond {
  width: 8px;
  height: 8px;
  background: var(--ivory);
  border: 1px solid var(--dusty-rose);
  transform: rotate(45deg);
}

.v-tl-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}

.v-tl-time {
  color: var(--dusty-rose);
  font-weight: 300;
}

.v-tl-name { color: var(--bark); }

/* ── TRAVEL ── */

.travel-section { background: var(--ivory); }

.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  margin-top: 3rem;
}

.travel-card {
  padding: 1.5rem 0 1.75rem;
  border-top: 0.5px solid var(--blush);
  background: transparent;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: border-color 0.25s;
}
.travel-card:nth-child(3),
.travel-card:nth-child(4) { border-bottom: 0.5px solid var(--blush); }
.travel-card:hover { border-color: var(--dusty-rose); }

/* Small diamond bullet */
.travel-card::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--dusty-rose);
  transform: rotate(45deg);
  margin-bottom: 1rem;
}
.travel-card:nth-child(2)::before,
.travel-card:nth-child(4)::before { background: var(--sage); }

.travel-title {
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.travel-detail {
  font-weight: 300;
  line-height: var(--leading-normal);
  color: var(--mist);
}

.travel-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-3xl);
  text-transform: uppercase;
  color: var(--deep-rose);
  text-decoration: none;
  border-bottom: 0.5px solid var(--blush);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.travel-card:hover .travel-link { color: var(--bark); border-color: var(--parchment); }

/* ── REGISTRY ── */

.registry-section {
  background: var(--ivory);
  position: relative;
}

.registry-section .section-inner {
  position: relative;
  z-index: 1;
}

.registry-vine {
  position: absolute;
  right: 7.5rem;
  top: 72%;
  transform: translateY(-50%);
  width: 266px;
  pointer-events: none;
  filter: brightness(0) invert(1) sepia(1) saturate(8) hue-rotate(305deg) brightness(0.88);
  opacity: 0.32;
  z-index: 0;
}

.registry-links {
  margin-top: 2.5rem;
}

/* ── FAQS ── */

.faq-section { background: var(--ivory); }

.faq-list {
  margin-top: 2rem;
  border-top: 0.5px solid var(--blush);
}

.faq-item {
  border-bottom: 0.5px solid var(--blush);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: var(--bark);
  user-select: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: var(--tracking-sm);
}
.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--dusty-rose);
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] .faq-q::after {
  content: '×';
}

.faq-a {
  padding: 0 0 1.5rem;
  color: var(--mist);
  max-width: 640px;
}

/* ── RSVP ── */

.rsvp-section {
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rsvp-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 0.5px solid rgba(212,145,122,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.rsvp-section::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 0.5px solid rgba(212,145,122,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.rsvp-section .section-inner  { position: relative; z-index: 1; }
.rsvp-section .eyebrow         { color: var(--dusty-rose); }
.rsvp-section .section-heading { color: var(--bark); }
.rsvp-section .thin-rule       { background: var(--blush); margin: 1.5rem auto; }
.rsvp-section p.body           { color: var(--mist); margin: 0 auto 2.5rem; }

.rsvp-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 1rem;
}

/* .paragraph: font-family, font-weight inherited; override size, weight, tracking
   font-family explicitly set — inputs don't inherit by default */
.rsvp-input {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 300;
  padding: 1rem 1.25rem;
  border: 0.5px solid var(--blush);
  background: var(--white);
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s;
}
.rsvp-input::placeholder { color: var(--mist); opacity: 0.5; }
.rsvp-input:focus         { border-color: var(--dusty-rose); }

/* .btn-text: all type inherited
   font-family explicitly set — buttons don't inherit by default */
.rsvp-btn {
  font-family: var(--font-body);
  padding: 1rem 1.5rem;
  background: var(--dusty-rose);
  color: var(--white);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.rsvp-btn:hover { background: var(--deep-rose); }

/* .paragraph: font-family, font-weight inherited; override size + tracking */
#guest-result {
  min-height: 32px;
  font-weight: 300;
  color: var(--apricot);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */

footer {
  background: var(--bark);
  border-top: 0.5px solid rgba(237,207,200,0.08);
  padding: 2.5rem 2rem;
  text-align: center;
}

/* .title: font-family inherited; override size + color */
.footer-logo {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.25rem;
}

/* .nav-link: all type inherited; override font-weight + tracking for footer variant */
.footer-links a {
  font-weight: 400;
  color: rgba(232,221,208,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(232,221,208,0.7); }

/* .subtitle: font-family, font-weight, text-transform inherited; override size + tracking */
.footer-text {

  color: rgba(232,221,208,0.2);
}

/* ═══════════════════════════════════════
   MOBILE NAV TOGGLE (hamburger)
═══════════════════════════════════════ */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── NAV ── */
  nav {
    flex-wrap: wrap;
    padding: 0.85rem 1.5rem;
    align-items: center;
    gap: 0;
  }
  .nav-logo { order: 1; flex: 1; }
  .nav-logo img { height: 44px; }
  .nav-toggle { display: flex; order: 2; }
  .nav-links {
    display: none;
    order: 3;
    flex: 0 0 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: none;
    margin: 0;
    justify-content: flex-start;
  }
  .nav-links--left {
    padding: 0.75rem 0 0;
    border-top: 0.5px solid var(--parchment);
    margin-top: 0.75rem;
  }
  .nav-links--right {
    padding: 0 0 0.75rem;
  }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 0.55rem 0; }
  nav.nav-open .nav-links { display: flex; }

  /* ── HERO ── */
  .hero { display: none; }
  .hero-bg {
    background-image: url('../images/couple/hero-bg-vertical.png');
    background-position: center top;
  }
  .hero-intro {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1.5rem 2.5rem;
  }
  .hero-intro-box {
    text-align: center;
    padding: 1.75rem 1.5rem 2rem;
    margin-right: 0;
    margin-bottom: 0;
    max-width: 420px;
    width: 100%;
  }
  .hero-eyebrow { margin-bottom: 0.5rem; }
  .hero-details {
    display: flex;
    min-height: 60vh;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 1.5rem;
  }
  .hero-details .countdown-bar {
    position: static;
    padding-bottom: 0;
  }
  .hero-details-inner {
    text-align: center;
    padding: 2rem 1.75rem 2.25rem;
    margin-right: 0;
    max-width: 420px;
    width: 100%;
  }
  .hero-divider { justify-content: center; margin: 0.9rem 0; }
  .hero-cta { justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
  .countdown-bar { gap: 0.5rem; padding: 0 1rem 1.5rem; }
  .countdown-unit { padding: 0.5rem 0.75rem; min-width: 60px; }

  /* ── VENUE ── */
  .venue-section { background: transparent; }
  .venue-content { padding: 3rem 1.5rem; }

  /* ── SHARED SECTIONS ── */
  section { padding: 3rem 1.5rem 4rem; }
  .section--right .eyebrow,
  .section--right .section-heading { text-align: left; }
  .section--right .thin-rule { margin-left: 0; margin-right: auto; }

  /* ── EVENTS (homepage) ── */
  .events-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .events-flower { display: none; }
  .events-left { text-align: center; }
  .events-divider { justify-content: center; }
  .events-teaser { margin: 0 auto 2rem; }
  .events-cta { text-align: center; }
  .v-timeline { border-right: none; border-left: 0.5px solid var(--blush); padding-right: 0; padding-left: 1.75rem; }
  .v-tl-node { right: auto; left: calc(-1.75rem - 4px); }
  .v-tl-content { text-align: left; }

  /* ── TRAVEL GRID (homepage) ── */
  .travel-grid { grid-template-columns: 1fr; gap: 0; }
  .travel-vine { display: none; }

  /* ── REGISTRY ── */
  .registry-vine { display: none; }

  /* ── STORY ── */
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img { order: -1; }
  .story-img::before { display: none; }

  /* ── FAQ ── */
  .faq-q { padding: 1.25rem 0; }

  /* ── FOOTER ── */
  .footer-links { flex-wrap: wrap; gap: 0.75rem 1.5rem; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-intro-box { padding: 2rem 1rem 2.5rem; }
  .hero-details-inner { padding: 2.5rem 1.25rem; max-width: 100%; }
  .countdown-bar { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
  .countdown-unit { min-width: 55px; }
  section { padding: 2.5rem 1rem 3.5rem; }
  .travel-grid { gap: 0; }
}