/* ============================================
   6 BEVERLEY STREET — LIGHT LUXURY DESIGN
   Palette: Ivory · Warm Gold · Charcoal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #b8924a;
  --gold-light: #d4b06a;
  --gold-dark: #8a6830;
  --ivory: #faf8f4;
  --ivory-dark: #f0ece4;
  --warm-white: #ffffff;
  --charcoal: #1a1814;
  --text: #2a2420;
  --text-mid: #5a5248;
  --text-soft: #9a9088;
  --border: rgba(184, 146, 74, 0.25);
  --border-soft: rgba(26, 24, 20, 0.1);
  --card-bg: #ffffff;
  --shadow-sm: 0 2px 12px rgba(26, 24, 20, 0.07);
  --shadow-md: 0 8px 32px rgba(26, 24, 20, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 24, 20, 0.12);
  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 80px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h4 {
  font-size: 1.4rem;
}

p {
  color: var(--text-mid);
  line-height: 1.8;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.gold {
  color: var(--gold);
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.4rem 0;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: 0.08em;
}

.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.65rem 1.6rem;
  background: var(--gold);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition);
}

.btn-nav:hover {
  background: var(--gold-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: 0.3s;
}

/* ===== PAGE OFFSET FOR FIXED NAV ===== */
.page-top {
  padding-top: var(--nav-h);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.55);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-img.ready {
  transform: scale(1);
}

.hero-fg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 20, 0.75) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 8vh;
  max-width: 1000px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: 0.9;
  color: white;
  margin-bottom: 0.3em;
  animation: riseUp 1.2s 0.2s both;
}

.hero-gold {
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  animation: riseUp 1.2s 0.5s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: riseUp 1.2s 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.hero-facts {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  z-index: 2;
  display: flex;
  gap: 2rem;
  animation: riseUp 1.2s 1s both;
}

.hero-fact {
  text-align: center;
  color: white;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-fact-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.hero-fact-l {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 8vw;
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-hd {
  margin-bottom: 3.5rem;
}

.section-hd .label {
  display: block;
  margin-bottom: 0.8rem;
}

/* ===== CARDS ROW ===== */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px;
  background: var(--border-soft);
}

.stat-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: var(--ivory-dark);
}

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.4rem;
}

/* ===== OVERVIEW GRID (INDEX) ===== */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.overview-text .lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-top: 1.5rem;
}

.overview-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===== SECTION CARDS (INDEX MENU) ===== */
.section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.section-card {
  background: var(--card-bg);
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.section-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.section-card:hover {
  background: var(--ivory);
}

.section-card:hover::after {
  width: 100%;
}

.sc-icon {
  font-size: 2rem;
}

.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.sc-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.sc-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: auto;
  transition: transform 0.3s;
}

.section-card:hover .sc-arrow {
  transform: translateX(6px);
}

/* ===== SUB-PAGE HERO ===== */
.sub-hero {
  padding: 4rem 8vw 3rem;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-soft);
  margin-top: var(--nav-h);
}

.sub-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.sub-hero .label {
  display: block;
  margin-bottom: 0.8rem;
}

.sub-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.sub-hero p {
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 680px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb-sep {
  opacity: 0.4;
}

/* ===== GALLERY GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.photo-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  border-radius: var(--radius);
}

.photo-item.tall {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.photo-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.55));
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-item:hover .photo-item-caption {
  opacity: 1;
}

.photo-item-lens {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-item:hover .photo-item-lens {
  opacity: 1;
}

/* ===== GALLERY TABS ===== */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1.5px solid var(--border-soft);
}

.g-tab {
  padding: 0.75rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: 0.3s;
}

.g-tab.active,
.g-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(250, 248, 244, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lb-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-mid);
  transition: 0.2s;
}

.lb-close:hover {
  background: var(--gold);
  color: white;
}

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-mid);
  transition: 0.2s;
}

.lb-arrow:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

#lb-prev {
  left: 1.5rem;
}

#lb-next {
  right: 1.5rem;
}

#lb-cap {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: white;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ===== FLOOR PLAN ===== */
.fp-viewer {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fp-img-wrap {
  overflow: auto;
  max-height: 72vh;
  cursor: zoom-in;
}

.fp-img-wrap img {
  width: 100%;
  display: block;
  transition: filter 0.3s;
}

.fp-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--ivory);
  border-top: 1px solid var(--border-soft);
}

.fp-btn {
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--border-soft);
  background: white;
  color: var(--text-mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: 0.2s;
}

.fp-btn:hover,
.fp-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 146, 74, 0.06);
}

.fp-note {
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-left: auto;
  font-style: italic;
}

.unit-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.unit-btn {
  flex: 1;
  padding: 1.5rem 2rem;
  border: 1.5px solid var(--border-soft);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.2s;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.unit-btn:hover,
.unit-btn.active {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.04);
}

.unit-btn-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.unit-btn-t {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0.3rem 0;
}

.unit-btn-s {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ===== AMENITY LIST ===== */
.amenity-section {
  margin-bottom: 2rem;
}

.amenity-cat {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.amenity-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 24, 20, 0.06);
  transition: 0.2s;
}

.amenity-row:hover {
  padding-left: 0.5rem;
  color: var(--gold);
}

.amenity-ic {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.amenity-nm {
  font-size: 0.92rem;
}

.amenity-d {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-left: auto;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
}

.map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  padding: 0.8rem 1.2rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.map-badge strong {
  display: block;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--charcoal);
}

/* ===== FINISHES ===== */
.finishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.finish-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.finish-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.finish-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.finish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.finish-card:hover .finish-img img {
  transform: scale(1.05);
}

.finish-body {
  padding: 1.5rem;
}

.finish-el {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.finish-mat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.finish-col {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.finish-sw {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(26, 24, 20, 0.12);
  vertical-align: middle;
  margin-left: 0.5rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.tl-line {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-soft);
}

.tl-item {
  position: relative;
  padding-bottom: 3rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border-soft);
  background: white;
  transition: 0.3s;
}

.tl-item.done .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.15);
}

.tl-item.now .tl-dot {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.2);
  animation: tl-pulse 2s infinite;
}

@keyframes tl-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.2)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(184, 146, 74, 0)
  }
}

.tl-date {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.tl-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.tl-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}

.badge-done {
  background: rgba(184, 146, 74, 0.12);
  color: var(--gold);
  border: 1px solid rgba(184, 146, 74, 0.3);
}

.badge-now {
  background: rgba(184, 146, 74, 0.08);
  color: var(--gold-dark);
  border: 1px solid var(--gold-light);
}

.badge-soon {
  background: var(--ivory-dark);
  color: var(--text-soft);
  border: 1px solid var(--border-soft);
}

/* ===== VIRTUAL TOUR ===== */
.tour-wrap {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f0ece4;
}

#three-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-overlay-top {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.room-label {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: white;
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-left: 3px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.room-buttons {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.room-btn {
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 24, 20, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.room-btn:hover,
.room-btn.active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: white;
  margin-bottom: 0.75rem;
  transition: 0.2s;
}

.contact-detail:hover {
  border-color: var(--gold);
}

.cd-ic {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cd-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  margin-bottom: 0.2rem;
}

.cd-val {
  font-size: 0.9rem;
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem;
  background: #f0faf2;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  color: #25d366;
  font-size: 0.82rem;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: 0.2s;
}

.wa-btn:hover {
  background: #d8f5e0;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border-soft);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: white;
  border: none;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--gold-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 8vw;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.15em;
}

.footer-brand span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 3px;
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
}

.footer-nav a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.65rem;
}

.footer-disc {
  background: #111;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.65rem;
  line-height: 1.8;
  padding: 1.2rem 8vw;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(300px, 78vw);
    background: white;
    border-left: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .btn-nav {
    display: none;
  }

  .overview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-cards {
    grid-template-columns: 1fr 1fr;
  }

  .finishes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .hero-facts {
    display: none;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 5vw;
  }

  #navbar {
    padding: 0 5vw;
  }

  .section-cards {
    grid-template-columns: 1fr;
  }

  .finishes-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-item.tall {
    aspect-ratio: 4/3;
    grid-row: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cards-row {
    grid-template-columns: 1fr 1fr;
  }

  .unit-btns {
    flex-direction: column;
  }
}

/* ===== HORIZONTAL TIMELINE (redesigned) ===== */
.tl-wrap {
  padding: 2rem 0 1rem;
}

.tl-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

/* Each item column */
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.2rem;
  position: relative;
}

/* Connecting line via ::after on non-last items */
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  /* half of 52px dot */
  left: 50%;
  /* starts at center of this item */
  width: 100%;
  /* extends to center of next item */
  height: 2px;
  background: rgba(184, 146, 74, 0.25);
  z-index: 0;
}

/* Done items: line is gold */
.tl-item.done::after {
  background: linear-gradient(to right, var(--gold), rgba(184, 146, 74, 0.35));
}

/* Current item: gold to faded */
.tl-item.now::after {
  background: linear-gradient(to right, rgba(184, 146, 74, 0.35), rgba(184, 146, 74, 0.1));
}

/* ── Dot circle ── */
.tl-dot-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(26, 24, 20, 0.15);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 1.8rem;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}

/* Number / icon inside dot */
.tl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1;
  user-select: none;
}

/* Done: filled gold circle */
.tl-item.done .tl-dot-wrap {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 146, 74, 0.15), 0 4px 16px rgba(184, 146, 74, 0.25);
}

.tl-item.done .tl-num {
  color: white;
  font-size: 1.2rem;
}

/* Current: gold ring, gold number, pulse */
.tl-item.now .tl-dot-wrap {
  background: white;
  border-color: var(--gold);
  border-width: 2.5px;
  box-shadow: 0 0 0 5px rgba(184, 146, 74, 0.15);
  animation: tl-pulse 2.5s ease-in-out infinite;
}

.tl-item.now .tl-num {
  color: var(--gold);
  font-weight: 700;
}

@keyframes tl-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.15);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(184, 146, 74, 0.06);
  }
}

/* ── Content below dot ── */
.tl-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.tl-date {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 500;
}

.tl-item.done .tl-title,
.tl-item.now .tl-title {
  color: var(--charcoal);
}

.tl-desc {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 175px;
  margin: 0;
}

.tl-badge {
  display: inline-block;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.badge-done {
  background: rgba(46, 204, 113, 0.12);
  color: #1a8c4e;
}

.badge-now {
  background: rgba(184, 146, 74, 0.15);
  color: var(--gold-dark);
}

.badge-soon {
  background: rgba(26, 24, 20, 0.06);
  color: var(--text-soft);
}

/* ── Mobile: vertical stack ── */
@media (max-width: 700px) {
  .tl-wrap {
    padding-left: 1rem;
  }

  .tl-items {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-left: 1.4rem;
    border-left: 2px solid rgba(184, 146, 74, 0.25);
  }

  .tl-item:not(:last-child)::after {
    display: none;
    /* hide horizontal connectors */
  }

  .tl-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0;
  }

  .tl-dot-wrap {
    margin-bottom: 0;
    margin-left: -27px;
    /* overlap the vertical border line */
    flex-shrink: 0;
  }

  .tl-content {
    align-items: flex-start;
  }

  .tl-desc {
    max-width: 100%;
  }
}