:root {
      --bg: oklch(97% 0.012 102);
      --surface: oklch(99% 0.006 95);
      --fg: oklch(18% 0.018 120);
      --muted: oklch(47% 0.025 105);
      --border: oklch(86% 0.018 96);
      --accent: oklch(57% 0.105 151);
      --water: oklch(72% 0.105 214);
      --wood: oklch(48% 0.075 58);
      --warm-light: oklch(82% 0.085 76);
      --charcoal: oklch(23% 0.012 250);
      --forest: oklch(28% 0.052 135);
      --cream: oklch(94% 0.018 91);
      --shadow: 0 24px 80px color-mix(in oklch, var(--forest) 22%, transparent);
      --font-display: "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-body: "Source Sans 3", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 88% 4%, color-mix(in oklch, var(--warm-light) 28%, transparent), transparent 30rem),
        linear-gradient(180deg, var(--bg), color-mix(in oklch, var(--bg) 84%, var(--forest)));
      color: var(--fg);
      font-family: var(--font-body);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    button, input, textarea { font: inherit; }
    :focus-visible {
      outline: 3px solid color-mix(in oklch, var(--warm-light) 88%, var(--surface));
      outline-offset: 4px;
    }
    body.is-lightbox-open {
      overflow: hidden;
    }
    .site-header {
      position: fixed;
      inset: 18px 18px auto;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 18px;
      border: 1px solid color-mix(in oklch, var(--surface) 26%, transparent);
      border-radius: 999px;
      background: color-mix(in oklch, var(--forest) 72%, transparent);
      color: var(--surface);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 42px color-mix(in oklch, var(--charcoal) 32%, transparent);
      transition:
        inset 360ms cubic-bezier(0.23, 1, 0.32, 1),
        padding 360ms cubic-bezier(0.23, 1, 0.32, 1),
        border-radius 360ms cubic-bezier(0.23, 1, 0.32, 1),
        background 360ms cubic-bezier(0.23, 1, 0.32, 1),
        border-color 360ms cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 360ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .site-header.is-scrolled {
      inset: 0 0 auto;
      padding: 12px clamp(18px, 5vw, 84px);
      border-radius: 0;
      border-color: color-mix(in oklch, var(--surface) 10%, transparent);
      background: color-mix(in oklch, var(--forest) 90%, var(--charcoal));
      box-shadow: 0 12px 36px color-mix(in oklch, var(--charcoal) 20%, transparent);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: color-mix(in oklch, var(--surface) 16%, transparent);
      border: 1px solid color-mix(in oklch, var(--surface) 24%, transparent);
    }
    .brand-mark svg { width: 19px; height: 19px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 13px;
      font-weight: 520;
      letter-spacing: 0.02em;
      padding: 10px 12px;
      border-radius: 999px;
      color: color-mix(in oklch, var(--surface) 86%, transparent);
      transition: background 180ms cubic-bezier(0.23, 1, 0.32, 1), color 180ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav-links a:hover {
      background: color-mix(in oklch, var(--surface) 14%, transparent);
      color: var(--surface);
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      background: var(--surface);
      color: var(--forest);
      text-decoration: none;
      font-weight: 620;
      letter-spacing: 0.02em;
      transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav-cta:hover { transform: translateY(-2px); }
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: minmax(0, 0.93fr) minmax(390px, 0.72fr);
      gap: clamp(22px, 4vw, 70px);
      align-items: end;
      padding: clamp(104px, 11vw, 150px) clamp(18px, 5vw, 84px) clamp(34px, 5vw, 72px);
      background: var(--forest);
      color: var(--surface);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, color-mix(in oklch, var(--forest) 86%, transparent), transparent 72%),
        linear-gradient(180deg, transparent 55%, color-mix(in oklch, var(--charcoal) 58%, transparent));
      z-index: 1;
      pointer-events: none;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.94) brightness(0.56);
      transform: scale(1.04);
      animation: hero-breathe 16s ease-out forwards;
    }
    @keyframes hero-breathe {
      from { transform: scale(1.08); }
      to { transform: scale(1.01); }
    }
    .hero-copy, .booking-card {
      position: relative;
      z-index: 2;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 12px;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: color-mix(in oklch, var(--surface) 78%, transparent);
    }
    .eyebrow::before {
      content: "";
      width: 36px;
      height: 1px;
      background: currentColor;
      opacity: 0.68;
    }
    h1, h2, h3 {
      font-family: var(--font-display);
      margin: 0;
      text-wrap: balance;
    }
h1 {
  max-width: 12ch;
  margin-top: 24px;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 590;
}

h1 span {
  display: block;
}
    .hero-lede {
      max-width: 58ch;
      margin: 28px 0 0;
      font-size: clamp(19px, 1.7vw, 27px);
      line-height: 1.48;
      color: color-mix(in oklch, var(--surface) 86%, transparent);
    }
    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .button {
      min-height: 50px;
      border: 1px solid transparent;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 20px;
      text-decoration: none;
      font-weight: 620;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), background 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .button svg { width: 18px; height: 18px; }
    .button:hover { transform: translateY(-2px); }
    .button-primary {
      background: var(--surface);
      color: var(--forest);
    }
    .button-secondary {
      color: var(--surface);
      border-color: color-mix(in oklch, var(--surface) 26%, transparent);
      background: color-mix(in oklch, var(--surface) 10%, transparent);
    }
    .booking-card {
      width: min(100%, 430px);
      justify-self: end;
      padding: 22px;
      border: 1px solid color-mix(in oklch, var(--surface) 22%, transparent);
      border-radius: 28px;
      background: color-mix(in oklch, var(--surface) 13%, transparent);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }
    .booking-card .card-top {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: start;
      padding-bottom: 18px;
      border-bottom: 1px solid color-mix(in oklch, var(--surface) 20%, transparent);
    }
    .booking-card strong {
      display: block;
      font-size: 19px;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .booking-card small {
      display: block;
      margin-top: 6px;
      color: color-mix(in oklch, var(--surface) 70%, transparent);
    }
    .pulse-dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      margin-top: 5px;
      background: var(--water);
      box-shadow: 0 0 0 0 color-mix(in oklch, var(--water) 58%, transparent);
      animation: pulse 2.6s 3 both;
      flex: 0 0 auto;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--water) 52%, transparent); }
      70% { box-shadow: 0 0 0 18px transparent; }
      100% { box-shadow: 0 0 0 0 transparent; }
    }
    .quick-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }
    .quick-fact {
      padding: 14px;
      border-radius: 18px;
      background: color-mix(in oklch, var(--surface) 12%, transparent);
    }
    .quick-fact span {
      display: block;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: color-mix(in oklch, var(--surface) 58%, transparent);
    }
    .quick-fact b {
      display: block;
      margin-top: 4px;
      font-size: 20px;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.01em;
    }
    main { background: var(--bg); }
    section {
      position: relative;
      padding: clamp(68px, 9vw, 132px) clamp(18px, 5vw, 84px);
    }
    .section-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 82px);
      align-items: start;
      max-width: 1320px;
      margin: 0 auto;
    }
    .section-kicker {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(34px, 5vw, 76px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      font-weight: 590;
      color: var(--fg);
    }
    .section-copy {
      max-width: 64ch;
      font-size: clamp(17px, 1.35vw, 21px);
      color: var(--muted);
      margin: 18px 0 0;
    }
    .intro-panel {
      align-self: stretch;
      min-height: 520px;
      border-radius: 30px;
      overflow: hidden;
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .intro-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .story-card {
      display: grid;
      gap: 22px;
      padding-top: 8px;
    }
    .story-line {
      padding: 0 0 22px;
      border-bottom: 1px solid var(--border);
    }
    .story-line h3 {
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .story-line p {
      max-width: 60ch;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }
    .feature-band {
      background: var(--forest);
      color: var(--surface);
      overflow: hidden;
    }
    .feature-band .section-title,
    .feature-band .section-copy { color: var(--surface); }
    .feature-band .section-copy { color: color-mix(in oklch, var(--surface) 72%, transparent); }
    .feature-band .section-kicker { color: color-mix(in oklch, var(--surface) 62%, transparent); }
    .amenities {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
      counter-reset: amenity;
    }
    .amenity {
      counter-increment: amenity;
      min-height: 170px;
      padding: 22px;
      border: 1px solid color-mix(in oklch, var(--surface) 14%, transparent);
      border-radius: 24px;
      background: color-mix(in oklch, var(--surface) 7%, transparent);
      display: grid;
      align-content: start;
      gap: 10px;
      transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), background 220ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .amenity::before {
      content: "0" counter(amenity);
      width: fit-content;
      padding-bottom: 8px;
      border-bottom: 1px solid color-mix(in oklch, var(--warm-light) 55%, transparent);
      color: var(--warm-light);
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.12em;
    }
    .amenity:hover {
      transform: translateY(-5px);
      background: color-mix(in oklch, var(--surface) 11%, transparent);
    }
    .amenity h3 {
      font-size: 22px;
      line-height: 1.12;
      letter-spacing: -0.015em;
      margin-bottom: 0;
    }
    .amenity p {
      margin: 0;
      color: color-mix(in oklch, var(--surface) 68%, transparent);
      font-size: 15px;
    }
    .experience {
      background: color-mix(in oklch, var(--cream) 72%, var(--surface));
    }
    .day-flow {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      gap: clamp(24px, 4vw, 68px);
      max-width: 1320px;
      margin: 0 auto;
      align-items: center;
    }
    .flow-photo {
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .flow-photo img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }
    .timeline {
      display: grid;
      gap: 20px;
      margin-top: 34px;
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 86px minmax(0, 1fr);
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid color-mix(in oklch, var(--wood) 18%, var(--border));
    }
    .timeline-item time {
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--wood);
      font-variant-numeric: tabular-nums;
    }
    .timeline-item h3 {
      font-size: 24px;
      letter-spacing: -0.015em;
      margin-bottom: 6px;
    }
    .timeline-item p {
      margin: 0;
      color: var(--muted);
      max-width: 58ch;
    }
    .gallery {
      background: var(--surface);
    }
    .gallery-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 26px;
      max-width: 1320px;
      margin: 0 auto 34px;
    }
    .gallery-head .section-title { max-width: 11ch; }
    .gallery-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      padding: 6px;
      border-radius: 999px;
      background: var(--bg);
      border: 1px solid var(--border);
    }
    .filter-button {
      border: 0;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      font-weight: 570;
      letter-spacing: 0.02em;
      transition: background 180ms cubic-bezier(0.23, 1, 0.32, 1), color 180ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .filter-button[aria-pressed="true"] {
      background: var(--forest);
      color: var(--surface);
    }
    .gallery-grid {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr 0.85fr;
      grid-auto-rows: 260px;
      gap: 16px;
    }
    .gallery-tile {
      position: relative;
      border: 0;
      padding: 0;
      overflow: hidden;
      border-radius: 28px;
      background: var(--border);
      cursor: pointer;
      color: var(--surface);
      box-shadow: 0 14px 42px color-mix(in oklch, var(--charcoal) 10%, transparent);
    }
    .gallery-tile[hidden] {
      display: none;
    }
    .gallery-tile:nth-child(1) { grid-row: span 2; }
    .gallery-tile:nth-child(4) { grid-column: span 2; }
    .gallery-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1), filter 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .gallery-tile:hover img {
      transform: scale(1.045);
      filter: saturate(1.05);
    }
    .gallery-tile span {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: color-mix(in oklch, var(--charcoal) 64%, transparent);
      backdrop-filter: blur(12px);
      font-size: 13px;
      font-weight: 620;
      letter-spacing: 0.02em;
    }
    .details {
      background: var(--bg);
    }
    .details-layout {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
      gap: clamp(26px, 5vw, 78px);
      align-items: start;
    }
    .detail-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
    }
    .detail-item {
      padding: 24px;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: var(--surface);
    }
    .detail-item h3 {
      font-size: 22px;
      line-height: 1.12;
      letter-spacing: -0.015em;
      margin-bottom: 8px;
    }
    .detail-item p {
      margin: 0;
      color: var(--muted);
    }
    .contact-panel {
      position: sticky;
      top: 110px;
      border-radius: 30px;
      background: var(--forest);
      color: var(--surface);
      padding: 26px;
      box-shadow: var(--shadow);
    }
    .contact-panel h3 {
      font-size: 32px;
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .contact-panel p {
      color: color-mix(in oklch, var(--surface) 72%, transparent);
      margin: 12px 0 22px;
    }
    .contact-links {
      display: grid;
      gap: 10px;
    }
    .contact-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 16px;
      border: 1px solid color-mix(in oklch, var(--surface) 13%, transparent);
      text-decoration: none;
      color: var(--surface);
      background: color-mix(in oklch, var(--surface) 7%, transparent);
      transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), background 180ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .contact-links a:hover {
      transform: translateX(3px);
      background: color-mix(in oklch, var(--surface) 11%, transparent);
    }
    .footer {
      padding: 34px clamp(18px, 5vw, 84px);
      background: var(--charcoal);
      color: color-mix(in oklch, var(--surface) 76%, transparent);
    }
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: color-mix(in oklch, var(--surface) 92%, transparent);
  text-decoration: none;
  font-weight: 560;
  letter-spacing: 0.01em;
  transition: color 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-social:hover {
  color: var(--surface);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 50;
      display: none;
      place-items: center;
      padding: 24px;
      background: color-mix(in oklch, var(--charcoal) 82%, transparent);
      backdrop-filter: blur(14px);
    }
    .lightbox.is-open { display: grid; }
    .lightbox figure {
      width: min(1120px, 100%);
      margin: 0;
      border-radius: 28px;
      overflow: hidden;
      background: var(--surface);
      box-shadow: 0 30px 90px color-mix(in oklch, var(--charcoal) 48%, transparent);
    }
    .lightbox img {
      width: 100%;
      max-height: 78svh;
      object-fit: contain;
      background: var(--charcoal);
    }
    .lightbox figcaption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 18px;
      color: var(--fg);
    }
    .lightbox button {
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--fg);
      border-radius: 999px;
      min-height: 40px;
      padding: 0 14px;
      cursor: pointer;
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px) scale(0.985);
      filter: blur(8px);
      transition:
        opacity 560ms cubic-bezier(0.2, 0, 0, 1),
        transform 560ms cubic-bezier(0.2, 0, 0, 1),
        filter 560ms cubic-bezier(0.2, 0, 0, 1);
      transition-delay: var(--reveal-delay, 0ms);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
    .reveal-section {
      opacity: 0;
      transform: translateY(38px);
      transition:
        opacity 620ms cubic-bezier(0.2, 0, 0, 1),
        transform 620ms cubic-bezier(0.2, 0, 0, 1);
    }
    .reveal-section.is-section-visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
      }
      .reveal,
      .reveal-section {
        opacity: 1;
        transform: none;
        filter: none;
      }
    }
    @media (max-width: 1060px) {
      .hero {
        grid-template-columns: 1fr;
        align-items: end;
      }
      .booking-card {
        justify-self: start;
        width: min(100%, 620px);
      }
      .section-grid,
      .day-flow,
      .details-layout {
        grid-template-columns: 1fr;
      }
      .contact-panel {
        position: static;
      }
      .amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .gallery-tile:nth-child(1),
      .gallery-tile:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
      }
    }
    @media (max-width: 760px) {
      .site-header {
        inset: 10px 10px auto;
        border-radius: 24px;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 8px 10px 8px 12px;
      }
      .site-header.is-scrolled {
        inset: 0 0 auto;
        padding: 8px 12px;
        border-radius: 0;
        align-items: center;
      }
      .brand {
        min-width: 0;
      }
      .brand > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .nav-links {
        display: none;
      }
      .nav-cta { min-height: 40px; padding-inline: 14px; }
      .hero {
        min-height: 920px;
        padding-top: 118px;
        padding-bottom: 28px;
      }
  h1 {
    max-width: 10ch;
    font-size: clamp(42px, 13.5vw, 62px);
  }
      .hero-lede { font-size: 18px; }
      .quick-facts,
      .amenities,
      .detail-list {
        grid-template-columns: 1fr;
      }
      .intro-panel { min-height: 360px; }
      .gallery-head {
        align-items: start;
        flex-direction: column;
      }
      .gallery-actions {
        width: 100%;
        overflow-x: auto;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 255px;
      }
      .timeline-item {
        grid-template-columns: 1fr;
        gap: 6px;
      }
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-social {
    align-self: center;
  }
}
