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

:root {
  --navy: #0A1628;
  --navy-light: #132038;
  --gold: #C8A45E;
  --gold-light: #D4B76A;
  --gold-pale: #F5ECC8;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --cream: #FDF9F0;
  --gray-100: #F3F1EC;
  --gray-200: #E8E4DC;
  --gray-300: #D1CDC4;
  --gray-400: #A8A29A;
  --gray-500: #78716C;
  --gray-600: #57534E;
  --gray-700: #3D3935;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-700);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title--center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 164, 94, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-full { width: 100%; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 164, 94, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid rgba(200, 164, 94, 0.5) !important;
  padding: 0.5rem 1.25rem;
  color: var(--gold) !important;
  transition: all var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg { width: 24px; height: 24px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about {
  padding: 8rem 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.about-signature {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── Experience ── */
.experience {
  padding: 8rem 0;
  background: var(--navy);
}

.experience .section-eyebrow { color: var(--gold); }

.experience .section-title { color: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200, 164, 94, 0.15);
  border-radius: 2px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(200, 164, 94, 0.4);
  background: rgba(200, 164, 94, 0.04);
  transform: translateY(-4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── Community / Testimonials ── */
.community {
  padding: 8rem 0;
  background: var(--cream);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 2px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.06);
}

.testimonial-quote {
  width: 32px;
  height: 24px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 400;
}

/* ── Visit ── */
.visit {
  padding: 8rem 0;
  background: var(--off-white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.visit-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.visit-row strong {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.visit-row span,
.visit-row a {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.visit-row a:hover { color: var(--gold); }

.visit-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.visit-hours-label {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.visit-hours {
  list-style: none;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

.visit-hours li span:first-child {
  color: var(--gray-600);
  font-weight: 400;
}

.visit-hours li span:last-child {
  color: var(--navy);
  font-weight: 400;
}

.visit-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── Contact ── */
.contact {
  padding: 8rem 0;
  background: var(--navy);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title { color: var(--white); }

.contact-form {
  margin-top: 3rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200, 164, 94, 0.06);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A45E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(200, 164, 94, 0.1);
  border: 1px solid rgba(200, 164, 94, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.form-success svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-success p {
  color: var(--white);
  font-size: 0.9375rem;
}

/* ── Footer ── */
.footer {
  background: var(--navy-light);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-menu.open { right: 0; }

  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(1.875rem, 7vw, 2.75rem); }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image img { height: 350px; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .nav-inner { height: 68px; }

  .about, .experience, .community, .visit, .contact {
    padding: 5rem 0;
  }
}
