/* ==================================================================
   Variables
   ================================================================== */
:root {
  /* Brand Colors */
  --color-bg-body: #020617; /* matte obsidian */
  --color-bg-elevated: #020617;
  --color-bg-subtle: #0f172a; /* midnight sapphire */

  --color-border-subtle: #1e293b;

  --color-text-main: #e5e7eb; /* soft warm slate-grey */
  --color-text-muted: #9ca3af;
  --color-text-soft: #6b7280;

  --color-primary: #38bdf8; /* electric azure */
  --color-primary-soft: rgba(56, 189, 248, 0.12);

  --color-success: #22c55e;
  --color-warning: #facc15;
  --color-danger: #ef4444;

  /* Neutral Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", "Garamond", "Georgia", serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */

  --line-height-tight: 1.15;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Spacing scale (px values, use with rem where needed) */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadows - subtle, soft, suitable for dark luxury surfaces */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 12px 30px rgba(15, 23, 42, 0.75);
  --shadow-border-glow: 0 0 0 1px rgba(148, 163, 184, 0.12);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-base: 180ms ease-out;
  --transition-slow: 260ms ease-out;
}

/* Motion reduction */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}

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

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

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

body {
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

picture {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border-radius: 0;
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

ul,
ol {
  padding-left: 0;
}

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

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==================================================================
   Base Styles
   ================================================================== */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-main);
  background-color: var(--color-bg-body);
  background-image: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), #020617 70%);
}

main {
  min-height: 60vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: var(--line-height-tight);
  color: #f9fafb;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.5rem, 3.4vw, 3.5rem);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

p + p {
  margin-top: -0.25rem;
}

strong {
  font-weight: 600;
}

small {
  font-size: var(--font-size-sm);
}

code,
pre {
  font-family: var(--font-mono);
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-8) 0;
}

/* Links */
a[href] {
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0.22em;
  transition: color var(--transition-base), text-shadow var(--transition-base), opacity var(--transition-base);
}

a[href]:hover {
  color: #7dd3fc;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
}

a[href]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ==================================================================
   Accessibility & Focus
   ================================================================== */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.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;
}

.sr-only-focusable:active,
.sr-only-focusable:focus-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ==================================================================
   Layout & Utilities
   ================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section--dense {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

/* Flex utilities */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs {
  gap: var(--space-2);
}

.gap-sm {
  gap: var(--space-3);
}

.gap-md {
  gap: var(--space-4);
}

.gap-lg {
  gap: var(--space-6);
}

/* Grid utilities */
.grid {
  display: grid;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
}

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

/* Width helpers */
.w-100 {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Elevation & surface helpers */
.surface-base {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617 60%);
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.surface-elevated {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.94), #020617 55%);
  border: 1px solid rgba(30, 41, 59, 0.8);
  box-shadow: var(--shadow-soft), var(--shadow-border-glow);
}

.surface-outline-soft {
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(15, 23, 42, 0.9);
}

/* Spacing utilities (example set) */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-2); }
.mt-sm { margin-top: var(--space-3); }
.mt-md { margin-top: var(--space-4); }
.mt-lg { margin-top: var(--space-6); }
.mt-xl { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-2); }
.mb-sm { margin-bottom: var(--space-3); }
.mb-md { margin-bottom: var(--space-4); }
.mb-lg { margin-bottom: var(--space-6); }
.mb-xl { margin-bottom: var(--space-8); }

.py-section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

/* ==================================================================
   Components
   ================================================================== */

/* Hero Layout (static, asymmetric 60/40) */
.hero {
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: var(--space-10);
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
  }
}

.hero__eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}

.hero__title {
  font-size: clamp(2.6rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.hero__title span {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 34rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.hero__meta-item {
  min-width: 140px;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.hero__meta-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.hero__meta-value {
  margin-top: var(--space-1);
  font-family: var(--font-serif);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-8);
}

.hero__secondary-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hero__secondary-link a {
  color: var(--color-primary);
}

.hero__secondary-link a::after {
  content: " →";
}

.hero__media-shell {
  position: relative;
}

.hero__media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617 60%);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.hero__media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55), transparent 32%);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.hero__badge {
  position: absolute;
  right: 8%;
  top: 10%;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(56, 189, 248, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #eab308 0, #fbbf24 30%, #f97316 70%);
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.9);
}

.hero__badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__lower-card {
  position: absolute;
  left: 6%;
  bottom: -10%;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(15, 23, 42, 1);
  box-shadow: var(--shadow-subtle);
  max-width: 240px;
}

.hero__lower-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.hero__lower-text {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.hero__lower-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-primary);
}

.hero__lower-link::after {
  content: " ↗";
}

@media (max-width: 900px) {
  .hero__media-shell {
    margin-top: var(--space-4);
  }

  .hero__badge {
    top: 7%;
    right: 6%;
  }

  .hero__lower-card {
    position: static;
    margin-top: var(--space-4);
  }
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.82));
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.navbar-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.navbar-brand__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.navbar-brand__subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-nav a {
  position: relative;
  color: var(--color-text-soft);
  padding-bottom: 0.25rem;
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #38bdf8, #7dd3fc);
  transition: width var(--transition-base);
}

.navbar-nav a:hover {
  color: #e5e7eb;
}

.navbar-nav a:hover::after,
.navbar-nav a[aria-current="page"]::after {
  width: 100%;
}

.navbar-nav a[aria-current="page"] {
  color: #f9fafb;
}

.navbar-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
}

@media (max-width: 900px) {
  .navbar-nav {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
  }

  .nav-toggle__bar {
    width: 1.3rem;
    height: 1px;
    border-radius: 999px;
    background: #e5e7eb;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
}

.btn--primary {
  background: radial-gradient(circle at top left, #38bdf8, #0ea5e9 52%);
  color: #0b1120;
  border-color: rgba(15, 23, 42, 0.4);
  box-shadow: 0 18px 38px rgba(8, 47, 73, 0.75);
}

.btn--primary:hover {
  background: radial-gradient(circle at top left, #7dd3fc, #38bdf8 60%);
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(8, 47, 73, 0.9);
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.8);
  color: var(--color-text-main);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(148, 163, 184, 0.95);
}

.btn--subtle {
  background: rgba(15, 23, 42, 0.7);
  color: var(--color-text-muted);
  border-color: rgba(55, 65, 81, 0.9);
}

.btn--subtle:hover {
  background: rgba(15, 23, 42, 0.94);
  color: var(--color-text-main);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn[disabled],
.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

/* Forms */
.form-field {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 41, 59, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: var(--color-text-main);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.form-control::placeholder {
  color: var(--color-text-soft);
}

.form-control:focus-visible {
  outline: none;
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
  background: #020617;
}

.form-control[aria-invalid="true"],
.form-control:invalid {
  border-color: rgba(248, 113, 113, 0.9);
}

.form-help {
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.form-error {
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: #fecaca;
}

/* Cards */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617 65%);
  border: 1px solid rgba(30, 41, 59, 0.95);
  box-shadow: var(--shadow-subtle);
}

.card--subtle {
  padding: var(--space-5);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 41, 59, 0.8);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.card__header {
  margin-bottom: var(--space-4);
}

.card__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
}

/* Tags / Pills */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--color-text-soft);
}

.tag--accent {
  border-color: rgba(56, 189, 248, 0.7);
  color: #e0f2fe;
  background: rgba(8, 47, 73, 0.7);
}

/* Lists for gastronomy menu and lounge tables */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.75);
}

.menu-list__item:last-child {
  border-bottom: none;
}

.menu-list__name {
  font-family: var(--font-serif);
}

.menu-list__meta {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-top: 0.2rem;
}

.menu-list__price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* Timeline / Event listing */
.event-line {
  position: relative;
  padding-left: 1.8rem;
}

.event-line::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(56, 189, 248, 0.7), rgba(15, 23, 42, 0.9));
}

.event-line__item {
  position: relative;
  padding: 0.9rem 0 1.1rem;
}

.event-line__item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1.1rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle, #0ea5e9 0, #38bdf8 45%, #020617 60%);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.75);
}

.event-line__meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.2rem;
}

.event-line__title {
  font-family: var(--font-serif);
  font-size: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.95), #020617 60%);
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
}

.site-footer__meta {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================================================================
   Global injections
   ================================================================== */
ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
html, body {
  overflow-x: clip;
  max-width: 100%;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}
