/* ============================================================
   Uncloud Coffee — vanilla CSS rebuild
   Design tokens + component styles (no framework)
   ============================================================ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
  /* Aurora sky-blue scale */
  --aurora-50: #f0f9ff;
  --aurora-100: #e0f2fe;
  --aurora-200: #bae6fd;
  --aurora-300: #7dd3fc;
  --aurora-400: #38bdf8;
  --aurora-500: #0ea5e9;
  --aurora-600: #0284c7;
  --aurora-700: #0369a1;
  --aurora-800: #075985;
  --aurora-900: #0c4a6e;

  /* Teal accent */
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;

  /* Gold / brass */
  --gold-400: #d4a853;
  --gold-500: #c49a3c;
  --gold-600: #a87d2a;

  /* Cream / warm white */
  --cream-50: #faf8f5;
  --cream-100: #f5f0e8;
  --cream-200: #ede5d8;

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5e;
  --text-muted: #8a8a9e;

  /* Brand contacts */
  --line-green: #06c755;
  --line-green-hover: #05a647;

  /* Fonts */
  --font-heading: "Prompt", system-ui, sans-serif;
  --font-body: "Sarabun", system-ui, sans-serif;

  /* Layout */
  --max-7xl: 80rem;
  --max-4xl: 56rem;
  --max-3xl: 48rem;
  --max-2xl: 42rem;
}

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--cream-50);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.font-heading {
  font-family: var(--font-heading);
}

/* ── Shared layout helpers ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-7xl);
  margin-inline: auto;
  padding-inline: 1rem;
}
.container--3xl {
  max-width: var(--max-3xl);
}
.container--4xl {
  max-width: var(--max-4xl);
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 4rem;
}
.section--alt {
  background-color: rgba(245, 240, 232, 0.4); /* cream-100/40 */
}
@media (min-width: 640px) {
  .section {
    padding-block: 5rem;
  }
}
@media (min-width: 768px) {
  .section {
    padding-block: 6rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding-block: 7rem;
  }
}
@media (min-width: 1280px) {
  .section {
    padding-block: 8rem;
  }
}

/* Section heading block */
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}
.section-rule {
  width: 3rem;
  height: 2px;
  margin: 1rem auto 0;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--aurora-400), var(--teal-400));
}
@media (min-width: 640px) {
  .section-head {
    margin-bottom: 2.5rem;
  }
  .section-head h2 {
    font-size: 1.875rem;
  }
  .section-rule {
    width: 4rem;
    margin-top: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .section-head {
    margin-bottom: 3.5rem;
  }
  .section-head h2 {
    font-size: 2.25rem;
  }
  .section-rule {
    margin-top: 1.5rem;
  }
}

/* Lead/intro paragraph */
.section-intro {
  max-width: var(--max-3xl);
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .section-intro {
    margin-bottom: 3rem;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .section-intro {
    margin-bottom: 3.5rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .section-intro {
    margin-bottom: 4rem;
  }
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s, border-color 0.2s;
}
@media (min-width: 640px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.btn-primary {
  background-color: var(--aurora-600);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--aurora-700);
}
.btn-outline {
  border-color: var(--aurora-200);
  background-color: var(--aurora-50);
  color: var(--aurora-700);
}
.btn-outline:hover {
  background-color: var(--aurora-100);
}
.btn-line {
  background-color: var(--line-green);
  color: #fff;
}
.btn-line:hover {
  background-color: var(--line-green-hover);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-gradient {
  background: linear-gradient(to right, var(--aurora-500), var(--teal-500));
  color: #fff;
}
.btn-gradient:hover {
  opacity: 0.9;
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(237, 229, 216, 0.5);
  background-color: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(12px);
}
.header-bar {
  display: flex;
  height: 4rem;
  max-width: var(--max-7xl);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .header-bar {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header-bar {
    padding-inline: 2rem;
  }
}
.header-logo img {
  height: 1.5rem;
  width: auto;
}
@media (min-width: 390px) {
  .header-logo img {
    height: 2rem;
  }
}
@media (min-width: 640px) {
  .header-logo img {
    height: 2.25rem;
  }
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-desktop a:hover {
  color: var(--aurora-600);
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .header-actions {
    gap: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .header-actions {
    gap: 0.75rem;
  }
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.5rem;
  background: none;
  border: none;
  transition: background-color 0.2s;
}
.icon-btn--phone {
  color: var(--aurora-600);
}
.icon-btn--phone:hover {
  background-color: var(--aurora-50);
}
.icon-btn--line {
  color: var(--line-green);
}
.icon-btn--line:hover {
  background-color: #f0fdf4;
}
.icon-btn--map {
  color: #4285f4;
}
.icon-btn--map:hover {
  background-color: #eff6ff;
}
.icon-btn--plain {
  color: var(--text-primary);
}
.hamburger {
  display: inline-flex;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ── Mobile menu overlay ─────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  background-color: #fff;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-top {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .mobile-menu-top {
    padding-inline: 1.5rem;
  }
}
.mobile-menu-top img {
  height: 1.5rem;
  width: auto;
}
@media (min-width: 390px) {
  .mobile-menu-top img {
    height: 2rem;
  }
}
.mobile-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--aurora-600);
}
.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid var(--cream-200);
  padding: 1.5rem;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 74, 110, 0.9),
    rgba(7, 89, 133, 0.6) 50%,
    rgba(12, 74, 110, 0.3)
  );
}
@media (min-width: 640px) {
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(12, 74, 110, 0.8),
      rgba(7, 89, 133, 0.35) 50%,
      transparent
    );
  }
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-7xl);
  margin-inline: auto;
  padding: 8rem 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .hero-content {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding-inline: 2rem;
  }
}
.hero-inner {
  max-width: 48rem;
}
.hero-tagline {
  margin-bottom: 1rem;
}
.hero-tagline p {
  display: inline-block;
  background-color: rgba(2, 132, 199, 0.3);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.hero-tagline .dash {
  margin-top: 0.5rem;
  height: 2px;
  width: 4rem;
  border-radius: 9999px;
  background-color: var(--gold-400);
}
.hero h1 {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.hero h1 span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-100);
}
.hero-desc {
  margin-bottom: 2rem;
  max-width: var(--max-2xl);
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--cream-200);
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-tagline {
    margin-bottom: 1.25rem;
  }
  .hero-tagline p {
    font-size: 1rem;
  }
  .hero-tagline .dash {
    width: 5rem;
  }
  .hero h1 {
    margin-bottom: 2rem;
    font-size: 2.25rem;
  }
  .hero h1 span {
    margin-top: 0.75rem;
    font-size: 1.5rem;
  }
  .hero-desc {
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .hero-tagline p {
    font-size: 1.125rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero h1 span {
    font-size: 1.875rem;
  }
  .hero-desc {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  .hero h1 span {
    font-size: 2.25rem;
  }
}

/* ============================================================
   About
   ============================================================ */
.about-card {
  max-width: var(--max-3xl);
  margin: 0 auto 2.5rem;
}
.about-card-inner {
  border-radius: 1rem;
  background-color: rgba(245, 240, 232, 0.5);
  padding: 1.5rem;
  text-align: center;
}
.about-card-inner p {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .about-card-inner {
    border-radius: 1.5rem;
    padding: 2rem;
  }
  .about-card-inner p {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .about-card-inner {
    padding: 2.5rem;
  }
  .about-card-inner p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .about-card-inner {
    padding: 3rem;
  }
}

/* About masonry image grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about-grid figure {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.about-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s;
}
.about-grid figure:hover img {
  transform: scale(1.05);
}
@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .about-grid .cell-tall {
    grid-column: span 3;
    grid-row: span 2;
  }
  .about-grid .cell-small {
    grid-column: span 2;
  }
  .about-grid .cell-tall img {
    aspect-ratio: auto;
  }
  .about-grid figure {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1024px) {
  .about-grid {
    gap: 1.25rem;
  }
  .about-grid figure {
    border-radius: 1.5rem;
  }
}

/* About story card */
.story-card {
  max-width: var(--max-4xl);
  margin: 0 auto 2.5rem;
}
.story-card-inner {
  border-radius: 1rem;
  border: 1px solid rgba(237, 229, 216, 0.8);
  background-color: var(--cream-50);
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.story-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.story-label .badge {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(212, 168, 83, 0.1);
  color: var(--gold-600);
}
.story-label span.txt {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.story-card-inner p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .story-card-inner {
    border-radius: 1.5rem;
    padding: 2rem;
  }
  .story-card-inner p {
    font-size: 1rem;
    line-height: 2;
  }
  .story-label .badge {
    height: 2.5rem;
    width: 2.5rem;
  }
  .story-label span.txt {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .story-card-inner {
    padding: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .story-card-inner {
    padding: 3rem;
  }
  .story-card-inner p {
    font-size: 1.125rem;
  }
}

/* About recognition banner */
.banner {
  max-width: var(--max-4xl);
  margin: 0 auto 2.5rem;
}
.banner-inner {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  border-left: 4px solid var(--gold-400);
  background-color: rgba(240, 249, 255, 0.5);
  padding: 1.25rem;
}
.banner-inner .badge {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--aurora-100);
  color: var(--aurora-600);
}
.banner-inner p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .banner-inner {
    gap: 1.25rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
  .banner-inner .badge {
    height: 2.5rem;
    width: 2.5rem;
  }
  .banner-inner p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .banner-inner {
    padding: 2rem;
  }
  .banner-inner .badge {
    height: 2.75rem;
    width: 2.75rem;
  }
  .banner-inner p {
    line-height: 2;
  }
}
@media (min-width: 1024px) {
  .banner-inner {
    padding: 2.5rem;
  }
  .banner-inner p {
    font-size: 1.125rem;
  }
}

.center {
  text-align: center;
}

/* ============================================================
   Two-column text + gallery (Menu / Ambiance)
   ============================================================ */
.split {
  margin-bottom: 3rem;
}
.split-grid {
  display: grid;
  align-items: center;
  gap: 1.5rem;
}
.split-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split-text h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}
.split-text p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .split {
    margin-bottom: 3.5rem;
  }
  .split-grid {
    gap: 2rem;
  }
  .split-text {
    gap: 1.25rem;
  }
  .split-text h3 {
    font-size: 1.25rem;
  }
  .split-text p {
    font-size: 1rem;
    line-height: 2;
  }
}
@media (min-width: 768px) {
  .split {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .split {
    margin-bottom: 5rem;
  }
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .split-text h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .split-grid {
    gap: 4rem;
  }
}
/* zig-zag: gallery first on desktop */
.split--reverse .gallery-col {
  order: 2;
}
.split--reverse .split-text {
  order: 1;
}
@media (min-width: 1024px) {
  .split--reverse .gallery-col {
    order: 1;
  }
  .split--reverse .split-text {
    order: 2;
  }
}

/* ============================================================
   Image gallery widget
   ============================================================ */
.gallery {
  width: 100%;
}
.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
}
.gallery-main > img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  animation: gallery-slide-in 0.3s ease;
}
@media (min-width: 640px) {
  .gallery-main {
    border-radius: 1rem;
  }
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.2s, color 0.2s;
}
.gallery-arrow:hover {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.gallery-arrow.prev {
  left: 0.375rem;
}
.gallery-arrow.next {
  right: 0.375rem;
}
@media (min-width: 640px) {
  .gallery-arrow {
    padding: 0.5rem;
  }
  .gallery-arrow.prev {
    left: 0.625rem;
  }
  .gallery-arrow.next {
    right: 0.625rem;
  }
}
.gallery-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .gallery-counter {
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
  }
}
.gallery-thumbs-wrap {
  position: relative;
  margin-top: 0.625rem;
}
@media (min-width: 640px) {
  .gallery-thumbs-wrap {
    margin-top: 0.75rem;
  }
}
.gallery-thumbs {
  display: flex;
  gap: 0.375rem;
  overflow-x: auto;
  padding-block: 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 640px) {
  .gallery-thumbs {
    gap: 0.5rem;
  }
}
.gallery-thumbs button {
  flex-shrink: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  background: none;
  border-radius: 0.375rem;
  opacity: 0.6;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.gallery-thumbs button:hover {
  opacity: 1;
}
.gallery-thumbs button.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--cream-50), 0 0 0 4px var(--aurora-500);
}
@media (min-width: 640px) {
  .gallery-thumbs button {
    border-radius: 0.5rem;
  }
}
.gallery-thumbs img {
  height: 3.5rem;
  width: 4.5rem;
  object-fit: cover;
}
@media (min-width: 640px) {
  .gallery-thumbs img {
    height: 4rem;
    width: 5rem;
  }
}
@media (min-width: 768px) {
  .gallery-thumbs img {
    height: 4.5rem;
    width: 5.5rem;
  }
}
.gallery-fade {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 2.5rem;
  background: linear-gradient(to left, var(--cream-50), transparent);
}
@media (min-width: 640px) {
  .gallery-fade {
    width: 3.5rem;
  }
}

@keyframes gallery-slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: 0.5rem;
  object-fit: contain;
  animation: gallery-slide-in 0.25s ease;
}
.lightbox-btn {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  color: #fff;
  transition: background-color 0.2s;
}
.lightbox-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
}
.lightbox-prev {
  left: 0.5rem;
}
.lightbox-next {
  right: 0.5rem;
}
@media (min-width: 640px) {
  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
  .lightbox-prev {
    left: 1rem;
    padding: 0.75rem;
  }
  .lightbox-next {
    right: 1rem;
    padding: 0.75rem;
  }
}
.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .lightbox-counter {
    font-size: 0.875rem;
  }
}

/* Menu / Ambiance CTA rows */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Tips callout */
.tips {
  margin-bottom: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--aurora-100);
  background-color: rgba(240, 249, 255, 0.5);
  padding: 1rem 1.25rem;
}
.tips p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .tips {
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .tips p {
    font-size: 1rem;
  }
}

/* ============================================================
   Location
   ============================================================ */
.location-grid {
  display: grid;
  align-items: start;
  gap: 2rem;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-info h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}
.location-info p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
.address-box {
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.25rem;
}
.address-box p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
.location-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.map-embed {
  overflow: hidden;
  border-radius: 0.75rem;
}
.map-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
}
@media (min-width: 640px) {
  .location-grid {
    gap: 2.5rem;
  }
  .location-info {
    gap: 2rem;
  }
  .location-info h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  .location-info p,
  .address-box p {
    font-size: 1rem;
    line-height: 2;
  }
  .location-cta {
    flex-direction: row;
  }
  .address-box {
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .map-embed {
    border-radius: 1rem;
  }
  .map-embed iframe {
    aspect-ratio: 4 / 3;
  }
}
@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .location-info h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .location-grid {
    gap: 4rem;
  }
}

/* ============================================================
   Hours table
   ============================================================ */
.hours-table-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table thead tr {
  border-bottom: 1px solid var(--cream-200);
  background-color: rgba(245, 240, 232, 0.6);
}
.hours-table th {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hours-table th:first-child {
  text-align: left;
}
.hours-table th:last-child {
  text-align: right;
}
.hours-table tbody tr {
  border-bottom: 1px solid var(--cream-100);
}
.hours-table tbody tr:last-child {
  border-bottom: 0;
}
.hours-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}
@media (min-width: 640px) {
  .hours-table-wrap {
    border-radius: 1rem;
  }
  .hours-table th {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .hours-table td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
.hours-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--text-muted);
}
.hours-note a {
  font-weight: 500;
  color: var(--aurora-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hours-note a:hover {
  color: var(--aurora-700);
}
@media (min-width: 640px) {
  .hours-note {
    margin-top: 2rem;
    font-size: 0.875rem;
  }
}

/* ============================================================
   Amenities grid
   ============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.amenity {
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
}
.amenity .emoji {
  font-size: 1.5rem;
  line-height: 1;
}
.amenity h3 {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.amenity p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .amenity {
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .amenity h3 {
    font-size: 1rem;
  }
  .amenity p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-lead {
  max-width: var(--max-3xl);
  margin: 0 auto 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reviews-lead p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
}
.review-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  font-style: italic;
  color: var(--text-secondary);
}
.review-card footer {
  margin-top: 1rem;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}
@media (min-width: 640px) {
  .reviews-lead {
    margin-bottom: 3rem;
    gap: 1.25rem;
  }
  .reviews-lead p {
    font-size: 1rem;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .review-card {
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .review-card p {
    font-size: 1rem;
  }
  .review-card footer {
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  .reviews-lead p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    gap: 2rem;
  }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-lead {
  max-width: var(--max-2xl);
}
.channels {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background-color 0.2s;
}
.channel:hover {
  border-color: var(--aurora-200);
  background-color: rgba(240, 249, 255, 0.4);
}
.channel .badge {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--aurora-100);
  color: var(--aurora-600);
}
.channel .meta {
  min-width: 0;
}
.channel .meta .label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.channel .meta .value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.contact-address {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.25rem;
  text-align: center;
}
.contact-address p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .channels {
    margin-bottom: 2.5rem;
    gap: 1rem;
  }
  .channel {
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .channel .badge {
    height: 2.75rem;
    width: 2.75rem;
  }
  .channel .meta .label {
    font-size: 1rem;
  }
  .channel .meta .value {
    font-size: 0.875rem;
  }
  .contact-address {
    margin-bottom: 2.5rem;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  .contact-address p {
    font-size: 1rem;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-item {
  border-radius: 0.75rem;
  border: 1px solid var(--cream-200);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-item p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-secondary);
}
@media (min-width: 640px) {
  .faq-list {
    gap: 1.5rem;
  }
  .faq-item {
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .faq-item h3 {
    font-size: 1rem;
  }
  .faq-item p {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .faq-item h3 {
    font-size: 1.125rem;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--aurora-900);
  color: var(--cream-100);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max-7xl);
  margin-inline: auto;
  padding: 3rem 1rem;
}
.footer-brand img {
  margin-bottom: 0.75rem;
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand .tagline {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-200);
}
.footer-brand p.desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(237, 229, 216, 0.7);
}
.footer-col h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--cream-100);
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(237, 229, 216, 0.7);
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer-hours li span:last-child {
  color: var(--cream-100);
}
.footer-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(237, 229, 216, 0.5);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(237, 229, 216, 0.7);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--teal-400);
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social a {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.5rem;
  color: rgba(237, 229, 216, 0.7);
  transition: background-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--teal-400);
}
.footer-social a.line-hover:hover {
  color: var(--line-green);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  max-width: var(--max-7xl);
  margin-inline: auto;
  padding: 1rem;
}
.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(237, 229, 216, 0.4);
}
.footer-legal {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(237, 229, 216, 0.4);
}
.footer-legal a {
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(237, 229, 216, 0.7);
}
.footer-legal .sep {
  margin-inline: 0.25rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 1.5rem;
  }
  .footer-bottom-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 2rem;
  }
  .footer-bottom-inner {
    padding-inline: 2rem;
  }
}

/* ============================================================
   Floating chat
   ============================================================ */
.floating-chat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media (min-width: 640px) {
  .floating-chat {
    bottom: 2rem;
    right: 2rem;
  }
}
.fc-actions {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.fc-actions.open {
  display: flex;
}
.fc-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fc-action .pill {
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.fc-action .circle {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s;
}
@media (min-width: 640px) {
  .fc-action .circle {
    height: 4rem;
    width: 4rem;
  }
}
.fc-action .circle.map {
  background-color: #4285f4;
}
.fc-action .circle.map:hover {
  background-color: #3367d6;
}
.fc-action .circle.phone {
  background-color: var(--aurora-600);
}
.fc-action .circle.phone:hover {
  background-color: var(--aurora-700);
}
.fc-action .circle.line {
  background-color: var(--line-green);
}
.fc-action .circle.line:hover {
  background-color: var(--line-green-hover);
}
.fc-action .circle.fb {
  background-color: #1877f2;
}
.fc-action .circle.fb:hover {
  background-color: #1565c0;
}
.fc-toggle {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--aurora-500), var(--teal-500));
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, background 0.2s;
}
.fc-toggle:hover {
  background: linear-gradient(to bottom right, var(--aurora-600), var(--teal-600));
}
@media (min-width: 640px) {
  .fc-toggle {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.fc-toggle.open {
  background: var(--text-primary);
  transform: rotate(90deg);
}
.fc-toggle.open:hover {
  background: rgba(26, 26, 46, 0.9);
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--aurora-900);
  padding: 1rem;
  color: var(--cream-100);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}
.cookie-banner.show {
  display: block;
}
.cookie-inner {
  max-width: var(--max-4xl);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(237, 229, 216, 0.8);
}
.cookie-inner p a {
  text-decoration: underline;
}
.cookie-inner p a:hover {
  color: var(--teal-400);
}
.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
}
.cookie-actions button {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  transition: background-color 0.2s;
}
.cookie-reject {
  border: 1px solid rgba(237, 229, 216, 0.3);
  background: transparent;
  color: var(--cream-200);
}
.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-accept {
  background-color: var(--teal-500);
  color: #fff;
}
.cookie-accept:hover {
  background-color: var(--teal-600);
}
@media (min-width: 640px) {
  .cookie-banner {
    padding: 1.5rem;
  }
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page {
  min-height: 100vh;
  background-color: var(--cream-50);
  display: flex;
  flex-direction: column;
}
.legal-header {
  border-bottom: 1px solid rgba(224, 242, 254, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.legal-header .inner {
  max-width: var(--max-3xl);
  margin-inline: auto;
  padding: 1rem;
}
@media (min-width: 640px) {
  .legal-header .inner {
    padding-inline: 1.5rem;
  }
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--aurora-700);
  transition: color 0.2s;
}
.legal-back:hover {
  color: var(--aurora-500);
}
.legal-main {
  flex: 1;
  max-width: var(--max-3xl);
  margin-inline: auto;
  width: 100%;
  padding: 2.5rem 1rem;
}
@media (min-width: 640px) {
  .legal-main {
    padding: 4rem 1.5rem;
  }
}
.legal-article {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-article h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aurora-900);
  margin-bottom: 0.5rem;
}
.legal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--aurora-800);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-article h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--aurora-700);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-article p {
  margin-bottom: 1rem;
}
.legal-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-article li {
  margin-bottom: 0.4rem;
}
.legal-article a {
  color: var(--aurora-600);
}
.legal-article a:hover {
  color: var(--aurora-500);
}
.legal-article .updated {
  color: var(--text-muted);
}
.legal-article code {
  font-size: 0.8rem;
  color: var(--aurora-600);
  font-family: ui-monospace, monospace;
}
.legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}
.legal-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}
.legal-table th {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--aurora-900);
  border-bottom: 1px solid var(--aurora-200);
}
.legal-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(224, 242, 254, 0.5);
  color: var(--text-secondary);
  vertical-align: top;
}
.legal-table td:first-child {
  font-weight: 500;
  color: var(--aurora-800);
}
.legal-footer {
  border-top: 1px solid rgba(224, 242, 254, 0.2);
}
.legal-footer .inner {
  max-width: var(--max-3xl);
  margin-inline: auto;
  padding: 1.5rem 1rem;
}
.legal-footer p {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (min-width: 640px) {
  .legal-footer .inner {
    padding-inline: 1.5rem;
  }
}
