/* Sit Back — Trips & Events
   Converted from the "Sit Back v3 Playfair" design comp. */

:root {
  --sb-bg: #f5f3f0;
  --sb-bg-alt: #efece7;
  --sb-ink: #2b2420;
  --sb-ink-soft: #6a5d53;
  --sb-ink-faint: #9a8d80;
  --sb-cream: #f7f4f0;
  --sb-accent: #703020;
  --sb-accent-dark: #5a2818;
  --sb-image-fallback: #46362c;
  --sb-font-serif: 'Playfair Display', serif;
  --sb-font-sans: 'Montserrat', system-ui, sans-serif;
  --sb-header-h: 86px;
}

.sb-root * { box-sizing: border-box; }
.sb-root { scroll-behavior: smooth; }
.sb-root {
  background: var(--sb-bg);
  color: var(--sb-ink);
  font-family: var(--sb-font-sans);
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}
.sb-root ::selection { background: rgba(112, 48, 32, .18); color: #3a1c12; }
.sb-root input::placeholder,
.sb-root textarea::placeholder { color: #a59a8e; opacity: 1; }
.sb-root input:focus,
.sb-root textarea:focus { outline: none; }

@keyframes sbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
@keyframes sbFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .sb-root { scroll-behavior: auto; }
}

.sb-visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============ HEADER ============ */
.sb-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--sb-header-h);
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(245, 243, 240, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(112, 48, 32, .12);
}
.sb-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.sb-header__logo img { height: 70px; width: auto; display: block; }

.sb-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 34px); }
.sb-nav__link {
  text-decoration: none; color: #5a4d44; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 400; transition: color .25s;
}
.sb-nav__link:hover { color: var(--sb-accent); }

.sb-header__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.sb-lang-switch { display: flex; align-items: center; gap: 7px; font-size: .78rem; letter-spacing: .1em; }
.sb-lang-switch__sep { color: rgba(112, 48, 32, .3); }
.sb-lang {
  background: none; border: none; cursor: pointer; font-family: inherit; text-decoration: none;
  font-size: .78rem; letter-spacing: .1em; padding: 2px 2px;
  color: #a89a8c; font-weight: 400;
}
.sb-lang--active { color: var(--sb-accent); font-weight: 500; }

.sb-menu-btn {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
.sb-menu-btn__bar { display: block; width: 24px; height: 1.5px; background: var(--sb-accent); }

@media (max-width: 860px) {
  .sb-nav { display: none; }
  .sb-menu-btn { display: flex; }
}

/* ============ MOBILE MENU ============ */
.sb-mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: var(--sb-bg);
  display: flex; flex-direction: column; padding: 24px clamp(20px, 8vw, 48px);
}
.sb-mobile-menu[hidden] { display: none; }
.sb-mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between; height: 44px; margin-bottom: 36px;
}
.sb-mobile-menu__top img { height: 48px; width: auto; }
.sb-mobile-menu__close {
  background: none; border: none; cursor: pointer; font-size: 30px; line-height: 1;
  color: var(--sb-accent); font-weight: 300;
}
.sb-mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.sb-mobile-menu__link {
  text-decoration: none; color: var(--sb-ink); font-family: var(--sb-font-serif);
  font-size: 2.1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(112, 48, 32, .1);
}

/* ============ HERO ============ */
.sb-hero {
  position: relative; min-height: 100vh; overflow: hidden;
}
.sb-hero__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.sb-hero__bg-img {
  position: absolute; inset: -24% 0; background-position: center; background-size: cover;
  background-repeat: no-repeat; background-color: var(--sb-image-fallback); will-change: transform;
}
.sb-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28, 17, 12, .42) 0%, rgba(28, 17, 12, .34) 38%, rgba(28, 17, 12, .68) 100%);
}
.sb-hero__content { position: relative; z-index: 1; max-width: 880px; animation: sbFade .9s ease both; }
.sb-hero__kicker {
  margin: 0 0 26px; color: rgba(245, 243, 240, .86); font-size: clamp(.72rem, 1.4vw, .86rem);
  letter-spacing: .42em; text-transform: uppercase;
}
.sb-hero__title {
  margin: 0; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-cream);
  font-size: clamp(2.7rem, 8vw, 6rem); line-height: 1.02; letter-spacing: -.01em;
}
.sb-hero__sub {
  margin: 30px auto 0; max-width: 560px; color: rgba(245, 243, 240, .84);
  font-size: clamp(1rem, 1.7vw, 1.22rem); line-height: 1.6; font-weight: 300;
}
.sb-hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(247, 244, 240, .7);
}
.sb-hero__scroll-label { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; }
.sb-hero__scroll-line {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(rgba(247, 244, 240, .8), rgba(247, 244, 240, 0));
  animation: sbFloat 2.4s ease-in-out infinite;
}

/* Hero variant B — four parallax strips */
.sb-hero-b__strips { position: absolute; inset: 0; display: flex; gap: 2px; align-items: flex-start; }
.sb-hero-b__strip {
  position: relative; flex: 1; min-width: 0; height: 100%; overflow: hidden; will-change: transform;
}
.sb-hero-b__strip-img {
  position: absolute; inset: -28% 0; background-position: center; background-size: cover;
  background-repeat: no-repeat; background-color: var(--sb-image-fallback); will-change: transform;
}
.sb-hero-b__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 66% 52% at 50% 46%, rgba(18, 11, 7, .5) 0%, rgba(18, 11, 7, .16) 58%, rgba(18, 11, 7, 0) 80%);
}
.sb-hero-b__content {
  position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px clamp(20px, 6vw, 64px) 96px;
}

/* Buttons shared by hero / bands */
.sb-btn-outline {
  display: inline-block; margin-top: 42px; padding: 15px 40px;
  border: 1px solid rgba(247, 244, 240, .7); color: var(--sb-cream); text-decoration: none;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; transition: all .3s;
}
.sb-btn-outline:hover { background: var(--sb-cream); color: #3a1c12; border-color: var(--sb-cream); }

/* ============ GENERIC SECTION ============ */
.sb-section { padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 64px); background: var(--sb-bg); }
.sb-section--alt { background: var(--sb-bg-alt); }
.sb-section__inner { max-width: 1180px; margin: 0 auto; }
.sb-section__head { text-align: center; margin-bottom: clamp(48px, 7vw, 84px); }
.sb-kicker {
  margin: 0 0 22px; color: var(--sb-accent); font-size: .78rem; letter-spacing: .4em; text-transform: uppercase;
}
.sb-heading {
  margin: 0; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.1;
}

/* ============ PHILOSOPHY ============ */
.sb-philosophy__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.sb-philosophy__kicker { margin: 0 0 30px; color: var(--sb-accent); font-size: .78rem; letter-spacing: .4em; text-transform: uppercase; }
.sb-philosophy__lead {
  margin: 0 auto; max-width: 880px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink);
  font-size: clamp(1.9rem, 4.6vw, 3.5rem); line-height: 1.12; letter-spacing: -.01em;
}
.sb-philosophy__body {
  margin: 32px auto 0; max-width: 620px; color: var(--sb-ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem); line-height: 1.75; font-weight: 300;
}

/* ============ PARALLAX BAND (quote / cta) ============ */
.sb-band {
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 64px);
}
.sb-band--quote { min-height: 62vh; }
.sb-band--cta { min-height: 58vh; }
.sb-band__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.sb-band__bg-img {
  position: absolute; inset: -22% 0; background-position: center; background-size: cover;
  background-repeat: no-repeat; background-color: var(--sb-image-fallback); will-change: transform;
}
.sb-band--cta .sb-band__bg-img { inset: -28% 0; }
.sb-band__overlay { position: absolute; inset: 0; }
.sb-band--quote .sb-band__overlay { background: linear-gradient(180deg, rgba(30, 20, 15, .5), rgba(30, 20, 15, .55)); }
.sb-band--cta .sb-band__overlay { background: linear-gradient(180deg, rgba(28, 18, 13, .4), rgba(28, 18, 13, .58)); }
.sb-band__quote { position: relative; z-index: 1; margin: 0; max-width: 840px; }
.sb-band__quote-text {
  margin: 0; font-family: var(--sb-font-serif); font-style: italic; font-weight: 400; color: var(--sb-cream);
  font-size: clamp(1.7rem, 4.4vw, 3.2rem); line-height: 1.22;
}
.sb-band__cta { position: relative; z-index: 1; max-width: 760px; }
.sb-band__cta-title {
  margin: 0; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-cream);
  font-size: clamp(2rem, 5.6vw, 4rem); line-height: 1.08; letter-spacing: -.01em;
}
.sb-band__cta .sb-btn-outline { margin-top: 36px; padding: 15px 42px; }

/* ============ HOW IT WORKS ============ */
.sb-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(28px, 4vw, 64px); }
.sb-step { text-align: left; }
.sb-step__num {
  margin: 0 0 18px; font-family: var(--sb-font-serif); font-size: 2.6rem;
  color: rgba(112, 48, 32, .55); font-weight: 500; line-height: 1;
}
.sb-step__rule { width: 34px; height: 1px; background: var(--sb-accent); margin-bottom: 20px; }
.sb-step__title { margin: 0 0 14px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink); font-size: 1.6rem; }
.sb-step__body { margin: 0; color: var(--sb-ink-soft); font-size: 1rem; line-height: 1.7; font-weight: 300; }

/* ============ TRIPS ============ */
.sb-trips { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(20px, 3vw, 40px); }
.sb-trip { border-top: 1px solid rgba(112, 48, 32, .22); padding-top: 26px; }
.sb-trip__tag { margin: 0 0 16px; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sb-accent); }
.sb-trip__title { margin: 0 0 14px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink); font-size: 2rem; line-height: 1.1; }
.sb-trip__body { margin: 0; color: var(--sb-ink-soft); font-size: 1rem; line-height: 1.7; font-weight: 300; }

/* ============ SPECIAL TRIPS ============ */
.sb-specialtrips { display: flex; flex-direction: column; }
.sb-specialtrip {
  display: grid; grid-template-columns: minmax(140px, 210px) 1fr;
  gap: clamp(24px, 4vw, 64px); align-items: start;
  padding: clamp(32px, 5vw, 52px) 0;
  border-top: 1px solid rgba(112, 48, 32, .22);
}
.sb-specialtrip:last-child { border-bottom: 1px solid rgba(112, 48, 32, .22); }
.sb-specialtrip__meta { text-align: center; }
.sb-specialtrip__tag {
  margin: 0; font-size: 1.15rem; line-height: 1.5; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sb-ink); font-weight: 400;
}
.sb-specialtrip__duration { margin: 18px 0 0; font-size: .8rem; letter-spacing: .1em; color: var(--sb-ink-soft); }
.sb-specialtrip__title {
  margin: 0 0 16px; font-family: var(--sb-font-serif); font-weight: 700; color: var(--sb-ink);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.15;
}
.sb-specialtrip__list {
  margin: 0; padding-left: 22px; list-style: disc; color: var(--sb-ink-soft);
  font-family: var(--sb-font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.65;
}
.sb-specialtrip__list li + li { margin-top: 6px; }
.sb-specialtrip__price { margin: 18px 0 0; text-align: right; font-size: 1rem; color: var(--sb-ink); }

/* Inverted (dark) section variant */
.sb-section--inverse { background: var(--sb-ink); }
.sb-section--inverse .sb-kicker { color: rgba(245, 243, 240, .78); }
.sb-section--inverse .sb-heading { color: var(--sb-cream); }
.sb-section--inverse .sb-specialtrip { border-color: rgba(247, 244, 240, .18); }
.sb-section--inverse .sb-specialtrip__tag { color: var(--sb-cream); }
.sb-section--inverse .sb-specialtrip__duration { color: #8d7d6e; }
.sb-section--inverse .sb-specialtrip__title { color: var(--sb-cream); }
.sb-section--inverse .sb-specialtrip__list { color: #cdbfb2; }
.sb-section--inverse .sb-specialtrip__price { color: var(--sb-cream); }

@media (max-width: 640px) {
  .sb-specialtrip { grid-template-columns: 1fr; gap: 18px; }
  .sb-specialtrip__meta { text-align: left; }
  .sb-specialtrip__price { text-align: left; }
}

/* ============ ABOUT ============ */
.sb-about__grid {
  max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.sb-about__kicker { margin: 0 0 22px; color: var(--sb-accent); font-size: .78rem; letter-spacing: .4em; text-transform: uppercase; }
.sb-about__title {
  margin: 0 0 26px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: 1.12;
}
.sb-about__body {
  margin: 0; color: var(--sb-ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75; font-weight: 300; max-width: 480px;
}
.sb-about__figure {
  position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sb-image-fallback);
}
.sb-about__figure-img {
  position: absolute; inset: -18% 0; background-position: center; background-size: cover;
  background-repeat: no-repeat; will-change: transform;
}

/* ============ GALLERY ============ */
.sb-gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(14px, 2vw, 26px); }
.sb-gallery__item {
  position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sb-image-fallback);
}
.sb-gallery__item-img {
  position: absolute; inset: -16% 0; background-size: cover; background-position: center; will-change: transform;
}
.sb-gallery__item-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28, 18, 13, 0) 45%, rgba(28, 18, 13, .6) 100%);
}
.sb-gallery__caption {
  position: absolute; left: 18px; bottom: 16px; z-index: 1; color: var(--sb-cream);
  font-family: var(--sb-font-serif); font-size: 1.3rem; font-style: italic;
}

/* ============ CONTACT ============ */
.sb-contact__grid {
  max-width: 1080px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.sb-contact__kicker { margin: 0 0 24px; color: var(--sb-accent); font-size: .78rem; letter-spacing: .4em; text-transform: uppercase; }
.sb-contact__title {
  margin: 0 0 22px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: 1.12;
}
.sb-contact__body {
  margin: 0; color: var(--sb-ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75; font-weight: 300; max-width: 440px;
}
.sb-contact__thanks {
  display: flex; align-items: center; min-height: 200px; border-top: 1px solid rgba(112, 48, 32, .22); padding-top: 36px;
}
.sb-contact__thanks[hidden] { display: none; }
.sb-contact__thanks p {
  margin: 0; font-family: var(--sb-font-serif); font-style: italic; font-size: 1.7rem; color: var(--sb-accent); line-height: 1.4;
}
.sb-contact-form { display: flex; flex-direction: column; gap: 26px; }
.sb-contact-form[hidden] { display: none; }
.sb-contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.sb-contact-form__label { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sb-ink-faint); }
.sb-contact-form__input,
.sb-contact-form__textarea {
  border: none; border-bottom: 1px solid rgba(112, 48, 32, .3); background: transparent;
  padding: 8px 0; font-family: var(--sb-font-sans); font-size: 1.05rem; color: var(--sb-ink); width: 100%;
}
.sb-contact-form__textarea { resize: vertical; }
.sb-contact-form__submit {
  align-self: flex-start; margin-top: 8px; padding: 15px 42px; background: var(--sb-accent);
  color: var(--sb-cream); border: none; cursor: pointer; font-family: var(--sb-font-sans);
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; transition: background .3s;
}
.sb-contact-form__submit:hover { background: var(--sb-accent-dark); }
.sb-contact-form__submit:disabled { opacity: .6; cursor: default; }
.sb-contact-form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sb-contact-form__error {
  margin: 0; color: #a33; font-size: .88rem;
}

/* ============ FOOTER ============ */
.sb-footer { background: var(--sb-ink); color: #cdbfb2; padding: clamp(56px, 7vw, 90px) clamp(20px, 6vw, 64px) 40px; }
.sb-footer__top {
  max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between;
}
.sb-footer__logo img { height: 100px; width: auto; display: block; }
.sb-footer__address {
  margin: 16px 0 0; font-style: normal; font-size: .78rem; line-height: 1.8;
  letter-spacing: .05em; color: #8d7d6e;
}
.sb-footer__address a { color: #8d7d6e; text-decoration: underline; text-underline-offset: 3px; transition: color .25s; }
.sb-footer__address a:hover { color: #cdbfb2; }
.sb-footer__tagline { margin: 0; font-family: var(--sb-font-serif); font-style: italic; font-size: 1.35rem; color: #e7ddd2; }
.sb-footer__bottom {
  max-width: 1180px; margin: 36px auto 0; padding-top: 24px; border-top: 1px solid rgba(243, 237, 230, .12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .76rem; letter-spacing: .08em; color: #8d7d6e;
}
.sb-footer__meta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.sb-footer__terms { color: #8d7d6e; text-decoration: underline; text-underline-offset: 3px; transition: color .25s; }
.sb-footer__terms:hover { color: #cdbfb2; }

/* ============ LEGAL / TERMS PAGE ============ */
.sb-legal { max-width: 820px; margin: 0 auto; padding: clamp(90px, 10vw, 140px) clamp(20px, 6vw, 64px) 100px; }
.sb-legal a { color: var(--sb-accent); }
.sb-legal__topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.sb-legal__back { display: inline-block; text-decoration: none; color: var(--sb-accent); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.sb-legal__effective { margin: 0 0 40px; color: var(--sb-ink-faint); font-size: .85rem; letter-spacing: .04em; }
.sb-legal__jump { display: flex; gap: 24px; margin: 0 0 56px; padding-bottom: 24px; border-bottom: 1px solid rgba(112, 48, 32, .15); }
.sb-legal__jump a { text-decoration: none; color: var(--sb-accent); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.sb-legal section { scroll-margin-top: 40px; }
.sb-legal section + section { margin-top: 96px; padding-top: 64px; border-top: 1px solid rgba(112, 48, 32, .15); }
.sb-legal h1 { margin: 0 0 10px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink); font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.15; }
.sb-legal h2 { margin: 44px 0 16px; font-family: var(--sb-font-serif); font-weight: 500; color: var(--sb-ink); font-size: 1.4rem; }
.sb-legal p { margin: 0 0 18px; color: var(--sb-ink-soft); font-size: 1rem; line-height: 1.75; font-weight: 300; }
.sb-legal ul { margin: 0 0 18px; padding-left: 22px; color: var(--sb-ink-soft); font-size: 1rem; line-height: 1.75; font-weight: 300; }
.sb-legal li { margin: 0 0 10px; }
.sb-legal li:last-child { margin-bottom: 0; }
