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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #111;
}

/* ???????????????????????????
   HERO
??????????????????????????? */
.ff-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-bar .ff-hero {
  height: calc(100vh - 32px);
  min-height: calc(750px - 32px);
}

@media screen and (max-width: 782px) {
  .admin-bar .ff-hero {
    height: calc(100vh - 46px);
    min-height: calc(750px - 46px);
  }
}

/* Video background */
.ff-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Dark overlay */
.ff-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(67.64% 67.64% at 50% 56.34%, rgba(0, 0, 0, 0.65) 12.5%, rgba(0, 0, 0, 0.10) 100%);
  z-index: 1;
}

/* ???????????????????????????
   NAVBAR
??????????????????????????? */
.ff-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  z-index: 20;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 90px;
}

.ff-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

.ff-nav__left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ff-nav__item {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.ff-nav__item:hover {
  opacity: 1;
}

.ff-nav__item svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
}

.ff-nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ff-nav__logo svg {
  width: 108px;
  height: 30px;
}

.ff-nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ff-nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0.9;
}

.ff-nav__lang svg {
  width: 10px;
  height: 6px;
  stroke: #fff;
  fill: none;
}

/* ???????????????????????????
   HERO CONTENT
??????????????????????????? */
.ff-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  max-width: 1260px;
  padding: 0 20px 120px;
  height: 100%;
}

.ff-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ff-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F72585;
}

.ff-hero__eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
}

.ff-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  max-width: 820px;
}

.ff-hero__title em {
  font-style: normal;
  color: #ff97db;
}

.ff-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  max-width: 540px;
  margin-bottom: 44px;
}

.ff-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ff-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  background: #fff;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  transition: background 0.2s, color 0.2s;
}

.ff-hero__btn-primary:hover {
  background: transparent;
  color: #fff;
}

.ff-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  background: transparent;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, color 0.2s;
}

.ff-hero__btn-secondary:hover {
  border-color: #fff;
}

/* ???????????????????????????
   SCROLL INDICATOR
??????????????????????????? */
.ff-hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 90px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ff-hero__scroll-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ff-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.ff-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F72585;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ???????????????????????????
   RESPONSIVE
??????????????????????????? */
@media (max-width: 900px) {
  .ff-nav {
    padding: 0 32px;
  }

  .ff-nav__left .ff-nav__item:not(:first-child) {
    display: none;
  }

  .ff-hero__content {
    padding: 0 32px 80px;
  }

  .ff-hero__scroll {
    right: 1%;
  }

  .ff-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ff-hero__btn-primary,
  .ff-hero__btn-secondary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .ff-hero__content {
    padding: 0 20px 72px;
  }

  .ff-hero__title {
    font-size: clamp(36px, 10vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .ff-hero__sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .ff-hero__scroll {
    display: none;
  }

  .ff-hero__ctas {
    max-width: 100%;
  }
}

/* =================================
   MEETING ROOMS SECTION
================================= */
.mr-section {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  overflow: hidden;
  background: transparent;
}

.mr-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 0;
}

.mr-inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
}

.mr-header {
  text-align: center;
  margin-bottom: 64px;
}

.mr-header__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
}

.mr-header__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  max-width: 560px;
  margin: 0 auto;
}

.mr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.mr-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: transparent;
  transition: background 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.mr-card:hover {
  background: #fff;
}

.mr-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
}

.mr-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.mr-card:hover .mr-card__img-wrap img {
  transform: scale(1.03);
}

.mr-card__body {
  padding: 20px 20px 32px 20px;
}

.mr-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mr-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  margin-bottom: 0;
  align-items: start;
}

.mr-card__spec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.mr-card__spec-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.mr-card__divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 16px 0;
}

.mr-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

.mr-footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.mr-btn-viewmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 64px;
  height: 52px;
  background: #fff;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #111;
  transition: background 0.2s, color 0.2s;
}

.mr-btn-viewmore:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 1024px) {
  .mr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .mr-inner {
    padding: 0 40px;
  }
}

@media (max-width: 600px) {
  .mr-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mr-inner {
    padding: 0 24px;
  }

  .mr-section {
    padding: 64px 0 48px;
  }
}


/* =================================
   RESTAURANT SECTION - CLEAN
================================= */
.rs-section {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  padding: 100px 0 100px;
  overflow: hidden;
}

.rs-inner {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: center;
}

.rs-leaf-left {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.rs-leaf-right {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Photo stack */
.rs-photos {
  position: relative;
  width: 100%;
  height: 520px;
  z-index: 1;
}

/* Shadow card behind - plain grey/white, no image */
.rs-card-shadow {
  position: absolute;
  width: 380px;
  height: 430px;
  top: 20px;
  left: 10px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(-6deg);
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  padding: 12px 12px 44px 12px;
  box-sizing: border-box;
}

.rs-card-shadow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Front polaroid card */
.rs-card-front {
  position: absolute;
  width: 380px;
  height: 430px;
  bottom: 10px;
  left: 80px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(4deg);
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
  padding: 12px 12px 40px 12px;
  box-sizing: border-box;
}

.rs-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Text */
.rs-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.rs-content__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.rs-content__body {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
  max-width: 480px;
}

.rs-content__body:last-of-type {
  margin-bottom: 36px;
}

.rs-features {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rs-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  padding: 0 20px 0 0;
}

.rs-feature:first-child {
  padding-left: 0;
}

.rs-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #111;
  fill: none;
}

.rs-feature-sep {
  width: 1px;
  height: 20px;
  background: #ccc;
  margin: 0 20px 0 0;
  flex-shrink: 0;
}

.rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 52px;
  background: #fff;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #111;
  transition: background 0.2s, color 0.2s;
}

.rs-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 1024px) {
  .rs-inner {
    grid-template-columns: 1fr;
    gap: 60px 0;
    padding: 0 40px;
  }

  .rs-photos {
    height: 400px;
    max-width: 480px;
    margin: 0 auto;
  }

  .rs-card-shadow,
  .rs-card-front {
    width: 300px;
    height: 340px;
  }

  .rs-card-front {
    left: 60px;
  }

  .rs-leaf-left {
    left: -80px;
    width: 220px;
  }

  .rs-leaf-right {
    right: -60px;
    width: 200px;
  }
}


@media (max-width: 600px) {
  .rs-section {
    padding: 64px 0;
  }

  .rs-inner {
    padding: 0 20px;
    gap: 48px 0;
  }

  .rs-photos {
    height: 320px;
    max-width: 100%;
  }

  .rs-card-shadow,
  .rs-card-front {
    width: 220px;
    height: 260px;
  }

  .rs-card-shadow {
    top: 16px;
    left: 8px;
  }

  .rs-card-front {
    left: 44px;
    bottom: 8px;
  }

  .rs-leaf-left,
  .rs-leaf-right {
    display: none;
  }

  .rs-content__title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .rs-content__body {
    max-width: 100%;
    font-size: 15px;
  }

  .rs-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .rs-feature-sep {
    display: none;
  }

  .rs-btn {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

/* === remove old photo fix overrides === */
/* =================================
   OFFERINGS SECTION
================================= */
.of-section {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #1a1a1a;
  overflow: hidden;
  padding: 180px 0 60px;
  margin-top: -80px;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
}

.of-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* opacity: 0.25; */
  z-index: 0;
}

.of-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 0;
}

.of-header {
  text-align: center;
  margin-bottom: 72px;
}

.of-header__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.of-header__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.of-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.of-item {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.of-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.of-item__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  text-decoration: none;
  transition: padding-left 0.3s ease;
}

.of-item__link:hover {
  padding-left: 12px;
}

.of-item__name {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  font-style: normal;
  color: rgba(255, 255, 255, 0.30);
  line-height: 1;
  transition: color 0.3s ease;
}

.of-item__link:hover .of-item__name {
  color: rgba(255, 255, 255, 0.85);
}

.of-item__arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.of-item__arrow line,
.of-item__arrow polyline {
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

.of-item__link:hover .of-item__arrow {
  opacity: 0.9;
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .of-inner {
    padding: 0 40px;
  }

  .of-item__name {
    font-size: 36px;
  }

  .of-item__link {
    padding: 28px 0;
  }
}

@media (max-width: 600px) {
  .of-inner {
    padding: 0 24px;
  }

  .of-section {
    padding: 120px 0 48px;
    margin-top: -40px;
    clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  }
}

/* =================================
   FAQS SECTION
================================= */
.faq-section {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fdf8f6;
  padding: 100px 0 120px;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.faq-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 90px;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-item__question {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: #111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item__icon::before {
  width: 18px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #555;
  padding: 0 0 28px 0;
}

@media (max-width: 900px) {
  .faq-inner {
    padding: 0 40px;
  }

  .faq-item__question {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .faq-inner {
    padding: 0 24px;
  }

  .faq-section {
    padding: 72px 0 80px;
  }
}

/* =================================
   GALLERY SECTION
================================= */
.gal-section {
  position: relative;
  width: 100%;
  background: #111;
  padding: 80px 0 0;
  overflow: hidden;
}

.gal-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.gal-header {
  text-align: center;
  padding: 0 90px;
  margin-bottom: 60px;
}

.gal-header__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gal-header__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.gal-strip {
  display: flex;
  align-items: stretch;
  width: max-content;
  height: 440px;
  gap: 0;
  animation: galScroll 30s linear infinite;
}

.gal-strip:hover {
  animation-play-state: paused;
}

@keyframes galScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gal-section .gal-inner {
  overflow: hidden;
}

.gal-item {
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: flex 0.4s ease;
}

.gal-item {
  flex-shrink: 0;
  width: 380px;
  overflow: hidden;
  position: relative;
  transition: width 0.4s ease;
}

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

@media (max-width: 900px) {
  .gal-section {
    padding: 64px 0;
  }

  .gal-header {
    padding: 0 32px;
    margin-bottom: 40px;
  }

  .gal-section .gal-inner {
    overflow: hidden;
  }

  .gal-strip-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gal-strip-wrap::-webkit-scrollbar {
    display: none;
  }

  .gal-strip {
    display: flex;
    flex-direction: row;
    width: max-content;
    height: 300px;
    animation: none;
  }

  .gal-item,
  .gal-item--tall {
    width: 260px;
    flex-shrink: 0;
  }
}

@media (max-width: 580px) {
  .gal-section {
    padding: 56px 0;
  }

  .gal-header {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .gal-strip {
    height: 240px;
  }

  .gal-item,
  .gal-item--tall {
    width: 220px;
  }
}

.team-section {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 100px 0 120px;
}

.team-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 90px;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-header__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.team-header__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: #2a2a2a;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.04);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.team-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 20px;
  z-index: 2;
}

.team-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
  display: block;
}

.team-card__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
  display: block;
}

@media (max-width: 1024px) {
  .team-section {
    padding: 72px 0 88px;
  }

  .team-inner {
    padding: 0 40px;
  }

  .team-header {
    margin-bottom: 48px;
  }

  .team-header__sub {
    max-width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .team-section {
    padding: 56px 0 72px;
  }

  .team-inner {
    padding: 0 20px;
  }

  .team-header {
    margin-bottom: 32px;
    text-align: left;
  }

  .team-header__sub {
    max-width: 100%;
    font-size: 15px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .team-card__name {
    font-size: 15px;
  }

  .team-card__role {
    font-size: 12px;
  }

  .team-card__info {
    padding: 16px 14px;
  }
}



.nws-section {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 860px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -120px;
  padding-top: 120px;
}

.nws-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
}

.nws-card {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0px 52px;
  gap: 10px;
  isolation: isolate;
  width: 834px;
  max-width: calc(100% - 48px);
  background: url('../images/cta-banner-bg.png') center center / cover no-repeat;
  border: 16px solid #FFFFFF;
  overflow: hidden;
  z-index: 4;
  text-align: center;
}

.nws-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 32px;
  width: 620px;
  max-width: 100%;
  z-index: 2;
}

.nws-badge {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  gap: 10px;
  height: 38px;
  background: #E4B23A;
}

.nws-badge span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #111111;
  white-space: nowrap;
}

.nws-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.nws-h2 {
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 108%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
  width: 100%;
}

.nws-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #555555;
  margin: 0;
  width: 100%;
  max-width: 500px;
}

.nws-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  height: 48px;
}

.nws-btn-primary {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  height: 48px;
  background: #111111;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nws-btn-primary span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

.nws-btn-primary:hover {
  background: #333;
}

.nws-btn-secondary {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  height: 48px;
  border: 1px solid #111111;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nws-btn-secondary span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
}

.nws-btn-secondary:hover {
  background: #111;
}

.nws-btn-secondary:hover span {
  color: #fff;
}

@media (max-width: 900px) {
  .nws-section {
    min-height: 0;
    margin-top: -120px;
    padding: 200px 24px 80px;
  }

  .nws-card {
    width: 100%;
    max-width: calc(100% - 48px);
    padding: 40px 0 44px;
    border-width: 12px;
  }

  .nws-inner {
    width: 100%;
    gap: 24px;
  }

  .nws-badge span {
    white-space: normal;
    text-align: center;
  }

  .nws-h2 {
    font-size: 38px;
  }

  .nws-sub {
    font-size: 16px;
    max-width: 100%;
  }

  .nws-btns {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 10px;
  }

  .nws-btn-primary,
  .nws-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .nws-section {
    margin-top: -120px;
    padding: 184px 20px 64px;
  }

  .nws-card {
    max-width: 100%;
    padding: 28px 0 32px;
    border-width: 10px;
  }

  .nws-inner {
    gap: 20px;
  }

  .nws-h2 {
    font-size: 28px;
  }

  .nws-sub {
    font-size: 15px;
  }

  .nws-btn-primary,
  .nws-btn-secondary {
    width: 100%;
  }
}

.tsl-section {
  position: relative;
  width: 100%;
  min-height: 900px;
  background-color: #FFFFFF;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* Force white bg - prevent body#111 bleed */
.tsl-section,
.tsl-section * {
  color: inherit;
}

/* Plants */
.tsl-plant-left {
  position: absolute;
  width: 320px;
  height: 540px;
  left: -100px;
  top: 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.30;
}

.tsl-plant-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
  display: block;
}

.tsl-plant-right {
  position: absolute;
  width: 280px;
  height: 480px;
  right: -90px;
  top: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.30;
}

.tsl-plant-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  display: block;
}

/* Logo bar */
.tsl-logos {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 2;
}

.tsl-logos .marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.tsl-logos .marquee-track {
  display: flex;
  width: max-content;
  animation: tsl-scroll 30s linear infinite;
}

.tsl-logos .marquee-track:hover {
  animation-play-state: paused;
}

@keyframes tsl-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tsl-logos .marquee-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
  flex-shrink: 0;
}

.tsl-logos .logo-item {
  width: 138px;
  height: auto;
  display: block;
  filter: brightness(0);
  opacity: 0.55;
  flex-shrink: 0;
}

.tsl-logos::before,
.tsl-logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.tsl-logos::before {
  left: 0;
  background: linear-gradient(to right, #fff 30%, transparent);
}

.tsl-logos::after {
  right: 0;
  background: linear-gradient(to left, #fff 30%, transparent);
}

/* Heading block */
.tsl-head {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 200px;
  width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
  text-align: center;
}

.tsl-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E4B23A;
  padding: 10px 12px;
}

.tsl-badge span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #111111;
}

.tsl-h2 {
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111111;
  margin: 0;
  width: 679px;
  text-align: center;
}

/* Cards grid */
.tsl-grid {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1184px;
  max-width: calc(100% - 80px);
  top: 417px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 96px;
  z-index: 3;
}

/* Single card */
.tsl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 16px;
  isolation: isolate;
  flex: 1;
  min-width: 0;
}

/* Pink quote blob */

/* Blob */
.tsl-blob {
  position: absolute;
  left: -20px;
  top: -10px;
  z-index: 0;
  pointer-events: none;
  width: 90px;
  height: 80px;
}

/* Stars */
.tsl-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  z-index: 1;
  position: relative;
}

.tsl-star {
  width: 24px;
  height: 24px;
  fill: #E4B23A;
}

/* Quote + author wrapper */
.tsl-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.tsl-quote {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #111111;
  margin: 0;
  width: 100%;
}

/* Author row */
.tsl-author {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 0 0;
  gap: 16px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tsl-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #E4B23A;
  overflow: hidden;
  flex-shrink: 0;
  background: #D9D9D9;
}

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

.tsl-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

.tsl-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-transform: capitalize;
  color: #000000;
}

.tsl-role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1100px) {
  .tsl-grid {
    width: calc(100% - 80px);
    top: 380px;
    gap: 48px;
  }

  .tsl-h2 {
    width: 100%;
    font-size: 40px;
  }

  .tsl-head {
    width: calc(100% - 80px);
  }
}

@media (max-width: 900px) {
  /* Switch from absolute-everything to normal flow */
  .tsl-section {
    min-height: 0;
    padding: 60px 32px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    overflow: hidden;
  }

  /* Pull logo bar into flex flow — first in DOM so naturally appears first */
  .tsl-logos {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 32px 0;
  }

  .tsl-logos .marquee-logos {
    gap: 48px;
    padding: 0 24px;
  }

  .tsl-logos .logo-item {
    width: 240px;
  }

  .tsl-plant-left,
  .tsl-plant-right {
    display: none;
  }

  /* Head: pull out of absolute flow */
  .tsl-head {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 600px;
  }

  .tsl-h2 {
    font-size: 36px;
    width: 100%;
  }

  /* Cards grid: pull out of absolute flow */
  .tsl-grid {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 40px;
  }

  .tsl-quote {
    font-size: 20px;
  }

  .tsl-body {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .tsl-section {
    padding: 48px 20px 48px;
    gap: 36px;
  }

  .tsl-logos .marquee-logos {
    gap: 32px;
    padding: 0 16px;
  }

  .tsl-logos .logo-item {
    width: 200px;
  }

  .tsl-h2 {
    font-size: 28px;
  }

  .tsl-quote {
    font-size: 17px;
  }

  .tsl-name {
    font-size: 16px;
  }

  .tsl-body {
    gap: 24px;
  }

  .tsl-card {
    padding: 16px;
  }
}

/* ═══════════════════════════════════
   MAP
═══════════════════════════════════ */
.fomo-map-section {
  display: flex;
  width: 100%;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.fomo-map-section__left {
  flex: 0 0 40%;
  background-color: #fdf1f1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 80px 60px;
}

.fomo-map-section__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../flamingo.png');
  background-repeat: repeat;
  background-size: 280px auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.fomo-map-section__content {
  position: relative;
  z-index: 2;
}

.fomo-map-section__flamingo {
  display: none;
}

.fomo-map-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fomo-map-section__heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.fomo-map-section__address-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}

.fomo-map-section__address p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.7;
  margin: 0;
}

.fomo-map-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  align-self: flex-start;
  transition: background 0.2s;
}

.fomo-map-section__btn:hover {
  background: #333;
}

/* Rotating badge */
.fomo-map-badge {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  z-index: 20;
}

.fomo-map-badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: badgeSpin 10s linear infinite;
}

@keyframes badgeSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fomo-map-badge__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
}

/* Right map panel */
.fomo-map-section__right {
  flex: 1;
  position: relative;
  z-index: 1;
}

.fomo-map-section__right iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.tsl-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 900px) {
  .fomo-map-section {
    flex-direction: column;
    min-height: 0;
  }

  .fomo-map-section__left {
    flex: none;
    width: 100%;
    padding: 60px 40px 100px;
    overflow: visible;
  }

  .fomo-map-badge {
    right: 24px;
    top: auto;
    bottom: -75px;
    transform: none;
  }

  .fomo-map-section__right {
    flex: none;
    width: 100%;
    height: 420px;
    position: relative;
  }

  .fomo-map-section__content {
    gap: 24px;
  }

  .fomo-map-section__btn {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .fomo-map-section__left {
    padding: 40px 20px;
  }

  .fomo-map-section__right {
    height: 300px;
  }

  .fomo-map-section__heading {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .fomo-map-section__content {
    gap: 20px;
  }

  .fomo-map-section__btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════
   FOOTER — responsive (copied from about.css)
   Global style.css handles 960px + 600px breakpoints.
   These 480px rules only load on pages with their own CSS,
   so they are duplicated here for the funky-fomo page.
═══════════════════════════════════ */
@media (max-width: 960px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-logo-overlap img {
    width: 240px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 100px 0 0;
  }

  .footer-inner {
    padding: 0 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-logo-overlap img {
    width: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 80px;
  }

  .footer-logo-overlap {
    top: -40px;
  }
}