/* Savills-style property deal site */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

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

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

body {
  margin: 0;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #25273a;
  background: #f7f3ec;
}

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

/* ── Header ── */
.sf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1d1f2e;
  border-bottom: 1px solid #ffffff14;
}

.sf-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 68px;
  gap: 16px;
}

.sf-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.sf-brand-mark {
  width: 34px;
  height: 34px;
  background: #ffdf00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #c90c0f;
}

.sf-brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.sf-brand-tag {
  color: #ffffff73;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.sf-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.sf-nav-link {
  color: #ffffffb3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.sf-nav-link:hover { color: #ffdf00; }

.sf-nav-cta {
  color: #000;
  background: #ffdf00;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.sf-nav-cta:hover { background: #f0d200; }

.sf-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.sf-mobile-menu {
  display: none;
  flex-direction: column;
  background: #15161f;
  padding: 16px 24px 24px;
  border-top: 1px solid #ffffff14;
}

.sf-mobile-menu.open { display: flex; }

.sf-mobile-nav-link {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff0d;
}

.sf-lang {
  display: flex;
  gap: 4px;
}

.sf-lang-btn {
  color: #ffffff80;
  background: transparent;
  border: 1px solid #ffffff30;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  font-family: inherit;
}

.sf-lang-on {
  color: #000;
  background: #ffdf00;
  border-color: #ffdf00;
}

/* ── Hero ── */
.sf-hero {
  position: relative;
  background: #1d1f2e;
  overflow: hidden;
}

.sf-hero-media {
  position: relative;
  width: 100%;
  min-height: min(78vh, 760px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1d1f2e;
}

.sf-hero-photo,
.sf-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sf-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #0d0e144d 0%, #0d0e1414 28%, transparent 55%),
    linear-gradient(90deg, #0d0e1433 0%, transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.sf-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  width: 100%;
}

.sf-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.sf-badge-yellow {
  background: #ffdf00;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.sf-badge-ghost {
  color: #fff;
  border: 1px solid #ffffff40;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.sf-hero-h1 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 780px;
}

.sf-hero-h1-accent {
  color: #ffdf00;
}

.sf-hero-sub {
  color: #ffffffd1;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 520px;
}

.sf-hero-sub strong { color: #ffdf00; }

.sf-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffdf00;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s;
}

.sf-hero-btn:hover { background: #f0d200; }

.sf-hero-strip {
  background: #ffdf00;
  padding: 14px 0;
}

.sf-hero-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.sf-strip-item {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sf-strip-dot {
  width: 4px;
  height: 4px;
  background: #00000050;
  border-radius: 50%;
}

/* ── Sections ── */
.sf-section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.sf-bg-cream { background: #f7f3ec; }
.sf-bg-white { background: #fff; }
.sf-bg-ink { background: #1d1f2e; color: #fff; }
.sf-bg-cta { background: #ffdf00; }

.sf-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sf-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sf-tick {
  width: 18px;
  height: 2px;
  background: #ffdf00;
}

.sf-eyebrow {
  color: #6b6d79;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sf-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  color: #25273a;
  margin: 0 0 40px;
}

.sf-bg-ink .sf-h2 { color: #fff; }

.sf-lead {
  color: #5f676f;
  font-size: 17px;
  line-height: 1.7;
  max-width: 680px;
  margin: -20px 0 40px;
}

.sf-lead--wide {
  max-width: none;
}

/* ── Stats ── */
.sf-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

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

.sf-stats-grid--6 .sf-stat-num {
  font-family: Montserrat, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d1f2e;
}

.sf-stats-grid--6 .sf-stat-unit {
  font-family: Montserrat, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #6b6d79;
}

.sf-stats-grid--6 .sf-stat-cell {
  border-right: 1px solid #efe7d7;
  border-bottom: 1px solid #efe7d7;
}

.sf-stats-grid--6 .sf-stat-cell:nth-child(3n) {
  border-right: none;
}

.sf-stats-grid--6 .sf-stat-cell:nth-child(n+4) {
  border-bottom: none;
}

/* ── Pre-glance aerial collage: left spans both right rows ── */
.sf-photo-trio {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.sf-photo-trio-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #ebe4d6;
  min-height: 0;
}

.sf-photo-trio-item--main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.sf-photo-trio-item:nth-child(2),
.sf-photo-trio-item:nth-child(3) {
  grid-column: 2;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.sf-photo-trio-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .sf-photo-trio {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .sf-photo-trio-item--main {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .sf-photo-trio-item:nth-child(2),
  .sf-photo-trio-item:nth-child(3) {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }
}

/* ── Glance photo scroller ── */
.sf-glance-scroller {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.sf-glance-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 6px;
}

.sf-glance-viewport::-webkit-scrollbar {
  display: none;
}

.sf-glance-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 2px;
}

.sf-glance-slide {
  margin: 0;
  flex: 0 0 min(72vw, 420px);
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e6dcc9;
  background: #fff;
  box-shadow: 0 10px 28px #25273a12;
}

.sf-glance-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.sf-glance-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d9cfbc;
  background: #fff;
  color: #25273a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px #25273a14;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sf-glance-nav:hover {
  background: #ffdf00;
  border-color: #ffdf00;
}

@media (max-width: 720px) {
  .sf-glance-scroller {
    grid-template-columns: 1fr;
  }

  .sf-glance-nav {
    display: none;
  }

  .sf-glance-slide {
    flex-basis: min(85vw, 320px);
  }

  .sf-glance-slide img {
    height: 200px;
  }
}

.sf-stat-cell {
  padding: 28px 20px;
  border-right: 1px solid #efe7d7;
  text-align: center;
}

.sf-stat-cell:last-child { border-right: none; }

.sf-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #25273a;
  line-height: 1.1;
}

.sf-stat-unit {
  color: #6b6d79;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ── Amenities ── */
.sf-amen-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 24px;
}

.sf-amen-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6d79;
  white-space: nowrap;
}

.sf-amen-rule {
  flex: 1;
  height: 1px;
  background: #e6dcc9;
}

.sf-amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sf-amen-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 18px 20px;
}

.sf-amen-icon {
  width: 40px;
  height: 40px;
  background: #ffdf0020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sf-amen-label {
  font-size: 14px;
  font-weight: 500;
  color: #25273a;
}

/* ── Proximity ── */
.sf-prox-row { margin-top: 48px; }

.sf-prox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.sf-prox-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #25273a;
  line-height: 1;
}

.sf-prox-min {
  font-size: 14px;
  color: #ffdf00;
  background: #25273a;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
  margin-top: 6px;
}

.sf-prox-place {
  font-size: 13px;
  color: #6b6d79;
  margin-top: 8px;
  font-weight: 500;
}

/* ── Accommodation cards ── */
.sf-hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sf-hotel-card {
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  overflow: hidden;
}

.sf-hotel-pic {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.sf-hotel-pic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0d0e14aa 0%, transparent 60%);
}

.sf-hotel-brand {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.sf-hotel-body { padding: 24px; }

.sf-hotel-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}

.sf-hotel-stat-b {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #25273a;
  display: block;
}

.sf-hotel-stat-l {
  font-size: 12px;
  color: #6b6d79;
  margin-top: 4px;
}

.sf-room-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sf-room-item {
  font-size: 13px;
  color: #5f676f;
  padding: 8px 12px;
  background: #f7f3ec;
  border-radius: 3px;
}

.sf-room-item span {
  display: block;
  font-size: 11px;
  color: #9a9ca6;
  margin-top: 2px;
}

/* ── Dining ── */
.sf-dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sf-dining-card {
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  overflow: hidden;
}

.sf-dining-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.sf-dining-body { padding: 20px; }

.sf-dining-floor {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffdf00;
  background: #25273a;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.sf-dining-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sf-dining-desc {
  font-size: 13px;
  color: #6b6d79;
  line-height: 1.6;
  margin: 0;
}

/* ── MICE ── */
.sf-mice-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sf-mice-stat {
  text-align: center;
  padding: 28px 16px;
  background: #ffffff0a;
  border: 1px solid #ffffff20;
  border-radius: 4px;
}

.sf-mice-b {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffdf00;
}

.sf-mice-l {
  font-size: 13px;
  color: #ffffffb3;
  margin-top: 8px;
}

/* ── Location ── */
.sf-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sf-loc-map {
  height: 400px;
  background: #e8e4dc;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e6dcc9;
}

.sf-loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sf-loc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sf-loc-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e6dcc9;
  align-items: flex-start;
}

.sf-loc-num {
  width: 28px;
  height: 28px;
  background: #25273a;
  color: #ffdf00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.sf-loc-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.sf-loc-desc {
  font-size: 13px;
  color: #6b6d79;
  line-height: 1.5;
}

/* ── Growth section ── */
.sf-growth-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.sf-tl-card {
  background: #ffffff0a;
  border: 1px solid #ffffff20;
  border-left: 3px solid #ffdf00;
  border-radius: 4px;
  padding: 24px;
}

.sf-tl-year {
  color: #ffdf00;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sf-tl-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 8px;
}

.sf-tl-desc {
  font-size: 13px;
  color: #ffffffb3;
  line-height: 1.6;
  margin: 0;
}

/* ── Particulars ── */
.sf-dl { border-top: 2px solid #25273a; }

.sf-dl-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #ece3d2;
  align-items: baseline;
}

.sf-dl-dt {
  color: #6b6d79;
  font-size: 14px;
}

.sf-dl-dd {
  color: #25273a;
  font-size: 15px;
  line-height: 1.5;
}

.sf-particulars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sf-big-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sf-big-stat {
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}

.sf-big-stat-b {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #25273a;
}

.sf-big-stat-l {
  font-size: 12px;
  color: #6b6d79;
  margin-top: 8px;
}

/* ── Tender process ── */
.sf-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.sf-process-step {
  padding: 0 28px 0 0;
  position: relative;
}

.sf-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 0;
  width: calc(100% - 40px);
  height: 2px;
  background: #e6dcc9;
  left: 40px;
}

.sf-process-dot {
  width: 24px;
  height: 24px;
  background: #ffdf00;
  border: 3px solid #25273a;
  border-radius: 50%;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.sf-process-date {
  font-size: 13px;
  font-weight: 700;
  color: #25273a;
  margin-bottom: 6px;
}

.sf-process-phase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sf-process-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: #5f676f;
  margin-bottom: 6px;
}

.sf-process-idot {
  width: 5px;
  height: 5px;
  background: #25273a;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.sf-pr2-cta {
  background: #25273a;
  border-radius: 4px;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}

.sf-pr2-cta-bar {
  background: #ffdf00;
  width: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.sf-pr2-cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 40px 44px;
}

.sf-pr2-cta-title {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
}

.sf-pr2-cta-sub {
  color: #ffffffb3;
  max-width: 520px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.sf-pr2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  background: #ffdf00;
  border-radius: 2px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.sf-pr2-cta-btn:hover { background: #f0d200; }

/* ── Contact ── */
.sf-ct2-h2 {
  color: #25273a;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.06;
  margin: 0;
}

.sf-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 36px auto 0;
}

@media (max-width: 900px) {
  .sf-agent-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.sf-agent-card {
  background: #fff;
  border: 1px solid #25273a14;
  border-radius: 10px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px #25273a21;
}

.sf-agent-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid #ffdf00;
  overflow: hidden;
  background: #f1f1f3;
  margin-bottom: 14px;
}

.sf-agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-agent-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #25273a;
  background: #e8e4dc;
}

.sf-agent-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.sf-agent-role {
  color: #6b6d79;
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px;
  text-align: center;
}

.sf-agent-ea {
  color: #9a9ca6;
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 6px;
  text-align: center;
}

.sf-agent-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 18px;
}

.sf-agent-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #25273a;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.sf-agent-btn:hover { background: #35374a; }

.sf-agent-btn svg { flex-shrink: 0; }

/* ── Footer ── */
.sf-foot2 {
  background: #15161f;
  padding: 56px 32px;
}

.sf-foot2-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.sf-foot2-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.sf-foot2-mark {
  width: 34px;
  height: 34px;
  background: #ffdf00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #c90c0f;
}

.sf-foot2-name {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.sf-foot2-tag {
  color: #ffffff73;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.sf-foot2-disc {
  color: #fff6;
  max-width: 980px;
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sf-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .sf-stat-cell:nth-child(3) { border-right: none; }
  .sf-stat-cell:nth-child(4),
  .sf-stat-cell:nth-child(5) { border-top: 1px solid #efe7d7; }
  .sf-hotels-grid,
  .sf-particulars-grid,
  .sf-loc-grid { grid-template-columns: 1fr; }
  .sf-dining-grid { grid-template-columns: 1fr 1fr; }
  .sf-mice-stats { grid-template-columns: repeat(2, 1fr); }
  .sf-process { grid-template-columns: 1fr; gap: 32px; }
  .sf-process-step:not(:last-child)::after { display: none; }
  .sf-growth-timeline { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sf-nav-links, .sf-lang, .sf-nav-cta { display: none; }
  .sf-nav-hamburger { display: block; }
  .sf-stats-grid,
  .sf-stats-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .sf-stats-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .sf-stats-grid--6 .sf-stat-cell {
    border-right: none;
    border-bottom: 1px solid #efe7d7;
  }
  .sf-stats-grid--6 .sf-stat-cell:nth-child(odd) { border-right: 1px solid #efe7d7; }
  .sf-stats-grid--6 .sf-stat-cell:nth-child(n+4) { border-bottom: 1px solid #efe7d7; }
  .sf-stats-grid--6 .sf-stat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .sf-stat-cell { border-right: none; border-bottom: 1px solid #efe7d7; }
  .sf-stat-cell:nth-child(odd) { border-right: 1px solid #efe7d7; }
  .sf-amen-grid,
  .sf-prox-grid,
  .sf-prox-grid--2,
  .sf-dining-grid,
  .sf-agent-grid,
  .sf-hl-grid,
  .sf-prop-grid { grid-template-columns: 1fr; }
  .sf-mice-stats { grid-template-columns: 1fr 1fr; }
  .sf-pr2-cta-inner { padding: 28px 24px; }
  .sf-dl-row { grid-template-columns: 1fr; gap: 6px; }
  .sf-big-stats { grid-template-columns: 1fr; }
  .sf-prop-tabs { flex-direction: column; }
  .sf-prop-tab { text-align: center; }
  .sf-table-wrap { overflow-x: auto; }
  .sf-table { min-width: 600px; }
  .sf-loc-interactive { grid-template-columns: 1fr; }
  .imap-stage { max-height: 320px; }
}

/* ── H3 ── */
.sf-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #25273a;
  margin: 0 0 24px;
}

/* ── Table ── */
.sf-table-wrap { margin-top: 8px; }

.sf-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
}

.sf-table th {
  background: #25273a;
  color: #ffdf00;
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sf-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #efe7d7;
  color: #5f676f;
}

.sf-table tbody tr:last-child td { border-bottom: none; }

.sf-table-total td {
  background: #f7f3ec;
  font-weight: 600;
  color: #25273a;
}

/* ── Highlight cards ── */
.sf-hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-hl-card {
  background: #f7f3ec;
  border: 1px solid #e6dcc9;
  border-top: 3px solid #ffdf00;
  border-radius: 4px;
  padding: 28px 24px;
}

.sf-hl-num {
  color: #ffdf00;
  background: #25273a;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.sf-hl-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #25273a;
  margin: 0 0 16px;
}

.sf-hl-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #5f676f;
  font-size: 14px;
  line-height: 1.7;
}

.sf-hl-list li { margin-bottom: 8px; }

/* ── Property tabs ── */
.sf-prop-tabs {
  display: flex;
  gap: 0;
  margin: 32px 0 0;
  border-bottom: 2px solid #e6dcc9;
}

.sf-prop-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 16px 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #6b6d79;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.sf-prop-tab:hover {
  color: #25273a;
  background: #f7f3ec;
}

.sf-prop-tab.active {
  color: #25273a;
  border-bottom-color: #ffdf00;
  background: #fff;
}

.sf-prop-panel {
  display: none;
  padding-top: 32px;
  animation: fadeIn 0.3s ease;
}

.sf-prop-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sf-prop-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #1d1f2e;
}

.sf-prop-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.sf-prop-hero-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 12px #00000080;
}

.sf-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sf-prop-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.sf-floorplan-level {
  margin-top: 28px;
}

#floorplan .sf-floorplan-level:first-of-type {
  margin-top: 8px;
}

.sf-floorplan-level + .sf-floorplan-level {
  margin-top: 48px;
}

.sf-floorplan-level .sf-h2 {
  margin-bottom: 16px;
}

.sf-floorplan-figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 12px 40px #25273a10;
}

.sf-floorplan-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-prop-block {
  margin-bottom: 28px;
}

.sf-prop-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b68a3e;
  margin-bottom: 10px;
}

.sf-prop-block-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #25273a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.sf-prop-block-text {
  color: #5f676f;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.sf-disclaimer {
  margin-top: 40px;
  padding: 16px 20px;
  background: #f7f3ec;
  border-left: 3px solid #ffdf00;
  font-size: 12px;
  color: #6b6d79;
  line-height: 1.6;
}

#floorplan .sf-disclaimer {
  background: #fff;
}

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

/* ── Interactive location map ── */
.sf-loc-interactive {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.imap-map-col {
  min-width: 0;
}

.sf-loc-footnote {
  margin: 14px 0 0;
  color: #5f676f;
  font-size: 17px;
  line-height: 1.7;
  font-style: normal;
  letter-spacing: normal;
}

.imap-stage {
  position: relative;
  aspect-ratio: 2174 / 1567;
  max-height: 480px;
  background: #f7f3ec;
  border: 1px solid #e6dcc9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px #25273a18;
}

.imap-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f7f3ec;
}

.imap-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.imap-spotlight {
  position: absolute;
  width: 120px;
  height: 120px;
  margin: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #ffdf0040 0%, #ffdf0018 45%, transparent 70%);
  border: 2px solid #ffdf0066;
  pointer-events: none;
  transition: left 0.55s cubic-bezier(0.34, 1.2, 0.64, 1),
              top 0.55s cubic-bezier(0.34, 1.2, 0.64, 1),
              opacity 0.3s ease,
              transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 2;
}

.imap-spotlight.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.imap-spotlight.is-pulse {
  animation: imapSpotPulse 0.7s ease-out;
}

@keyframes imapSpotPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.imap-pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  width: 0;
  height: 0;
}

.imap-pin-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: #25273a;
  color: #ffdf00;
  border: 2px solid #ffdf00;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
              background 0.25s ease,
              box-shadow 0.25s ease;
  box-shadow: 0 4px 14px #25273a40;
}

.imap-pin-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%) translateY(4px);
  white-space: normal;
  max-width: 160px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: none;
  color: #25273a;
  background: #ffdf00ee;
  padding: 4px 8px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.imap-pin-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid #ffdf00;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.imap-pin:hover .imap-pin-dot,
.imap-pin.active .imap-pin-dot {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ffdf00;
  color: #25273a;
  box-shadow: 0 6px 20px #ffdf0066;
}

.imap-pin:hover .imap-pin-label,
.imap-pin.active .imap-pin-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.imap-pin.active .imap-pin-ring {
  animation: imapPinRipple 1.8s ease-out infinite;
}

.imap-pin.active .imap-pin-ring--delay {
  animation-delay: 0.6s;
}

.imap-pin.bump .imap-pin-dot {
  animation: imapPinBump 0.45s cubic-bezier(0.34, 1.5, 0.64, 1);
}

@keyframes imapPinRipple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

@keyframes imapPinBump {
  0% { transform: translate(-50%, -50%) scale(1); }
  40% { transform: translate(-50%, -50%) scale(1.35); }
  100% { transform: translate(-50%, -50%) scale(1.15); }
}

.imap-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.imap-prox {
  margin-bottom: 4px;
}

.imap-hint {
  font-size: 12px;
  color: #6b6d79;
  margin: 0;
  letter-spacing: 0.03em;
}

.imap-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.imap-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  font-family: inherit;
}

.imap-point:hover {
  border-color: #d9b977;
  box-shadow: 0 4px 16px #25273a12;
}

.imap-point.active {
  border-color: #ffdf00;
  border-left: 3px solid #ffdf00;
  box-shadow: 0 6px 20px #ffdf0025;
  transform: translateX(4px);
}

.imap-point-num {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: #25273a;
  color: #ffdf00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.imap-point.active .imap-point-num {
  background: #ffdf00;
  color: #25273a;
  transform: scale(1.1);
}

.imap-point-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #25273a;
  margin-bottom: 4px;
}

.imap-point-desc {
  display: block;
  font-size: 12px;
  color: #6b6d79;
  line-height: 1.5;
}

.imap-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #25273a;
  border-radius: 4px;
  border-left: 4px solid #ffdf00;
  animation: imapDetailIn 0.4s ease;
}

@keyframes imapDetailIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.imap-detail.is-updating {
  animation: imapDetailSwap 0.35s ease;
}

@keyframes imapDetailSwap {
  0% { opacity: 1; transform: translateX(0); }
  40% { opacity: 0.4; transform: translateX(6px); }
  100% { opacity: 1; transform: translateX(0); }
}

.imap-detail-badge {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #ffdf00;
  color: #25273a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.imap-detail-title {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.imap-detail-desc {
  color: #ffffffb3;
  font-size: 13px;
  line-height: 1.55;
}

.sf-loc-map--img {
  background: #f7f3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.sf-loc-map--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .sf-hl-grid { grid-template-columns: 1fr; }
  .infra-split,
  .infra-split--reverse { grid-template-columns: 1fr; }
  .infra-split--reverse .infra-split-img,
  .infra-split--reverse .infra-split-body { order: unset; }
  .infra-gallery { grid-template-columns: 1fr 1fr; }
}

/* ── Infrastructure & Facilities ── */
.infra-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e6dcc9;
}

#infrastructure .sf-container > .sf-eyebrow-row + .infra-block {
  border-top: none;
  padding-top: 0;
  margin-top: 28px;
}

.infra-block--alt {
  background: #f7f3ec;
  margin-left: -24px;
  margin-right: -24px;
  padding: 40px 24px;
  border-top: 1px solid #e6dcc9;
  border-radius: 4px;
}

.infra-block-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.infra-slide-num {
  color: #ffdf00;
  background: #25273a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.infra-block-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #25273a;
  margin: 0 0 6px;
}

.infra-block-sub {
  color: #8b6914;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.infra-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.infra-split--cbl {
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: start;
}

.infra-split--reverse .infra-split-img { order: 2; }
.infra-split--reverse .infra-split-body { order: 1; }

.infra-split-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #e6dcc9;
  display: block;
}

.infra-split-img--map { position: relative; }

.infra-map-note {
  font-size: 11px;
  color: #6b6d79;
  margin: 8px 0 0;
  font-style: italic;
}

.infra-img-secondary {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #e6dcc9;
  margin-top: 20px;
  display: block;
}

.infra-img-secondary--sm {
  width: 100%;
  max-width: none;
  margin-top: 16px;
}

.infra-text {
  color: #5f676f;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.infra-text--under-img {
  max-width: none;
  width: 100%;
  margin: 16px 0 0;
  text-align: left;
}

.infra-split--cbl .infra-split-body {
  display: flex;
  flex-direction: column;
}

.infra-text--center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.infra-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.infra-stat {
  background: #f7f3ec;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
}

.infra-block--alt .infra-stat { background: #fff; }

.infra-stat-b {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #25273a;
  line-height: 1;
}

.infra-stat-l {
  display: block;
  font-size: 11px;
  color: #6b6d79;
  margin-top: 8px;
  line-height: 1.4;
}

/* Town Park: enlarged main left + 3 stacked right (heights matched) */
.infra-townpark-collage {
  display: grid;
  grid-template-columns: 1.75fr 0.85fr;
  gap: 14px;
  margin: 0 0 24px;
}

.infra-townpark-side,
.infra-townpark-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #e6dcc9;
  background: #ebe4d6;
  min-height: 0;
}

.infra-townpark-main {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.infra-townpark-side {
  grid-column: 2;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.infra-townpark-side:nth-child(2) { grid-row: 1; }
.infra-townpark-side:nth-child(3) { grid-row: 2; }
.infra-townpark-side:nth-child(4) { grid-row: 3; }

.infra-townpark-side img,
.infra-townpark-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.infra-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch;
}

.infra-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  border: 1px solid #e6dcc9;
  display: block;
  background: #ebe4d6;
}

@media (max-width: 768px) {
  .infra-townpark-collage {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .infra-townpark-side,
  .infra-townpark-main {
    grid-column: auto;
    grid-row: auto;
  }

  .infra-townpark-main {
    aspect-ratio: 16 / 10;
  }

  .infra-townpark-side {
    aspect-ratio: 16 / 10;
  }
}

.infra-amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.infra-amen-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 14px 16px;
}

.infra-block:not(.infra-block--alt) .infra-amen-card { background: #f7f3ec; }

.infra-amen-icon { font-size: 20px; flex-shrink: 0; }

.infra-amen-name {
  font-size: 13px;
  font-weight: 600;
  color: #25273a;
  line-height: 1.35;
}

.infra-land-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  overflow: hidden;
}

.infra-land-table th {
  background: #25273a;
  color: #ffdf00;
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.infra-land-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #efe7d7;
  color: #5f676f;
}

.infra-tko137-render {
  margin: 20px 0 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e6dcc9;
  background: #ebe4d6;
}

.infra-tko137-render img {
  width: 100%;
  height: auto;
  display: block;
}

.infra-tko137-render + .infra-map-note {
  margin-top: 8px;
}

.infra-land-total td {
  background: #f7f3ec;
  font-weight: 600;
  color: #25273a;
}

.infra-portfolio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.infra-portfolio-stat {
  background: #fff;
  border: 1px solid #e6dcc9;
  border-top: 3px solid #ffdf00;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}

.infra-portfolio-b {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #25273a;
}

.infra-portfolio-l {
  display: block;
  font-size: 12px;
  color: #6b6d79;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.infra-footnote {
  font-size: 11px;
  color: #9a9ca6;
  margin: 16px 0 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .infra-stat-row,
  .infra-amen-grid,
  .infra-portfolio-stats { grid-template-columns: 1fr 1fr; }
  .infra-gallery { grid-template-columns: 1fr; }
  .infra-block--alt { margin-left: -16px; margin-right: -16px; padding: 32px 16px; }
}

@media (max-width: 480px) {
  .infra-stat-row,
  .infra-amen-grid,
  .infra-portfolio-stats { grid-template-columns: 1fr; }
}

/* ── Savannah Place Directory ── */
.sf-directory {
  margin-top: 8px;
}

.sf-directory-mall {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #005482;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.sf-directory-browse {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25273a;
  margin: 0 0 14px;
}

.sf-directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.sf-dir-tab {
  background: #fff;
  border: 1px solid #d4c9b5;
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f676f;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sf-dir-tab:hover {
  border-color: #005482;
  color: #005482;
}

.sf-dir-tab.active {
  background: #005482;
  border-color: #005482;
  color: #fff;
}

.sf-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sf-dir-card {
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sf-dir-card:hover {
  box-shadow: 0 8px 28px #25273a14;
  transform: translateY(-2px);
}

.sf-dir-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b6914;
  margin-bottom: 8px;
}

.sf-dir-name {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #25273a;
  line-height: 1.4;
  margin: 0 0 14px;
  min-height: 40px;
}

.sf-dir-logo {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  padding: 8px 0;
}

.sf-dir-logo--empty {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  background: #f7f3ec;
  border-radius: 2px;
  color: #8a8578;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 4px;
}

.sf-dir-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #efe7d7;
  font-size: 12px;
  color: #6b6d79;
}

.sf-dir-phone,
.sf-dir-loc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sf-directory-error {
  color: #6b6d79;
  font-size: 14px;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .sf-directory-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 520px) {
  .sf-directory-grid { grid-template-columns: 1fr; }
  .sf-dir-tab { flex: 1 1 calc(50% - 8px); text-align: center; }
}

/* ── Transportation link pictures (side by side) ── */
.sf-loc-hero {
  margin: 0 0 36px;
  border-radius: 4px;
  overflow: hidden;
  background: #ebe4d6;
}

.sf-loc-hero img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.sf-loc-pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0 0;
  align-items: stretch;
}

.sf-loc-pic {
  margin: 0;
  min-width: 0;
}

.sf-loc-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  background: #fff;
}

.sf-lc-map--static {
  height: 100%;
}

.sf-lc-map {
  position: relative;
  background: #e8eef3;
  border: 1px solid #e6dcc9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px #25273a14;
}

.sf-hk-svg {
  width: 100%;
  height: auto;
  display: block;
}

.sf-lc-map-bar {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25273ae6;
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.sf-lc-map-badge {
  width: 28px;
  height: 28px;
  background: #ffdf00;
  color: #25273a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.sf-lc-map-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sf-lcpin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2;
}

.sf-lcpin i {
  display: block;
  width: 14px;
  height: 14px;
  margin: 2px auto;
  background: #25273a;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #25273a40;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sf-lcpin--origin i {
  width: 16px;
  height: 16px;
  background: #ffdf00;
  border-color: #25273a;
  box-shadow: 0 0 0 4px #ffdf0040;
}

.sf-lcpin:hover i,
.sf-lcpin.active i {
  transform: scale(1.25);
  background: #ffdf00;
  border-color: #25273a;
  box-shadow: 0 0 0 6px #ffdf0030;
}

.sf-lc-dest {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.sf-lc-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sf-lc-card:hover {
  border-color: #c4b9a4;
  box-shadow: 0 4px 16px #25273a10;
}

.sf-lc-card.active {
  border-color: #25273a;
  background: #f7f3ec;
  box-shadow: 0 6px 20px #25273a14;
}

.sf-lc-thumb {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sf-lc-thumb--1 { background: linear-gradient(135deg, #5a7a8f, #3d5f73); }
.sf-lc-thumb--2 { background: linear-gradient(135deg, #6b8f7a, #4d7360); }
.sf-lc-thumb--3 { background: linear-gradient(135deg, #8f7a5a, #73604d); }
.sf-lc-thumb--4 { background: linear-gradient(135deg, #7a6b8f, #605073); }

.sf-lc-cardnum {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
}

.sf-lc-cardtext {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sf-lc-cardname {
  font-size: 14px;
  font-weight: 600;
  color: #25273a;
  line-height: 1.35;
}

.sf-lc-cardtime {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #25273a;
  line-height: 1;
}

.sf-lc-cardtime span {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8b6914;
  margin-left: 4px;
}

.sf-lc-carddesc {
  font-size: 12px;
  color: #6b6d79;
  line-height: 1.5;
}

.sf-hk-prox {
  margin-top: 32px;
}

.sf-lc-times {
  border-top: 1px solid #e6dcc9;
  margin-top: 32px;
  padding-top: 22px;
}

.sf-lc-times-lbl {
  color: #9aa0a8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.sf-lc-times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 22px;
  row-gap: 16px;
}

.sf-lc-time {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sf-lc-time svg {
  flex-shrink: 0;
}

.sf-lc-time-num {
  color: #25273a;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.sf-lc-time-min {
  color: #79828c;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 500;
}

.sf-lc-time-place {
  color: #79828c;
  margin-top: 3px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.sf-lc-note {
  color: #aab0b8;
  margin: 18px 0 0;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
}

.sf-hk-footnote {
  font-size: 11px;
  color: #9a9ca6;
  margin: 16px 0 0;
  font-style: italic;
}

.sf-prox-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .sf-loc-pics { grid-template-columns: 1fr; }
  .sf-prox-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .sf-lc-times-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .sf-prox-grid--4 { grid-template-columns: 1fr; }
  .sf-lc-times-grid { grid-template-columns: 1fr; }
}
