@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark:   #024c4c;
  --teal:   #387e7f;
  --white:  #ffffff;
  --text:   #333333;
  --light:  #f5f5f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.53);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 68px;
  backdrop-filter: blur(4px);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 38px; }

.nav-reserve {
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  padding: 12px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  height: 68px;
  line-height: 44px;
}

.nav-reserve:hover { background: #2e6b6c; }

/* ── HOUSE HERO ── */
.house-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 0;
}

.house-hero-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 60px 60px;
  color: var(--white);
  position: relative;
}

.house-hero-left .house-name {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.house-hero-left .house-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
  opacity: 0.9;
}

.house-hero-left .house-size {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.8;
}

.house-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 10px;
}

.house-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.house-stat img {
  width: 48px;
  height: 48px;
  filter: invert(1);
  opacity: 0.9;
}

.house-stat span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}

/* Carousel */
.house-hero-right {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active { opacity: 1; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2,76,76,0.6);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ── DESCRIPTION BAND ── */
.desc-band {
  background: var(--dark);
  padding: 10px 0;
}

.desc-box {
  background: var(--teal);
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 80px;
  text-align: center;
  color: var(--white);
}

.desc-box p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 14px;
  font-weight: 300;
}

.desc-box .plots {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── FLOOR PLANS ── */
.floor-plans-section {
  padding: 80px 40px;
  background: var(--white);
}

.floor-plans-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.floor-plan-item {
  text-align: center;
}

.floor-plan-item img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

.floor-plan-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  margin-top: 20px;
}

/* ── ROOM TABLE ── */
.room-tables-section {
  padding: 20px 40px 80px;
  background: var(--white);
}

.room-tables-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.room-table-group {
  margin-bottom: 30px;
}

.room-table-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.room-table {
  width: 100%;
  border-collapse: collapse;
}

.room-table td {
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid #e8e8e8;
}

.room-table tr:nth-child(odd) td { background: #f8f8f8; }
.room-table tr:nth-child(even) td { background: var(--white); }
.room-table tr.total td { font-weight: 700; background: #f0f0f0; }
.room-table td:last-child { text-align: right; }

/* ── LOOK INSIDE CTA ── */
.look-inside-section {
  background: var(--dark);
  padding: 30px 40px;
}

.look-inside-box {
  background: var(--teal);
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

.look-inside-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.look-inside-box p {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}

.btn-seemore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-seemore::before { content: ''; display: block; width: 30px; height: 1px; background: rgba(255,255,255,0.6); }

.btn-seemore:hover { background: #013636; }

/* ── INTERESTED BAND ── */
.interested-section {
  background: var(--white);
  padding: 80px 40px;
}

.interested-box {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--teal);
  overflow: hidden;
}

.interested-text {
  padding: 40px 40px;
  color: var(--white);
}

.interested-text h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.interested-text p {
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.9;
}

.interested-btn {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.interested-btn a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  text-align: center;
  padding: 25px 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  border-top: 1px solid #e8e8e8;
}

footer a { color: var(--text); text-decoration: none; }
footer a:hover { color: var(--teal); }

/* ── HOMEPAGE HERO ── */
.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.home-slider-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.home-slider-slide.active { opacity: 1; }

/* ── WELCOME SECTION ── */
.welcome-section {
  background: var(--dark);
  padding: 100px 60px;
  color: var(--white);
  text-align: left;
}

.welcome-section .welcome-inner {
  max-width: 700px;
}

.welcome-section .eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
}

.welcome-section h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 30px;
}

.welcome-section p {
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.85;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 600px;
}

/* ── RESERVE BAND ── */
.reserve-band {
  background: var(--teal);
  background-image: url('https://www.redburnmeadows.com/wp-content/uploads/2021/11/pattern-white.png');
  background-repeat: repeat;
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}

.reserve-band h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.reserve-band p {
  font-size: 13px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-reserve::before { content: ''; display: block; width: 30px; height: 1px; background: rgba(255,255,255,0.6); }

.btn-reserve:hover { background: #013636; }

/* ── STREET IMAGES ── */
.street-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.street-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ── AMENITIES SECTION ── */
.amenities-section {
  padding: 80px 60px;
  background: var(--white);
}

.amenities-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.amenities-text p {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 14px;
}

.amenities-imgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.amenities-imgs img { width: 100%; display: block; }

/* ── LOCATION SECTION ── */
.location-section {
  background: var(--teal);
  padding: 80px 60px;
  color: var(--white);
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.location-text p {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 14px;
  opacity: 0.9;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 10px;
}

.btn-directions::before { content: ''; display: block; width: 30px; height: 1px; background: rgba(255,255,255,0.6); }
.btn-directions:hover { background: #013636; }

.location-img img { width: 100%; display: block; }

/* ── LOOK INSIDE PAGE ── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 160px 40px 100px;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}

.cgi-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.cgi-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ── PRE-REGISTER PAGE ── */
.form-section {
  padding: 80px 40px;
  background: var(--white);
}

.form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.btn-submit:hover { background: var(--dark); }

.form-note {
  font-size: 11px;
  color: #888;
  margin-top: 16px;
  line-height: 1.7;
}

.form-note a { color: var(--teal); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .house-hero { grid-template-columns: 1fr; }
  .house-hero-right { min-height: 280px; }
  .house-hero-left { padding: 88px 30px 40px; }
  .house-hero-left .house-name { font-size: 48px; }
  .floor-plans-inner { grid-template-columns: 1fr; }
  .interested-box { grid-template-columns: 1fr; }
  .interested-btn { padding: 24px 40px; }
  .amenities-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .street-gallery { grid-template-columns: 1fr; }
  .cgi-gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .welcome-section { padding: 80px 30px; }
  .desc-box { padding: 40px 30px; }
}
