/* ============================================
   Lofos Social House — static rebuild
   ============================================ */

/* Self-hosted Space Grotesk (variable, weights 400-600) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --cream: #fcf8f2;
  --cream-soft: #f5ecdb;
  --brown: #4a1d10;
  --brown-deep: #3a1610;
  --brown-light: #6e4a3a;
  --text: #4a1d10;
  --text-muted: #6e4a3a;
  --line: rgba(74, 29, 16, 0.18);
  --white: #ffffff;

  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1640px;
  --gutter: clamp(1rem, 3vw, 2.5rem);

  --header-h-full: 150px;
  --header-bottom-space: 56px;
  --header-h-sticky: 60px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   Top Header
   ============================================ */

.site-header {
  position: relative;
  background: var(--cream);
  padding: 1.5rem 0 0.5rem;
  z-index: 50;
}

.header-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: inline-block;
  flex-shrink: 0;
  line-height: 0;
}

.brand img {
  width: clamp(160px, 16vw, 230px);
  height: auto;
}

.header-cta-links {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--brown);
}

.header-cta-links .cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--brown);
}

.header-cta-links .cta-item svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.header-cta-links .cta-item span {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.header-cta-links .cta-item:hover { opacity: 0.7; }

.primary-nav {
  padding: 0.4rem var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}

.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 1.85rem;
}

.primary-nav a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 500;
  padding: 0.35rem 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.primary-nav a:hover { opacity: 0.6; }

.primary-nav a.is-active {
  border-bottom-color: var(--brown);
}

/* ============================================
   Sticky header
   ============================================ */

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  height: var(--header-h-sticky);
}

body.is-scrolled .sticky-header { transform: translateY(0); }

.sticky-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  color: var(--brown);
}

.sticky-brand .horse {
  height: 30px;
  width: auto;
}

.sticky-brand .text-logo {
  height: 24px;
  width: auto;
}

.sticky-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.sticky-nav a {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--brown);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.sticky-nav a:hover { opacity: 0.65; }

.sticky-nav a.is-active {
  border-bottom-color: var(--brown);
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--brown);
}

.sticky-cta a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sticky-cta .sep { opacity: 0.5; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }

body.menu-open .menu-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ============================================
   Mobile header (mobile-only — desktop hides it)
   ============================================ */

.mobile-header { display: none; }

@media (max-width: 800px) {
  .mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .mh-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
    transition: padding 0.25s ease;
  }

  .mh-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brown);
    line-height: 0;
    flex-shrink: 0;
  }

  .mh-horse {
    width: 0;
    height: auto;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.25s ease;
  }

  .mh-text {
    width: clamp(110px, 26vw, 150px);
    height: auto;
    transition: width 0.3s ease, opacity 0.25s ease;
  }

  body.is-scrolled .mh-horse {
    width: 28px;
    opacity: 1;
  }

  body.is-scrolled .mh-text {
    width: clamp(70px, 17vw, 95px);
  }

  body.is-scrolled .mh-row1 {
    padding: 0.55rem 1rem;
  }

  .mh-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .mh-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--brown);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
  }

  .mh-cta svg {
    width: 22px;
    height: 22px;
  }

  .mh-cta span {
    transition: max-height 0.25s ease, opacity 0.2s ease;
    max-height: 1.5em;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
  }

  body.is-scrolled .mh-cta span {
    display: none;
  }

  body.is-scrolled .mh-ctas {
    gap: 0.25rem;
  }

  .mh-nav-row {
    position: relative;
    border-top: 1px solid var(--line);
    background: var(--cream);
  }

  .mh-nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1.6rem;
    padding: 0.7rem 1rem;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
  }

  .mh-nav.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .mh-nav::-webkit-scrollbar { display: none; }

  .mh-nav a {
    flex-shrink: 0;
    color: var(--brown);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    text-decoration: none;
  }

  .mh-nav a.is-active {
    border-bottom-color: var(--brown);
  }

  .mh-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    border: none;
    cursor: pointer;
    color: var(--brown);
    font-size: 1.6rem;
    font-family: var(--font-serif);
    line-height: 1;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .mh-arrow-left {
    left: 0;
    background: linear-gradient(to right, var(--cream) 60%, rgba(252, 248, 242, 0));
    justify-content: flex-start;
    padding-left: 0.5rem;
  }

  .mh-arrow-right {
    right: 0;
    background: linear-gradient(to left, var(--cream) 60%, rgba(252, 248, 242, 0));
    justify-content: flex-end;
    padding-right: 0.5rem;
  }

  .mh-arrow[hidden] { display: none !important; }

  /* push content below the fixed mobile header */
  body {
    padding-top: 112px;
  }

  body.is-scrolled {
    /* mh-row1 shrinks a bit; keep padding-top stable to avoid layout jump */
  }
}

/* ============================================
   Hero (logo + nav + hero = 100vh)
   ============================================ */

.hero {
  padding: var(--header-bottom-space) 0 0;
  background: var(--cream);
}

.hero-frame {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image > img {
  width: 100%;
  height: calc(100vh - var(--header-h-full) - var(--header-bottom-space));
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  gap: 0.75rem;
  z-index: 2;
}

.hero-overlay .krikri {
  width: clamp(140px, 16vw, 240px);
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(0,0,0,0.4));
  margin-bottom: 1rem;
}

.hero-overlay h1 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  margin: 0;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-overlay .tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  color: var(--white);
  margin: 0.5rem 0 0;
  font-weight: 400;
  text-shadow: 0 1px 14px rgba(0,0,0,0.4);
  max-width: 680px;
}

/* ============================================
   Feature band
   ============================================ */

.feature-band {
  background: var(--brown);
  color: var(--white);
  padding: 2.6rem 0;
  margin-top: clamp(3rem, 5vw, 5rem);
}

.feature-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.feature {
  text-align: center;
  padding: 0.4rem 1.25rem;
  position: relative;
}

.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.4) 50%, transparent 50%);
  background-size: 1px 6px;
  background-repeat: repeat-y;
}

.feature-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
}

.feature-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.35;
}

/* ============================================
   Carousel (loop, drag, arrows)
   ============================================ */

.carousels {
  padding-top: 100px;
  background: var(--cream);
}

.carousel {
  position: relative;
  background: var(--cream);
  padding: 0;
  margin-bottom: 0.5rem;
}

.carousel:last-child { margin-bottom: 0; }

.carousel-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.carousel-track .slide {
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 460px);
  height: clamp(220px, 24vw, 340px);
  position: relative;
  overflow: hidden;
}

.carousel-track .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(252, 248, 242, 0.92);
  color: var(--brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--brown);
  color: var(--cream);
}

.carousel-arrow.prev { left: 1rem; }
.carousel-arrow.next { right: 1rem; }

/* ============================================
   Story sections
   ============================================ */

.story {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
  position: relative;
}

.story.dark { background: var(--brown); color: var(--white); }

.story.dark h2,
.story.dark h3,
.story.dark p,
.story.dark .story-title {
  color: var(--white);
}

.story-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.story.image-left .story-grid {
  grid-template-columns: 1.25fr 1fr;
}

.story.image-left .story-text-col { order: 2; padding-bottom: clamp(1.5rem, 3vw, 3rem); }
.story.image-left .story-image-col { order: 1; }

.story-text-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: clamp(440px, 58vw, 720px);
  padding-bottom: 0.5rem;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin: 0;
}

.story-text {
  max-width: 540px;
}

.story-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.25;
  color: var(--brown);
}

.story-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.story.dark .story-text p { color: rgba(255, 255, 255, 0.88); }

.story-image-col {
  position: relative;
}

.story-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc(-100% - clamp(28px, 4vw, 80px)));
  width: clamp(34px, 3.8vw, 56px);
  height: auto;
  z-index: 2;
  margin: 0;
}

/* For image-left variant, the standard sticking-out icon is hidden;
   the icon-corner variant (direct section child) is used instead */
.story.image-left .story-image-col .story-icon {
  display: none;
}

.story-icon-corner {
  position: absolute;
  top: clamp(3.5rem, 7vw, 6rem);
  right: clamp(1.5rem, 3.5vw, 3.5rem);
  width: clamp(50px, 5.5vw, 85px);
  height: auto;
  z-index: 3;
}

/* Kri-Kri decorative mark — uses bull.svg as CSS mask
   so the colour is controlled by CSS (brown on cream, white on dark) */
.story-icon.bull,
.story-icon-corner.bull {
  -webkit-mask: url('/assets/img/bull.svg') center / contain no-repeat;
          mask: url('/assets/img/bull.svg') center / contain no-repeat;
  background: var(--brown);
}

.story-icon.bull {
  width: clamp(44px, 5vw, 78px);
  aspect-ratio: 452.67 / 358.67;
  height: auto;
}

.story-icon-corner.bull {
  width: clamp(70px, 7.5vw, 110px);
  aspect-ratio: 452.67 / 358.67;
  height: auto;
}

.story.dark .story-icon.bull,
.story.dark .story-icon-corner.bull {
  background: var(--white);
}

.story-image {
  position: relative;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: clamp(440px, 58vw, 720px);
  object-fit: cover;
  will-change: transform;
}

.story-image--square {
  aspect-ratio: 1 / 1;
  max-height: 720px;
}

.story-image--square img {
  height: 100% !important;
}

.link-arrow {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.link-arrow:hover {
  background: var(--brown);
  color: var(--cream);
  opacity: 1;
}

.story.dark .link-arrow {
  border-color: var(--white);
  color: var(--white);
}

.story.dark .link-arrow:hover {
  background: var(--white);
  color: var(--brown);
}

/* ============================================
   Community / Newsletter
   ============================================ */

.community {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.community-intro {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  padding: 0 var(--gutter);
}

.community-intro--below {
  margin: clamp(2rem, 4vw, 3rem) auto clamp(3rem, 5vw, 4.5rem);
}

.community-intro h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.community-intro p {
  color: var(--text);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.community-hero {
  max-width: 1500px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding: 0 var(--gutter);
}

.community-hero img {
  width: 100%;
  height: clamp(340px, 42vw, 580px);
  object-fit: cover;
}

.newsletter-card {
  background: var(--brown);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 1.75rem;
}

.newsletter-form {
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.newsletter-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.6); }

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form .btn-register {
  display: block;
  margin: 1.25rem auto 0;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form .btn-register:hover {
  background: var(--white);
  color: var(--brown);
}

.newsletter-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 2.5rem auto 1.75rem;
  max-width: 640px;
}

.newsletter-consent {
  margin: 1.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.newsletter-consent a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-status {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  min-height: 1.2em;
}

.newsletter-status.is-success { color: #ffffff; font-weight: 600; }
.newsletter-status.is-error   { color: #f0c0c0; }

.community-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.community-social a:hover { opacity: 0.75; }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown);
}

.footer-grid a:hover { opacity: 0.65; }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  color: var(--brown);
  text-align: right;
}

.footer-brand .horse {
  width: clamp(34px, 3.2vw, 48px);
  height: auto;
}

.footer-brand .text-logo {
  width: clamp(100px, 9vw, 140px);
  height: auto;
}

.footer-copy {
  max-width: var(--container);
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--brown);
}

/* ============================================
   Cookie consent banner
   ============================================ */

.cookie-banner {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 200;
  width: min(94vw, 380px);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  padding: 1.25rem 1.35rem 1.35rem;
}

.cookie-banner-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  margin: 0 0 0.5rem;
}

.cookie-banner-text {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1rem;
}

.cookie-banner-text a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.55rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn--secondary {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
}

.cookie-btn--secondary:hover {
  background: var(--brown);
  color: var(--cream);
}

.cookie-btn--primary {
  background: var(--brown);
  color: var(--cream);
  border: 1px solid var(--brown);
}

.cookie-btn--primary:hover {
  background: transparent;
  color: var(--brown);
}

@media (max-width: 540px) {
  .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; width: auto; }
}

.fab-credit {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.25rem var(--gutter) 1.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.fab-credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.fab-credit a:hover { opacity: 0.7; }

.fab-credit .heart {
  display: inline-block;
  color: var(--brown);
  margin: 0 0.18em;
  transform-origin: center;
  animation: fab-heartbeat 1.4s ease-in-out infinite;
}

@keyframes fab-heartbeat {
  0%, 100%        { transform: scale(1); }
  10%             { transform: scale(1.22); }
  20%             { transform: scale(0.95); }
  30%             { transform: scale(1.18); }
  45%             { transform: scale(1); }
}

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

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  :root { --header-h-full: 130px; }
  .primary-nav ul { gap: 0 1.35rem; }
  .primary-nav a { font-size: 0.88rem; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); row-gap: 1.6rem; }
  .feature:nth-child(4)::before,
  .feature:nth-child(2)::before { background-image: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story.image-left .story-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  :root { --header-h-full: 110px; --header-bottom-space: 32px; }
  .site-header { display: none; }
  .sticky-header { display: none; }
  .hero { padding-top: 0; }

  /* Feature band — soft dividers between the 6 items */
  .feature {
    padding: 1rem 0.6rem;
  }
  .feature::before { background-image: none !important; }
  .feature:nth-child(odd) {
    border-right: 1px dotted rgba(255, 255, 255, 0.22);
  }
  .feature:nth-child(-n+4) {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
  }

  /* Tree/Sun icons to top-right of section (matching Suites stamp position) */
  .story-image-col { position: static; }
  .story:not(.image-left) .story-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
    width: 52px;
    margin: 0;
    z-index: 3;
  }

  /* Footer 2-col + centered logo */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 0;
    text-align: left;
  }
  .footer-grid > ul:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .footer-grid > ul:nth-child(2) { grid-column: 2; grid-row: 1; }
  .footer-grid > ul:nth-child(3) { grid-column: 2; grid-row: 2; margin-top: 0.6rem; }
  .footer-brand {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 2.5rem;
    align-items: center;
    text-align: center;
  }

  .story-grid { grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
  .story.image-left .story-grid { grid-template-columns: 1fr; }
  .story.image-left .story-text-col,
  .story.image-left .story-image-col { order: initial; }
  .story-text-col { min-height: 0; justify-content: flex-start; gap: 1.5rem; }
  .story-icon-corner { top: 1rem; right: 1rem; width: 52px; left: auto; transform: none; }
  .story-image img { height: clamp(320px, 50vw, 480px); }
  .story-decor.corner { top: 1rem; right: 1rem; width: 60px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3)::before,
  .feature:nth-child(5)::before { background-image: none; }

  .carousel-arrow { width: 42px; height: 42px; }
  .carousel-arrow.prev { left: 0.5rem; }
  .carousel-arrow.next { right: 0.5rem; }

}

@media (max-width: 540px) {
  .brand img { width: 150px; }
  .hero-image > img { height: 70vh; min-height: 420px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .feature::before { background-image: none !important; }
  .carousels { padding-top: 60px; }
}

/* ============================================
   Page intro (used on inner pages under hero)
   ============================================ */

.page-intro {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.page-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-intro p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
}

/* Page header block (text-only, no background image) */
.page-header-block {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.page-header-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--brown);
  margin: 0 0 1.25rem;
  line-height: 1.05;
  letter-spacing: 0.005em;
}

.page-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

/* Wellbeing trio — 3 image+text columns, full viewport width */
.wellbeing-trio {
  background: var(--cream);
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.wellbeing-trio-grid {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(0.35rem, 0.7vw, 0.7rem);
  row-gap: 0;
}

.wellbeing-item {
  display: flex;
  flex-direction: column;
}

.wellbeing-item .parallax-frame {
  aspect-ratio: 3 / 4;
  width: 100%;
}

.wellbeing-item-icon {
  display: block;
  width: clamp(28px, 2.5vw, 36px);
  height: auto;
  margin: clamp(1.5rem, 2.5vw, 2.25rem) auto 0.75rem;
}

.wellbeing-item p {
  margin: 0;
  padding: 0 clamp(1.25rem, 2.5vw, 2.25rem) clamp(2rem, 3vw, 3rem);
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.7;
  color: var(--text);
  text-align: center;
}

@media (max-width: 800px) {
  .wellbeing-trio-grid { grid-template-columns: 1fr; }
  .wellbeing-item .parallax-frame { aspect-ratio: 16 / 10; }
  .wellbeing-item p { padding: 1.25rem 1.25rem 2rem; }
}

/* ============================================
   Slideshow (fade transition)
   ============================================ */

.slideshow {
  position: relative;
  overflow: hidden;
  background: var(--cream-soft);
}

.slideshow-slides {
  position: absolute;
  inset: 0;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.slideshow-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 248, 242, 0.85);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--brown);
  font-size: 1.5rem;
  font-family: var(--font-serif);
  line-height: 1;
  z-index: 3;
  transition: background 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.slideshow-arrow:hover { background: var(--cream); }
.slideshow-arrow.prev { left: 0.85rem; }
.slideshow-arrow.next { right: 0.85rem; }

.slideshow-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
  padding: 0.35rem 0.65rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.slideshow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slideshow-dot.is-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.3);
}

@media (max-width: 800px) {
  .slideshow-arrow { width: 36px; height: 36px; }
  .slideshow-arrow.prev { left: 0.5rem; }
  .slideshow-arrow.next { right: 0.5rem; }
}

/* ============================================
   Amenities list
   ============================================ */

.amenities {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.45;
}

.amenities li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.amenities li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}

.story.dark .amenities li {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 540px) {
  .amenities { grid-template-columns: 1fr; }
}

/* ============================================
   Short hero variant (Terms, Legal, etc.)
   ============================================ */

.hero--short .hero-image > img {
  height: clamp(280px, 45vh, 420px);
  min-height: 260px;
}

@media (max-width: 800px) {
  .hero--short .hero-image > img {
    height: 40vh;
    min-height: 240px;
  }
}

/* ============================================
   Legal / Terms long-form pages
   ============================================ */

.legal-content {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.legal-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-inner .lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--brown);
  margin: 0 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 500;
  color: var(--brown);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.005em;
}

.legal-inner p {
  margin: 0 0 1.2rem;
}

.legal-inner a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--brown);
}

.legal-inner a:hover { opacity: 0.7; }

/* ============================================
   Journal — listing
   ============================================ */

.journal-cat {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.journal-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 1rem 0 1.25rem;
}

.journal-excerpt {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 0.5rem;
}

/* Featured article */
.journal-feature {
  background: var(--cream);
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.journal-feature-link {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  color: inherit;
  transition: opacity 0.25s ease;
}

.journal-feature-link:hover { opacity: 0.85; }

.journal-feature-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.journal-feature-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--brown);
}

/* Article grid */
.journal-grid-section {
  background: var(--cream);
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.journal-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.journal-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: opacity 0.25s ease;
}

.journal-card:hover { opacity: 0.85; }

.journal-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.journal-card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: var(--brown);
}

@media (max-width: 800px) {
  .journal-feature-link { grid-template-columns: 1fr; gap: 1.5rem; }
  .journal-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   Article (magazine layout)
   ============================================ */

.article {
  background: var(--cream);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.article-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(360px, 60vh, 640px);
  overflow: hidden;
}

.article-head {
  max-width: 760px;
  margin: clamp(2.5rem, 5vw, 4rem) auto clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 var(--gutter);
  text-align: center;
}

.article-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  color: var(--brown);
}

.article-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--text);
}

.article-body p {
  margin: 0 0 1.4rem;
}

.article-body .lead {
  font-size: clamp(1.15rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.drop-cap {
  float: left;
  font-family: var(--font-serif);
  font-size: 4em;
  line-height: 0.9;
  font-weight: 500;
  margin: 0.15em 0.12em 0 -0.05em;
  color: var(--brown);
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid var(--brown);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.4;
  color: var(--brown);
}

.article-credit {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.article-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-more {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.article-more-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

/* ============================================
   Contact page
   ============================================ */

.contact-section {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  border-radius: 0;
}

.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6l5-4.5' fill='none' stroke='%234a1d10' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brown);
  background: var(--white);
}

.contact-form .contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}

.form-consent {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  margin: 0.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.form-status.is-success { color: var(--brown); font-weight: 600; }
.form-status.is-error { color: #a14040; }

.contact-info {
  font-family: var(--font-sans);
}

.info-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--brown);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

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

.info-list a:hover { opacity: 0.65; }

/* Map */
.contact-map {
  background: var(--cream);
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.contact-map iframe,
.contact-map #lofos-map {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(360px, 50vw, 560px);
  border: 0;
  background: var(--cream);
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row--two { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ============================================
   Amenities & services panel
   ============================================ */

.amenities-panel {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}

.amenities-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.panel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 500;
  color: var(--brown);
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.panel-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.panel-icon {
  margin-bottom: 1rem;
}

.panel-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-card h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 0.85rem;
}

.panel-card p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.panel-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.panel-card ul li {
  position: relative;
  padding-left: 0.9rem;
}

.panel-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brown);
  opacity: 0.55;
}

@media (max-width: 900px) {
  .panel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .panel-grid { grid-template-columns: 1fr; }
}

/* Closing italic statement */
.closing-statement {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 9vw, 8rem);
  text-align: center;
}

.closing-statement-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.closing-statement p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.4;
  color: var(--brown);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

/* Long-form narrative block (centered, 2-col-readable width) */
.page-narrative {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.page-narrative-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-narrative p {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.75;
  color: var(--text);
}

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

/* ============================================
   Terrace schedule & notes
   ============================================ */

.terrace-schedule {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  font-variant-numeric: tabular-nums;
}

.terrace-schedule > li {
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(74, 29, 16, 0.28);
}

.terrace-schedule > li:last-child {
  border-bottom: none;
}

.terrace-schedule ul {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0 0 0 1rem;
  font-size: 0.95rem;
}

.terrace-schedule ul li {
  padding: 0.25rem 0;
  color: var(--text-muted);
}

.story.dark .terrace-schedule > li {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.story.dark .terrace-schedule ul li { color: rgba(255, 255, 255, 0.75); }

.terrace-notes {
  margin: 0 0 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.terrace-notes p {
  margin: 0 0 0.4rem;
}

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

.story.dark .terrace-notes { color: rgba(255, 255, 255, 0.75); }

/* ============================================
   Restaurant gallery (4 images)
   ============================================ */

.restaurant-gallery {
  background: var(--cream);
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.restaurant-gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.restaurant-gallery-grid .parallax-frame {
  height: clamp(260px, 26vw, 420px);
}

@media (max-width: 800px) {
  .restaurant-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .restaurant-gallery-grid .parallax-frame { height: clamp(200px, 42vw, 280px); }
}

/* ============================================
   Parallax frames
   ============================================ */

.parallax-frame {
  position: relative;
  overflow: hidden;
}

.parallax-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* ============================================
   Reveal on scroll
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="fade"] {
  transform: none;
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .parallax-frame > img { transform: none !important; }
}

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