:root {
  --yellow: #e8dcc4;
  --yellow-deep: #c9b896;
  --ink: #141414;
  --muted: #5e635c;
  --cream: #f3f5f1;
  --cream-dark: #e7ebe3;
  --green-mist: #ecf0ea;
  --green-whisper: #f7f9f6;
  --white: #fafbf8;
  --green: #3a5245;
  --green-deep: #2f4535;
  --green-soft: #d8e2d8;
  --green-glow: rgba(47, 69, 53, 0.12);
  --line: rgba(47, 69, 53, 0.09);
  --max: 1120px;
  --header-offset: 1.5rem;
  --font-brand: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-ui: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(47, 69, 53, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 4% 42%, rgba(47, 69, 53, 0.05), transparent 50%),
    radial-gradient(ellipse 50% 40% at 78% 88%, rgba(47, 69, 53, 0.06), transparent 55%);
  line-height: 1.6;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}

body.is-loading {
  overflow: hidden;
  background: var(--ink);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

/* Loader */

.hero-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-loader__logo {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
  animation: loaderPulse 0.7s ease-in-out infinite alternate;
}

body.is-loaded .hero-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderPulse {
  from { opacity: 0.55; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Header */

.site-header {
  position: fixed;
  inset: var(--header-offset) 0 auto;
  z-index: 20;
  padding: 0 clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

body.is-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.site-header__inner {
  position: relative;
  pointer-events: auto;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0.9rem 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--green-glow);
  box-shadow: 0 4px 24px rgba(47, 69, 53, 0.06);
  background: transparent;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(250, 251, 248, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 0;
}

.site-header__inner > * {
  position: relative;
  z-index: 1;
}

.site-header--hero .site-header__inner {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  color: var(--white);
}

.site-header--hero .site-header__inner::before {
  background: rgba(20, 20, 20, 0.5);
}

.logo {
  flex-shrink: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.15rem;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav .nav-book {
  margin-left: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  opacity: 1;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background 0.25s ease, transform 0.2s ease, color 0.25s ease;
}

.site-header--hero .site-nav .nav-book {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.site-nav .nav-book:hover {
  transform: translateY(-1px);
  background: var(--green-deep);
  color: var(--white);
  opacity: 1;
}

.site-header--hero .site-nav .nav-book:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  max-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(6rem + var(--header-offset)) clamp(1.25rem, 4vw, 3rem) clamp(7rem, 16vh, 11rem);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -5%;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20, 30, 24, 0.6) 0%, rgba(20, 30, 24, 0.2) 55%, rgba(20, 30, 24, 0.3) 100%),
    linear-gradient(to top, rgba(15, 22, 18, 0.75) 0%, rgba(15, 22, 18, 0.12) 45%, rgba(15, 22, 18, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded .hero__content > * {
  animation: heroReveal 0.9s ease forwards;
}

body.is-loaded .hero__eyebrow { animation-delay: 0.2s; }
body.is-loaded .hero h1 { animation-delay: 0.35s; }
body.is-loaded .hero__desc { animation-delay: 0.5s; }
body.is-loaded .hero__actions { animation-delay: 0.65s; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  flex-shrink: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--green-soft);
  opacity: 0.95;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero__line {
  display: block;
}

.hero__desc {
  margin: 0 0 2rem;
  max-width: 28rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  opacity: 0.88;
}

.hero__cta {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hero__cta:hover {
  transform: translateY(-3px);
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

button.hero__cta {
  border: none;
  cursor: pointer;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Soft background shapes */

.section,
.intro-block,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

#faellesskab::before {
  top: 8%;
  right: -8%;
  width: min(32rem, 55vw);
  height: min(32rem, 55vw);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 68%);
}

#faellesskab::after {
  bottom: 5%;
  left: -12%;
  width: min(24rem, 45vw);
  height: min(24rem, 45vw);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.booking::before {
  top: 15%;
  right: 5%;
  width: min(22rem, 42vw);
  height: min(22rem, 42vw);
  background: radial-gradient(circle, rgba(47, 69, 53, 0.08) 0%, transparent 68%);
}

.contact::before {
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(40rem, 80vw);
  height: min(20rem, 40vw);
  background: radial-gradient(ellipse, rgba(216, 226, 216, 0.12) 0%, transparent 70%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 20%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 69, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

/* Intro block pattern */

.intro-block {
  position: relative;
  background-color: var(--cream-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23b3bdb3' stroke-width='0.8' opacity='0.32'%3E%3Cpath d='M18 28c4-8 14-8 18 0 2 4 0 10-6 12-6-2-14-4-12-12z'/%3E%3Cpath d='M72 22v16M64 30h16'/%3E%3Cpath d='M28 78c0-6 5-10 10-10s10 4 10 10-5 10-10 10-10-4-10-10z'/%3E%3Cpath d='M88 72c2-4 8-4 10 0 1 2 0 5-3 6-3-1-9-2-7-6z'/%3E%3Cpath d='M55 55l8 8M55 63l8-8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.section--pattern {
  background: transparent;
}

/* Layout */

.section {
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

#faellesskab {
  background: #2f4535;
  color: var(--white);
}

#faellesskab .section-label,
#faellesskab h2,
#faellesskab .lead,
#faellesskab .community-post__link {
  color: var(--white);
}

#faellesskab .section-label {
  opacity: 0.78;
}

#faellesskab .lead {
  opacity: 0.9;
}

#faellesskab .community-post__link:hover {
  opacity: 0.75;
}

.section--tight {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(4rem, 8vw, 5.5rem);
}

.section-label {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.section h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--green-deep);
}

/* Split */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.split__image {
  overflow: hidden;
  background: var(--yellow);
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
}

.split__image img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split__image:hover img {
  transform: scale(1.02);
}

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.split__block h2 {
  margin-bottom: 1rem;
}

.split__block + .split__block {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}

.split__text p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.split__text .lead {
  margin: 0;
}

.split__text p:last-child {
  margin-bottom: 0;
}

.cards--pair {
  margin-top: 2.5rem;
}

/* Community post */

.community-post__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.community-post__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green);
}

.community-post__link:hover {
  opacity: 0.75;
}

.community-post__embed {
  overflow: hidden;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(47, 69, 53, 0.1);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(47, 69, 53, 0.07);
}

.community-post__loading,
.community-post__empty {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.community-post__card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.community-post__media {
  overflow: hidden;
  width: 100%;
  background: var(--green-mist);
  aspect-ratio: 21 / 9;
}

.community-post__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-post__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
}

.community-post__title {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-soft);
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.community-post__text {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.community-post__paragraph {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--green-deep);
}

.community-post__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.community-post__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--green-deep);
}

.community-post__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--green);
}

.community-post__paragraph strong,
.community-post__list strong {
  font-weight: 600;
  color: var(--ink);
}

/* Cards */

.cards {
  display: grid;
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--green-soft);
  border: 1px solid var(--green-soft);
}

.card {
  padding: 1.75rem 1.5rem;
  background: var(--green-whisper);
}

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

.cards--pair .card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Community feature */

.community-feature {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2.5rem;
  align-items: start;
}

.community-feature__image {
  max-width: 22rem;
  overflow: hidden;
  background: transparent;
}

.community-feature__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.community-feature__caption {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
}

.community-feature__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.community-feature__text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 28rem;
  color: var(--ink);
}

.community-feature__body {
  margin: 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.community-feature__list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.community-feature__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.community-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.community-feature__link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--green-deep);
  background: transparent;
  border: 1px solid var(--green-soft);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.community-feature__link:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  text-decoration: none;
}

/* Social banner */

.social-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 42vw, 30rem);
  padding: clamp(4rem, 10vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.social-banner__media {
  position: absolute;
  inset: 0;
}

.social-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.social-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 22, 18, 0.55) 0%, rgba(15, 22, 18, 0.72) 100%),
    rgba(20, 30, 24, 0.35);
}

.social-banner__content {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  text-align: center;
}

.social-banner__label {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.social-banner__title {
  margin: 0 0 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.social-banner__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-banner__icon {
  display: block;
  width: clamp(3rem, 8vw, 3.75rem);
  height: clamp(3rem, 8vw, 3.75rem);
}

.social-banner__link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* Booking */

.booking {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.booking__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.booking__note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--green-deep);
}

.booking__note a {
  color: var(--green-deep);
  font-weight: 500;
  text-decoration: none;
}

.booking__note a:hover {
  text-decoration: underline;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--green-mist);
  border: 1px solid var(--green-soft);
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 4px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.btn-submit {
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.booking-availability {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--green-deep);
}

.booking-availability--closed {
  color: #8b2f2f;
  font-weight: 600;
}

.booking-test-banner {
  margin: 0 0 1rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b4f1d;
  background: #fff4d6;
  border: 1px solid #e8c96a;
}

.booking-deposit {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--green-deep);
}

.form-error {
  margin: 0.75rem 0 0;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  color: #8b2f2f;
  background: rgba(139, 47, 47, 0.08);
  border: 1px solid rgba(139, 47, 47, 0.18);
}

.form-success,
.form-cancelled {
  margin: 0;
  padding: 1.5rem;
  font-size: 1rem;
}

.form-success {
  color: var(--green);
  background: rgba(47, 69, 53, 0.08);
  border: 1px solid rgba(47, 69, 53, 0.14);
}

.form-cancelled {
  color: #6b4f1d;
  background: rgba(201, 184, 150, 0.25);
  border: 1px solid rgba(201, 184, 150, 0.5);
}

/* Contact */

.contact {
  background: var(--green-deep);
  color: var(--white);
}

.contact .section-label {
  color: var(--yellow);
}

.contact h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 1rem;
  text-decoration: none;
  color: var(--white);
}

.contact-item p + p {
  margin-top: 0.35rem;
}

.contact-item .muted {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.contact-item a:hover {
  color: var(--yellow);
}

.contact-item__parking {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem !important;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.contact-item__parking-icon {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.3rem;
  background: #1f4fbf;
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--green-deep), 0 0 0 3px #1f4fbf;
}

.contact-item__smiley {
  display: inline-block;
  margin-top: 1.75rem;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-item__smiley:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-item__smiley-badge {
  display: block;
  width: auto;
  max-width: 8.5rem;
  height: auto;
  margin-top:15px;
}

/* Footer */

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--cream-dark);
}

.site-footer__inner {
  display: grid;
  gap: 0.65rem;
}

.site-footer__brand {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.site-footer__hours {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.site-footer__note {
  margin: 0;
  max-width: 32rem;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--green-deep);
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .hero__image {
    animation: none;
  }

  .hero-loader__logo {
    animation: none;
  }

  .hero__content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-header {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */

@media (min-width: 720px) {
  .split {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split__image img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .cards.cards--pair {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .community-post__content {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .community-post__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .booking__layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row:has(select) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Menu popup */

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.menu-modal[hidden] {
  display: none;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(4px);
}

.menu-modal__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.2);
}

.menu-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.menu-modal__close:hover {
  background: var(--green-soft);
}

.menu-modal__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-modal__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.menu-modal__subtitle {
  margin: 0 0 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-modal__subtitle[hidden] {
  display: none;
}

.menu-modal__text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
  color: var(--ink);
}

.menu-modal__image {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
}

/* Image popup — fullscreen for readability */
.menu-modal--image {
  padding: 0;
}

.menu-modal--image .menu-modal__backdrop {
  background: rgba(12, 12, 12, 0.92);
}

.menu-modal--image .menu-modal__panel {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-modal--image .menu-modal__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3.5rem 1rem 1rem;
}

.menu-modal--image .menu-modal__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.menu-modal--image .menu-modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 201;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(250, 251, 248, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 719px) {
  .nav-toggle {
    display: flex;
    z-index: 52;
  }

  .logo {
    z-index: 52;
  }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
    padding: 5rem 2rem 2rem;
    background: var(--cream);
    color: var(--ink);
    overflow-y: auto;
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav a {
    font-size: 0.9rem;
    opacity: 1;
    padding: 0.35rem 0.5rem;
  }

  .site-nav .nav-book {
    margin-left: 0;
    margin-top: 0.25rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    background: var(--ink);
    color: var(--white);
  }

  .site-header--hero .site-nav .nav-book:hover {
    background: var(--green-deep);
    color: var(--white);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
}
