/* =========================================================
   LIMNES SEASIDE — Style Sheet
   Mediterranean vacation rental website
   ========================================================= */

/* === 1. CUSTOM PROPERTIES (Design Tokens) === */
:root {
  /* Color Palette */
  --c-deep:    #1a3c5e;   /* deep Mediterranean / dark navy */
  --c-sea:     #2980b9;   /* bright Aegean blue */
  --c-sea-lt:  #d6eaf8;   /* pale sky blue */
  --c-sand:    #d4a843;   /* golden sand accent */
  --c-sand-lt: #fef9ee;   /* very pale sand */
  --c-stone:   #f0ebe3;   /* warm limestone background */
  --c-white:   #fdfcfa;   /* warm white */
  --c-text:    #2c2c2c;   /* main body text */
  --c-muted:   #6b7280;   /* secondary text */
  --c-border:  #e5ddd4;   /* subtle border */

  /* Typography */
  --font-display: 'Ubuntu', system-ui, sans-serif;
  --font-body: 'Ubuntu', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med:  300ms ease;
}

/* === 2. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--c-sea);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--c-sand);
  outline-offset: 3px;
}

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: var(--sp-sm); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: var(--sp-xs); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* === 4. LAYOUT UTILITIES === */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-sm);
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--sp-sm);
}

.section {
  padding-block: var(--sp-lg);
}

.section--alt {
  background: var(--c-stone);
}

.section--deep {
  background: var(--c-deep);
  color: var(--c-white);
}

.section--deep h2, .section--deep h3 { color: var(--c-white); }
.section--deep .lead, .section--deep p { color: rgba(255,255,255,.75); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: var(--sp-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--sp-sm);
}

/* === 5. NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem var(--sp-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-med), box-shadow var(--t-med), padding var(--t-med);
}

.nav--hero {
  /* Used on pages with a hero image — starts transparent */
  background: transparent;
  color: #fff;
}

.nav--scrolled,
.nav--solid {
  background: var(--c-deep);
  box-shadow: var(--shadow-md);
  padding-block: .7rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: inherit;
  text-decoration: none;
}

.nav--hero .nav__logo { color: #fff; }
.nav--scrolled .nav__logo,
.nav--solid .nav__logo { color: var(--c-sand); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  list-style: none;
}

.nav__menu a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav--hero .nav__menu a { color: rgba(255,255,255,.85); }
.nav--hero .nav__menu a:hover { color: #fff; }
.nav--scrolled .nav__menu a,
.nav--solid .nav__menu a { color: rgba(255,255,255,.8); }
.nav--scrolled .nav__menu a:hover,
.nav--solid .nav__menu a:hover { color: var(--c-sand); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--t-fast), opacity var(--t-fast);
  border-radius: 2px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-deep);
    flex-direction: column;
    padding: var(--sp-sm);
    gap: var(--sp-sm);
    display: none;
    box-shadow: var(--shadow-md);
  }

  .nav__menu--open { display: flex; }
  .nav__menu a { color: rgba(255,255,255,.85) !important; font-size: 1rem; }
}

/* === 6. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-sand);
  color: var(--c-deep);
}
.btn--primary:hover { background: #c59a36; box-shadow: 0 4px 14px rgba(212,168,67,.4); }

.btn--secondary {
  background: transparent;
  color: var(--c-deep);
  border-color: var(--c-deep);
}
.btn--secondary:hover { background: var(--c-deep); color: #fff; }

.btn--white {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn--white:hover { background: rgba(255,255,255,.25); }

.btn--airbnb {
  background: #FF5A5F;
  color: #fff;
  border-color: transparent;
}
.btn--airbnb:hover { background: #e54e53; box-shadow: 0 4px 14px rgba(255,90,95,.4); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
}

/* === 7. BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge--primary { background: var(--c-sea-lt); color: var(--c-sea); }
.badge--sand    { background: #fef3d0; color: #8a6a00; }

/* === 8. HERO SECTION === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}

.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 45, 0.35) 0%,
    rgba(10, 25, 45, 0.55) 60%,
    rgba(10, 25, 45, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: var(--sp-sm);
}

.hero__eyebrow {
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: var(--sp-xs);
  font-weight: 500;
}

.hero__title {
  color: #fff;
  margin-bottom: var(--sp-sm);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: var(--sp-md);
  max-width: 520px;
  margin-inline: auto;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === 9. PROPERTY HERO (individual property pages) === */
.property-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.property-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.property-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,45,.85) 0%, rgba(10,25,45,.2) 60%, transparent 100%);
}

.property-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-md) var(--sp-sm) var(--sp-md);
  max-width: 1200px;
  margin-inline: auto;
}

.property-hero__title {
  color: #fff;
  margin-bottom: .5rem;
}

.property-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.property-hero__meta span {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

.property-hero__meta span::after {
  content: '·';
  margin-left: .5rem;
  margin-right: .1rem;
  opacity: .5;
}
.property-hero__meta span:last-child::after { content: ''; }

/* === 10. PROPERTY CARDS (homepage) === */
.property-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.property-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.property-card:hover .property-card__img { transform: scale(1.05); }

.property-card__body {
  padding: var(--sp-sm) var(--sp-sm) var(--sp-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-card__badges {
  display: flex;
  gap: .4rem;
  margin-bottom: .75rem;
}

.property-card__title {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.property-card__stats {
  display: flex;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
  flex-wrap: wrap;
}

.property-card__stat {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .875rem;
  color: var(--c-muted);
}

.property-card__stat svg { width: 16px; height: 16px; flex-shrink: 0; }

.property-card__desc {
  color: var(--c-muted);
  font-size: .9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-sm);
}

/* === 11. GALLERY === */
.gallery__grid {
  columns: 1;
  column-gap: .5rem;
}

.gallery__grid a {
  display: block;
  break-inside: avoid;
  margin-bottom: .5rem;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery__grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--t-fast), transform var(--t-med);
}

.gallery__grid a:hover img {
  opacity: .88;
  transform: scale(1.02);
}

@media (min-width: 640px) { .gallery__grid { columns: 2; } }
@media (min-width: 1024px) { .gallery__grid { columns: 3; } }

/* === 12. LIGHTBOX === */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox.lightbox--open { display: flex; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 32, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem 1rem 1rem;
}

.lightbox__figure {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.lightbox__caption {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  margin-top: .75rem;
  text-align: center;
  max-width: 600px;
}

.lightbox__counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  letter-spacing: .08em;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  z-index: 2;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  z-index: 2;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.25); }

/* === 13. PROPERTY DETAILS LAYOUT === */
.property-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

@media (min-width: 900px) {
  .property-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.property-description p { color: var(--c-muted); }
.property-description ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-sm) 0;
}
.property-description li {
  padding: .4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--c-muted);
}
.property-description li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-sand);
  font-weight: 700;
}

/* === 14. BOOKING SIDEBAR === */
.booking-sidebar {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-sm) var(--sp-md);
  box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .booking-sidebar {
    position: sticky;
    top: 100px;
  }
}

.booking-sidebar__title {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--c-muted);
  margin-bottom: var(--sp-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.booking-sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: var(--sp-md);
  padding: var(--sp-sm) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.booking-sidebar__stat {
  text-align: center;
}

.booking-sidebar__stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-deep);
  font-family: var(--font-display);
}

.booking-sidebar__stat-label {
  font-size: .75rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.booking-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.booking-sidebar__note {
  font-size: .8rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: .5rem;
  line-height: 1.5;
}

/* === 15. AMENITIES === */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: .9rem;
  color: var(--c-text);
}

.amenity svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-sea);
}

/* === 16. NEARBY / LOCATION === */
.nearby-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .5rem;
}

.nearby-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  background: var(--c-white);
  border-radius: var(--r-md);
  font-size: .9rem;
  border: 1px solid var(--c-border);
}

.nearby-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c-sand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === 17. WHY BOOK DIRECT === */
.benefit-card {
  text-align: center;
  padding: var(--sp-md);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: var(--c-sea-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-sm);
  color: var(--c-sea);
}

.benefit-card__icon svg { width: 26px; height: 26px; }

/* === 18. MAP SECTION === */
.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
  background: var(--c-sea-lt);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* === 19. FOOTER === */
.footer {
  background: var(--c-deep);
  color: rgba(255,255,255,.7);
  padding-block: var(--sp-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: var(--sp-sm);
}

.footer__brand h3 {
  font-family: var(--font-display);
  color: var(--c-sand);
  margin-bottom: .5rem;
}

.footer__brand p { font-size: .875rem; }

.footer__links h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: .4rem; }
.footer__links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--c-sand); text-decoration: none; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--c-sand); }

/* === 20. SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === 21. CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: var(--sp-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: #fff;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.contact-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-sand);
  text-decoration: none;
}

.contact-card svg { width: 24px; height: 24px; color: var(--c-sand); flex-shrink: 0; }
.contact-card__label { font-size: .75rem; color: rgba(255,255,255,.55); }
.contact-card__value { font-weight: 600; font-size: .95rem; }

/* === 22. DIVIDER === */
.divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin-block: var(--sp-md);
}

/* === 23. MISC === */
.text-center { text-align: center; }
.text-muted { color: var(--c-muted); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }

/* Visually hidden (screen reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
