/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1e3a5f;
  --navy-dark:  #152d4a;
  --navy-deeper:#0f2035;
  --gold:       #c8973e;
  --gold-hover: #b3832c;
  --warm-white: #faf8f5;
  --cream:      #f2ede7;
  --text:       #2d2d2d;
  --text-mid:   #555;
  --text-light: #888;
  --border:     #e0dbd4;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  transition: color 0.35s;
}
#nav.scrolled .nav-name { color: var(--navy); }
.nav-address {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.35s;
}
#nav.scrolled .nav-address { color: var(--text-mid); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,32,53,0.18) 0%,
    rgba(15,32,53,0.08) 40%,
    rgba(15,32,53,0.65) 75%,
    rgba(15,32,53,0.88) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 2.5rem 5rem;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.7); }
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.42rem 0.85rem;
  border-radius: 50px;
}
.hero-pill svg { flex-shrink: 0; }

/* Scroll chevron */
.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounce 2.2s ease-in-out infinite;
  transition: border-color 0.2s, background 0.2s;
}
.scroll-chevron:hover {
  border-color: var(--gold);
  background: rgba(200,151,62,0.2);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.scroll-chevron svg { color: rgba(255,255,255,0.8); }

/* ─── Facts Strip ────────────────────────────────────────────────────────── */
#facts {
  background: var(--navy);
  padding: 2.2rem 2.5rem;
}
.facts-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.fact-item:last-child { border-right: none; }
.fact-icon {
  width: 36px; height: 36px;
  margin-bottom: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}
.fact-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}
.fact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ─── About ──────────────────────────────────────────────────────────────── */
#about {
  padding: 6rem 2.5rem;
  background: var(--warm-white);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.8rem;
}
.about-copy p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.about-copy p:last-child { margin-bottom: 0; }
.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(30,58,95,0.07);
}
.detail-card-header {
  background: var(--navy);
  padding: 1.1rem 1.5rem;
}
.detail-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.detail-table {
  width: 100%;
  border-collapse: collapse;
}
.detail-table tr {
  border-bottom: 1px solid var(--border);
}
.detail-table tr:last-child { border-bottom: none; }
.detail-table td {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
.detail-table td:first-child {
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
  width: 44%;
}
.detail-table td:last-child {
  color: var(--text);
  font-weight: 500;
}
.badge-now {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #d4f0dc;
  color: #1a7a3a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.badge-now::before {
  content: '';
  width: 6px; height: 6px;
  background: #1a7a3a;
  border-radius: 50%;
}
.detail-cta-row {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* ─── Carousel ───────────────────────────────────────────────────────────── */
#carousel {
  background: var(--navy-dark);
  padding: 5rem 0 4rem;
}
.carousel-header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.carousel-header-left .section-label { color: rgba(200,151,62,0.85); }
.carousel-header-left .section-title { color: #fff; margin-bottom: 0; }
.carousel-arrows {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.carousel-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.carousel-stage-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.carousel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #0f2035;
  outline: none;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,32,53,0.9) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.2rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.carousel-stage:hover .carousel-caption,
.carousel-stage:focus-within .carousel-caption {
  opacity: 1;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.carousel-thumbs {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 2.5rem;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,151,62,0.4) transparent;
}
.carousel-thumbs::-webkit-scrollbar { height: 4px; }
.carousel-thumbs::-webkit-scrollbar-track { background: transparent; }
.carousel-thumbs::-webkit-scrollbar-thumb { background: rgba(200,151,62,0.4); border-radius: 2px; }
.carousel-thumb {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 4/3;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.carousel-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Features ───────────────────────────────────────────────────────────── */
#features {
  background: var(--cream);
  padding: 6rem 2.5rem;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.features-header .section-title { margin-bottom: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover {
  box-shadow: 0 6px 28px rgba(30,58,95,0.1);
  transform: translateY(-3px);
}
.feature-icon-wrap {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap svg { color: var(--gold); }
.feature-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.feature-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ─── Location ───────────────────────────────────────────────────────────── */
#location {
  padding: 6rem 2.5rem;
  background: var(--warm-white);
}
.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.nearby-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.nearby-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
}
.nearby-icon {
  width: 32px; height: 32px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.nearby-name { font-weight: 500; }
.nearby-dist {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-left: 0.3rem;
}
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 28px rgba(30,58,95,0.07);
  aspect-ratio: 4/3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
#cta-section {
  background: var(--navy);
  padding: 6rem 2.5rem;
  text-align: center;
}
#cta-section .section-label {
  color: rgba(200,151,62,0.85);
  margin-bottom: 0.8rem;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(200,151,62,0.35);
}
.btn-cta-large:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,151,62,0.45);
}
.cta-footnote {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}
.cta-footnote a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-footnote a:hover { color: rgba(255,255,255,0.8); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
#footer {
  background: var(--navy-deeper);
  padding: 2.2rem 2.5rem;
  text-align: center;
}
.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.footer-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.6); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1050px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .facts-inner { grid-template-columns: repeat(3, 1fr); }
  .fact-item:nth-child(3) { border-right: none; }
  .fact-item:nth-child(4), .fact-item:nth-child(5) { border-right: 1px solid rgba(255,255,255,0.1); }
  .fact-item:nth-child(5) { border-right: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .location-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  #nav { padding: 0 1.25rem; }
  .hero-content { padding: 0 1.25rem 5.5rem; }
  .scroll-chevron { right: 1.25rem; }
  #facts { padding: 2rem 1.25rem; }
  .facts-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .fact-item:nth-child(2) { border-right: none; }
  .fact-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .fact-item:nth-child(4) { border-right: none; }
  .fact-item:nth-child(5) { grid-column: 1 / -1; border-right: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; margin-top: 0.5rem; }
  #about, #features, #location, #cta-section { padding: 4rem 1.25rem; }
  .carousel-stage-wrap, .carousel-thumbs { padding: 0 1.25rem; }
  .carousel-header { padding: 0 1.25rem; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  #carousel { padding: 4rem 0 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .feature-card { padding: 1.2rem 1rem; }
}
@media (max-width: 480px) {
  .hero-pills { gap: 0.4rem; }
  .hero-pill { font-size: 0.75rem; padding: 0.38rem 0.7rem; }
  .features-grid { grid-template-columns: 1fr; }
  .carousel-thumbs { gap: 0.4rem; }
  .carousel-thumb { width: 80px; }
  .facts-inner { grid-template-columns: 1fr; }
  .fact-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 1rem; }
  .fact-item:first-child { border-top: none; }
}
