/* Arran View — static site (from React/Tailwind design tokens) */
:root {
  --radius: 0.75rem;
  --background: oklch(0.975 0.015 75);
  --foreground: oklch(0.22 0.03 40);
  --card: oklch(0.99 0.008 80);
  --primary: #e01f00;
  --primary-foreground: oklch(0.98 0.01 80);
  --muted: oklch(0.93 0.02 75);
  --muted-foreground: oklch(0.45 0.04 50);
  --border: oklch(0.88 0.025 70);
  --input: oklch(0.88 0.025 70);
  --cream: oklch(0.975 0.015 75);
  /* Section surfaces — alternating bands read clearly against body */
  --surface-paper: oklch(0.993 0.014 78);
  --surface-muted: oklch(0.928 0.028 68);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
  --shadow-cosy: 0 20px 50px -20px oklch(0.3 0.08 40 / 0.35);
  --shadow-soft: 0 10px 30px -15px oklch(0.3 0.08 40 / 0.25);
  --header-z: 110;
  --menu-z: 100;
}

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

html {
  scroll-behavior: smooth;
}

/* Inline SVG sprite (same-document <use href="#…">); external icons.svg refs often break on file:// and some browsers */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.shadow-cosy {
  box-shadow: var(--shadow-cosy);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.bg-tartan {
  background-color: #e01f00;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px),
    repeating-linear-gradient(0deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px);
}

.bg-paper {
  background-color: var(--surface-paper);
  background-image:
    radial-gradient(circle at 15% 0%, oklch(0.55 0.09 55 / 0.07) 0, transparent 42%),
    radial-gradient(circle at 88% 100%, oklch(0.55 0.06 25 / 0.06) 0, transparent 45%),
    radial-gradient(circle at 80% 20%, #e01f0014 0, transparent 38%);
}

/* Cooler, slightly darker band between paper sections (gallery, CTAs, etc.) */
.bg-section-muted {
  background-color: var(--surface-muted);
  background-image:
    linear-gradient(180deg, oklch(0.99 0.01 75 / 0.35) 0%, transparent 12%),
    linear-gradient(0deg, oklch(0.99 0.01 75 / 0.25) 0%, transparent 10%),
    radial-gradient(ellipse 120% 80% at 50% 50%, oklch(0.96 0.02 72 / 0.5) 0, transparent 70%);
}

.bg-gradient-overlay {
  background: linear-gradient(180deg, oklch(0.2 0.03 40 / 0.1) 0%, oklch(0.2 0.03 40 / 0.7) 100%);
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.container--narrow {
  max-width: 64rem;
}

.container--text {
  max-width: 48rem;
}

/* ----- Site header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--header-z);
  transition: background 0.5s, box-shadow 0.5s;
}

@media (max-width: 767.98px) {
  .site-header {
    position: static;
    background: none;
    box-shadow: none;
  }
}

.site-header.is-solid {
  background: var(--primary);
  box-shadow: var(--shadow-cosy), 0 1px 0 rgb(255 255 255 / 0.12) inset;
}

.site-header.is-solid .nav-desktop a {
  color: rgb(255 255 255 / 0.95);
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.2);
}

.site-header.is-solid .nav-desktop a:hover {
  color: #fff;
}

.site-header.is-solid .nav-desktop a.is-active {
  color: #fff;
  text-shadow: none;
}

.site-header.is-solid .nav-desktop a::after {
  background: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  transition: height 0.5s;
  height: 7rem;
}

@media (max-width: 767.98px) {
  .site-header__inner {
    height: 0;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .site-header__inner {
    height: 8rem;
    padding: 0 2.5rem;
  }
}

.site-header.is-solid .site-header__inner {
  height: 5rem;
}

.site-header__logo img {
  width: auto;
  height: 4rem;
  transition: height 0.5s;
}

@media (max-width: 767.98px) {
  .site-header__logo {
    display: none;
  }
}

@media (min-width: 768px) {
  .site-header__logo img {
    height: 5rem;
  }
}

.site-header.is-solid .site-header__logo img {
  height: 3rem;
}

@media (min-width: 768px) {
  .site-header.is-solid .site-header__logo img {
    height: 3.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.9);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: #fff;
}

/* Transparent header (over hero): active link matches other links; emphasis = underline only */
.site-header:not(.is-solid) .nav-desktop a.is-active {
  color: #fff;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -2px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.site-header:not(.is-solid) .nav-desktop a::after {
  background: rgb(255 255 255 / 0.9);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.2);
  color: #fff;
  transition: background 0.2s;
}

@media (max-width: 767.98px) {
  .menu-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: calc(var(--menu-z) + 2);
    background: var(--primary);
    box-shadow: var(--shadow-soft);
  }
}

.menu-toggle:hover {
  background: rgb(255 255 255 / 0.3);
}

.site-header.is-solid .menu-toggle {
  background: rgb(255 255 255 / 0.2);
  color: #fff;
}

.site-header.is-solid .menu-toggle:hover {
  background: rgb(255 255 255 / 0.32);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-menu {
  display: block;
}

.icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--menu-z);
  background: var(--background);
  clip-path: circle(0% at calc(100% - 2.375rem) 2.375rem);
  pointer-events: none;
  opacity: 0;
  transition: clip-path 0.55s cubic-bezier(0.83, 0, 0.17, 1), opacity 0.35s;
}

.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 2.375rem) 2.375rem);
  pointer-events: auto;
  opacity: 1;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 5rem 2rem 2.5rem;
  overflow-y: auto;
  gap: 4rem;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.mobile-menu nav a {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.mobile-menu nav a.is-active {
  color: var(--primary-foreground);
}

.mobile-menu nav a.is-active::before {
  content: "";
  position: absolute;
  inset: 0.25rem -0.5rem;
  background: var(--primary);
  z-index: -1;
}

.mobile-menu__cols {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  font-size: 0.875rem;
}

@media (min-width: 480px) {
  .mobile-menu__cols {
    flex-direction: row;
    gap: 6rem;
  }
}

.mobile-menu__cols h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem;
}

.mobile-menu__cols p,
.mobile-menu__cols li {
  margin: 0;
  line-height: 1.6;
  color: rgb(0 0 0 / 0.8);
}

.mobile-menu__cols a:hover {
  color: var(--primary);
}

.mobile-menu__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__cols li + li {
  margin-top: 1rem;
}

.mobile-menu__cols .icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu__cols .icon-inline svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ----- Hero (home) ----- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  animation: hero-zoom 2.4s ease-out forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero__dim {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.3);
}

.hero__top-fade {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8rem;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.6), transparent);
  z-index: 10;
}

.hero__content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #fff;
}

@media (min-width: 1024px) {
  .hero__content {
    padding: 0 2.5rem;
  }
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgb(0 0 0 / 0.35);
  animation: fade-up 1s 0.3s ease-out both;
}

@media (min-width: 640px) {
  .hero__content h1 {
    font-weight: 400;
  }
}

.hero__content h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero__content .lead {
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 36rem;
  color: rgb(255 255 255 / 0.9);
  animation: fade-up 0.9s 0.55s ease-out both;
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fade-up 0.8s 0.8s ease-out both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgb(255 255 255 / 0.8);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fade-in 1s 1.4s both;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 2rem;
  background: rgb(255 255 255 / 0.6);
  animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-cosy);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cosy), 0 8px 24px rgb(0 0 0 / 0.12);
}

.btn--ghost-light {
  border: 1px solid rgb(255 255 255 / 0.35);
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--ghost-light:hover {
  background: rgb(255 255 255 / 0.2);
}

.btn--outline-dark {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
}

.btn--outline-dark:hover {
  background: var(--muted);
}

.btn--pill {
  border-radius: 9999px;
  padding: 1rem 2rem;
}

.btn--link {
  background: none;
  box-shadow: none;
  color: var(--primary);
  padding: 0;
  border-radius: 0;
}

.btn--link:hover {
  transform: none;
}

.btn--link svg {
  transition: transform 0.2s;
}

.btn--link:hover svg {
  transform: translateX(4px);
}

/* ----- Page header (inner pages) ----- */
.page-header {
  position: relative;
  overflow: hidden;
}

.page-header__media {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
}

.page-header__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  animation: ph-kenburns 1.6s ease-out forwards;
}

@keyframes ph-kenburns {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.2 0.03 40 / 0.1) 0%, oklch(0.2 0.03 40 / 0.7) 100%);
}

.page-header__top-fade {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8rem;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.6), transparent);
  z-index: 10;
}

.page-header__bottom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  z-index: 20;
}

.page-header__text {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  color: #fff;
  animation: fade-up 0.8s 0.2s ease-out both;
}

@media (min-width: 1024px) {
  .page-header__text {
    padding: 0 2.5rem 3.5rem;
  }
}

.page-header__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: 0.75rem;
}

.page-header__text h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 500;
}

.page-header__text p {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  max-width: 36rem;
  color: rgb(255 255 255 / 0.85);
}

/* ----- Sections ----- */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.muted {
  color: var(--muted-foreground);
}

/* Feature cards grid */
.features-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  height: 100%;
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
  border: 1px solid rgb(0 0 0 / 0.06);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.5s,
    box-shadow 0.5s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-cosy);
}

.feature-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition:
    background 0.3s,
    color 0.3s;
}

.feature-card:hover .feature-card__icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.feature-card li {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.feature-card li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.perks {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .perks {
    grid-template-columns: repeat(4, 1fr);
  }
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgb(0 0 0 / 0.06);
  font-size: 0.875rem;
  font-weight: 500;
}

.perk svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* About row */
.about-row {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-row {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
  }
}

.about-photo {
  position: relative;
}

.about-photo__tartan {
  position: absolute;
  inset: -1rem;
  background: #e01f00;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px),
    repeating-linear-gradient(0deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px);
  border-radius: 1.5rem;
  opacity: 0.9;
}

.about-photo img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-cosy);
  width: 100%;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    gap: 1rem;
  }
}

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--muted);
  padding: 0;
  border: none;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0);
  transition: background 0.3s;
  pointer-events: none;
}

.gallery__item:hover::after {
  background: rgb(0 0 0 / 0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgb(0 0 0 / 0.95);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgb(255 255 255 / 0.2);
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

@media (min-width: 768px) {
  .lightbox__prev {
    left: 2rem;
  }

  .lightbox__next {
    right: 2rem;
  }
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-cosy);
}

/* CTA band */
.cta-center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-center .actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ----- Footer ----- */
.site-footer {
  position: relative;
  margin-top: 8rem;
  background: var(--foreground);
  color: var(--background);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: #e01f00;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px),
    repeating-linear-gradient(0deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px);
  opacity: 0.9;
}

.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: repeat(3, 1fr);
    padding: 5rem 2.5rem;
  }
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.site-footer .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.site-footer p {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.6;
  max-width: 20rem;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer__social a:hover {
  opacity: 0.8;
}

.site-footer__social svg {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer__social img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.site-footer a {
  color: rgb(255 255 255 / 0.8);
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .visit-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.site-footer .visit-row:first-of-type {
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.site-footer ul li + li {
  margin-top: 0.5rem;
}

.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.5);
}

/* ----- Rooms page ----- */
.room-section {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .room-section {
    grid-template-columns: 7fr 5fr;
    gap: 2.5rem;
  }

  .room-section--flip .room-section__gallery {
    order: 2;
  }

  .room-section--flip .room-section__copy {
    order: 1;
  }

  .room-section__copy--sticky {
    position: sticky;
    top: 7rem;
  }
}

.room-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.room-section__badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.room-section__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
}

.room-section__copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-section__copy li {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  color: rgb(0 0 0 / 0.85);
}

.room-section__copy li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-panel {
  border-radius: 1.5rem;
  background: var(--cream);
  border: 1px solid rgb(0 0 0 / 0.08);
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .info-panel {
    padding: 3.5rem;
  }
}

.info-panel__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-panel__label span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .info-panel ul {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

.info-panel li {
  display: flex;
  gap: 0.75rem;
}

.info-panel li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.price-panel {
  text-align: center;
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #e01f00;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px),
    repeating-linear-gradient(0deg, transparent 0 28px, oklch(0.25 0.08 28 / 0.5) 28px 30px, transparent 30px 58px, oklch(0.98 0.01 80 / 0.15) 58px 60px);
}

@media (min-width: 768px) {
  .price-panel {
    padding: 5rem;
  }
}

.price-panel .eyebrow {
  color: rgb(255 255 255 / 0.8);
}

.price-panel h2 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0.5rem 0;
}

.price-panel h2 span {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 400;
  vertical-align: middle;
}

.price-panel p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
}

.price-panel .btn {
  margin-top: 2rem;
  background: var(--background);
  color: var(--foreground);
}

.price-panel .btn:hover {
  transform: translateY(-2px);
}

.stack-sections > * + * {
  margin-top: 7rem;
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgb(0 0 0 / 0.08);
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-soft);
}

.contact-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.contact-form {
  border-radius: 1.5rem;
  background: var(--cream);
  border: 1px solid rgb(0 0 0 / 0.08);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem;
  }
}

.contact-form label span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.75rem 1rem;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary) 40%, transparent);
}

.contact-form textarea {
  resize: none;
  min-height: 9rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 0.08);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ----- Things to do ----- */
.activity-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.07);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

a.activity-card {
  color: inherit;
  text-decoration: none;
}

a.activity-card:hover {
  box-shadow: 0 12px 24px rgb(0 0 0 / 0.12);
}

.activity-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}

.activity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

a.activity-card:hover .activity-card__img img {
  transform: scale(1.05);
}

.activity-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.activity-card h3 {
  font-size: 1.5rem;
  margin: 0;
  transition: color 0.2s;
}

a.activity-card:hover h3 {
  color: var(--primary);
}

.activity-card .dist {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.activity-card .link-hint {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ----- Reveal on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- 404 ----- */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.notfound h1 {
  font-size: 4.5rem;
  margin: 0;
}

/* ----- Utilities ----- */
.flex-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

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