/* ============================================================
   SORA Blue House — Design System
   Luxury Minimal · EN/JA
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Tokens ── */
:root {
  --bg:       #f2f7fc;
  --bg-2:     #e4eef8;
  --sky:      #1a7fc1;
  --sky-l:    #4da3d8;
  --deep:     #0c2d54;
  --deep-l:   #164272;
  --ink:      #0c2d54;
  --ink-2:    #5b7a9a;
  --gold:     #a08252;
  --gold-l:   #c4a97d;
  --white:    #ffffff;
  --border:   rgba(12,45,84,.12);
  --font-d:   'Cormorant Garamond', Georgia, serif;
  --font-b:   'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --dur:      .5s;
  --max:      1200px;
  --wide:     1440px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* ── Typography ── */
.d1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.d2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}
.d3 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.9;
}

/* ── Layout ── */
.container  { max-width: var(--max);  margin-inline: auto; padding-inline: clamp(20px, 5vw, 60px); }
.container--wide { max-width: var(--wide); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.container--narrow { max-width: 760px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.section { padding-block: clamp(60px, 10vw, 120px); }
.section--sm { padding-block: clamp(40px, 6vw, 72px); }
.section--bg { background: var(--bg-2); }
.section--dark { background: var(--deep); color: var(--white); }

.divider { width: 1px; height: 40px; background: var(--gold); margin-inline: auto; }
.rule { border: none; border-top: 1px solid var(--border); margin-block: 0; }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(12,45,84,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header.scrolled {
  background: rgba(12,45,84,.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--dur);
}
.logo:hover { opacity: .8; }
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.logo__text {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.main-nav a {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--dur);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--sky-l);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--white); }

/* ── Dropdown nav ── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,18,32,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 200;
}
.nav-item:hover .nav-item__sub {
  opacity: 1;
  pointer-events: auto;
}
/* Transparent bridge fills the gap so mouse can reach submenu */
.nav-item__sub::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -20px; right: -20px;
  height: 16px;
}
.nav-item__sub a {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: 8px 18px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-item__sub a::after { display: none; }
.nav-item__sub a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
/* Mobile sub-nav indented links */
.mobile-nav .mobile-sub {
  font-size: .72rem;
  letter-spacing: .08em;
  opacity: .55;
  min-height: 36px;
}

.nav-book {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--sky-l);
  color: var(--white);
  background: var(--sky);
  border-radius: 2px;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.nav-book:hover { background: var(--sky-l); border-color: var(--sky-l); }

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 4px;
  flex-shrink: 0;
}
.lang-toggle button {
  font-size: .68rem;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: 1px;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.lang-toggle button.active {
  background: var(--white);
  color: var(--deep);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.8);
  transition: all .3s;
}
.site-header.scrolled .hamburger span { background: rgba(255,255,255,.8); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--deep);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  padding: 80px 40px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  letter-spacing: .05em;
  min-height: 44px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.mobile-nav a:hover, .mobile-nav a:active { color: var(--white); }
.mobile-nav .mobile-book {
  margin-top: 20px;
  font-size: .75rem;
  font-family: var(--font-b);
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--sky);
  color: var(--white);
  border: 1px solid var(--sky);
  padding: 12px 32px;
  min-height: 44px;
  justify-content: center;
}
/* ✕ close button — lives outside .mobile-nav, shown via JS .visible class */
.mobile-close {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 200;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.18);
  border-radius: 50%;
}
.mobile-close.visible {
  display: flex;
}
.mobile-lang {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 4px;
  margin-top: 20px;
}
.mobile-lang .lang-btn {
  font-size: .72rem;
  letter-spacing: .12em;
  padding: 8px 16px;
  border-radius: 1px;
  color: rgba(255,255,255,.6);
  transition: all .2s;
  min-height: 36px;
}
.mobile-lang .lang-btn.active {
  background: var(--white);
  color: var(--deep);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,45,84,.75) 0%, rgba(12,45,84,.25) 50%, rgba(12,45,84,.1) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.hero__content .eyebrow { color: var(--sky-l); margin-bottom: 16px; }
.hero__content .d1 { margin-bottom: 20px; }
.hero__content .lead { color: rgba(255,255,255,.78); max-width: 500px; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-l);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: 160px;
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero .d2 { margin-bottom: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: #333; }
.btn--outline {
  border: 1px solid var(--sky);
  color: var(--sky);
}
.btn--outline:hover { background: var(--sky); color: var(--white); }
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: #8b6e3f; }
.btn--ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn svg { transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

/* ── Cards & Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 56px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }

/* Asymmetric split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.split--60 { grid-template-columns: 3fr 2fr; }
.split--40 { grid-template-columns: 2fr 3fr; }

.split__text .eyebrow { margin-bottom: 16px; }
.split__text .d3 { margin-bottom: 20px; }
.split__text .lead { margin-bottom: 32px; }

.split__img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.split__img:hover img { transform: scale(1.04); }

/* Aspect ratios */
.aspect-4-3  { aspect-ratio: 4/3; }
.aspect-3-4  { aspect-ratio: 3/4; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-1-1  { aspect-ratio: 1/1; }
.aspect-5-4  { aspect-ratio: 5/4; }

/* Spot cards */
.spot-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 2px;
  transition: border-color .3s, box-shadow .3s;
}
.spot-card:hover { border-color: var(--sky); box-shadow: 0 8px 32px rgba(26,127,193,.1); }
.spot-card__num {
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}
.spot-card__name {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.spot-card__dist {
  font-size: .75rem;
  color: var(--ink-2);
  letter-spacing: .06em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.spot-card__desc { font-size: .875rem; color: var(--ink-2); line-height: 1.8; }
.spot-card__meta { margin-top: 12px; font-size: .75rem; color: var(--gold); }

/* Amenity list */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.amenity-item {
  background: var(--bg);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  color: var(--ink-2);
}
.amenity-item__icon {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .08em;
  min-width: 28px;
  text-align: center;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.gallery-grid figure { overflow: hidden; border-radius: 2px; position: relative; }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figure:nth-child(1) { grid-column: span 7; grid-row: span 2; aspect-ratio: auto; }
.gallery-grid figure:nth-child(1) { min-height: 480px; }
.gallery-grid figure:nth-child(2) { grid-column: span 5; }
.gallery-grid figure:nth-child(3) { grid-column: span 5; }
.gallery-grid figure:nth-child(4) { grid-column: span 4; }
.gallery-grid figure:nth-child(5) { grid-column: span 4; }
.gallery-grid figure:nth-child(6) { grid-column: span 4; }

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.photo-strip figure { overflow: hidden; aspect-ratio: 3/4; }
.photo-strip figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.photo-strip figure:hover img { transform: scale(1.06); }

/* ── FAQ ── */
.faq-section { margin-bottom: 40px; }
.faq-section__title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  color: var(--sky);
  letter-spacing: .04em;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--sky); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after  { width: 1px; height: 12px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq-a__inner {
  padding-bottom: 20px;
  font-size: .875rem;
  color: var(--ink-2);
  line-height: 1.9;
  white-space: pre-line;
}

/* ── Info table ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table th {
  text-align: left;
  padding: 16px 20px 16px 0;
  font-weight: 400;
  color: var(--ink-2);
  min-width: 130px;
  white-space: nowrap;
  vertical-align: top;
}
.info-table td {
  padding: 16px 0;
  color: var(--ink);
  line-height: 1.8;
}

/* ── Fixed CTA bar ── */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 24px 14px;
  gap: 6px;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  border-top: 1px solid rgba(255,255,255,.08);
}
.fixed-cta.visible { transform: translateY(0); }
.fixed-cta__deal {
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--sky-l);
  text-transform: uppercase;
}
.fixed-cta a {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2px;
  transition: all .3s;
}
.fixed-cta a:hover { background: var(--white); color: var(--deep); }
.fixed-cta a.primary {
  background: var(--sky);
  border-color: var(--sky);
}
.fixed-cta a.primary:hover { background: var(--sky-l); border-color: var(--sky-l); }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: clamp(48px, 8vw, 96px) 0 clamp(24px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.footer-logo span { display: block; font-family: var(--font-b); font-size: .65rem; letter-spacing: .2em; color: rgba(255,255,255,.4); margin-top: 4px; }
.footer-desc { font-size: .8rem; line-height: 1.9; margin-top: 16px; }
.footer-col h4 {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .82rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: clamp(20px, 3vw, 36px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem;
}
.footer-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-line::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  display: block;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: .72rem;
  color: var(--ink-2);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-2); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--border); }

/* ── LINE button ── */
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: #fff;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  padding: 14px 28px;
  border-radius: 2px;
  transition: opacity .2s;
}
.line-btn:hover { opacity: .85; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-book { display: none; }
  .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .split, .split--60, .split--40, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .gallery-grid figure:nth-child(n) { grid-column: span 12 !important; min-height: 260px; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
