:root {
  --cream: #faf7f2;
  --cream-alt: #f2ede2;
  --charcoal: #2b2924;
  --charcoal-soft: #4a463d;
  --black: #000000;
  --gold: #a9822f;
  --gold-dark: #8a691f;
  --line: #e2dccb;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0 0 0.5em; color: var(--charcoal); }
p { margin: 0 0 1em; color: var(--charcoal-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section.alt { background: var(--cream-alt); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
h2.center, p.center { text-align: center; }
h2 { font-size: 34px; }
.lead { max-width: 640px; margin: 0 auto 50px; font-size: 18px; }
.muted { color: #918a78; }
.small { font-size: 13px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 64px; width: 64px; object-fit: cover; border-radius: 0; background: var(--black); }
.brand-text { font-family: var(--serif); font-size: 19px; letter-spacing: 1px; color: #fff; }
.brand-text em { font-style: normal; color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a {
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); border-color: var(--gold); }
.main-nav a.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: 2px;
}
.main-nav a.nav-cta:hover { background: var(--gold-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-brand::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-logo-img {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  height: 130px;
  width: auto;
  z-index: 1;
  filter: brightness(1.55) contrast(1.2) saturate(1.15) drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,12,0.62) 0%, rgba(20,18,12,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 20px;
  color: #f0e6cf;
}
.hero-content h1 {
  color: #fff;
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-sub { color: #f0eee7; font-size: 17px; max-width: 600px; margin: 0 auto 34px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 2; display: flex; justify-content: center; gap: 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; }
.dot.active { background: #fff; }

/* ===== SPLIT SECTIONS ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.reverse-on-desktop .split-image { order: 2; }
.reverse-on-desktop .split-text { order: 1; }
.split-image img { border-radius: 3px; }

/* ===== SERVICES ===== */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; margin-top: 50px; }
.service-card { background: #fff; border: 1px solid var(--line); }
.service-card img { height: 210px; width: 100%; object-fit: cover; }
.service-card-body { padding: 28px; position: relative; }
.service-number {
  position: absolute; top: -22px; right: 24px;
  font-family: var(--serif); font-size: 34px; color: var(--gold);
  opacity: 0.6;
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; }

/* ===== TEAM ===== */
.team-member { display: grid; grid-template-columns: 320px 1fr; gap: 50px; align-items: center; margin: 0 0 70px; }
.team-member.reverse { grid-template-columns: 1fr 320px; }
.team-member.reverse .team-portrait { order: 2; }
.team-member.no-photo { grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.team-portrait img { border-radius: 3px; }
.team-title { color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; margin-bottom: 16px; }

.before-after { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 60px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 30px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ba-pair img { width: 100%; height: 260px; object-fit: cover; }
.ba-label {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--charcoal-soft);
  margin-top: 10px;
}

/* ===== AMENITIES ===== */
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.amenity-card { text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line); }
.amenity-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.amenity-card h4 { font-size: 17px; margin-bottom: 8px; }
.amenity-card p { font-size: 14px; margin: 0; }
.golf-image { margin-top: 50px; }
.golf-image img { border-radius: 3px; }

/* ===== EVENTS ===== */
.events-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 4px; }
.event-row { display: flex; gap: 26px; align-items: center; padding: 22px 10px; border-bottom: 1px solid var(--line); }
.event-date {
  font-family: var(--serif); font-size: 14px; color: var(--gold-dark);
  text-align: center; line-height: 1.3; min-width: 74px;
  border-right: 1px solid var(--line); padding-right: 20px;
}
.event-info h4 { font-size: 18px; margin-bottom: 4px; }
.event-info p { font-size: 14.5px; margin: 0; }

/* ===== RESTAURANTS ===== */
.restaurant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 40px; }
.restaurant-card { background: #fff; border: 1px solid var(--line); padding: 26px 28px; position: relative; }
.r-num { font-family: var(--serif); color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.restaurant-card h4 { font-size: 18px; margin: 6px 0 6px; }
.restaurant-card p { font-size: 14.5px; margin: 0; }

/* ===== GETTING HERE ===== */
.travel-list li { margin-bottom: 18px; font-size: 15.5px; color: var(--charcoal-soft); }
.travel-list strong { color: var(--charcoal); }

/* ===== FOOTER ===== */
.site-footer { background: var(--black); color: #fff; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.4fr 0.8fr; gap: 50px; padding-bottom: 60px; }
.footer-brand img { height: 84px; width: 84px; object-fit: cover; border-radius: 0; background: var(--black); margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.footer-contact h4, .footer-links h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-contact p { font-size: 14.5px; color: rgba(255,255,255,0.7); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { display: none; font-size: 14px; padding: 12px 14px; border-radius: 2px; margin: -6px 0 16px; }
.form-status.show { display: block; }
.form-status-success { background: rgba(169,130,47,0.15); color: #e8cf9a; border: 1px solid rgba(169,130,47,0.4); }
.form-status-error { background: rgba(180,60,50,0.15); color: #f0b3ab; border: 1px solid rgba(180,60,50,0.4); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  background: #161615; border: 1px solid rgba(255,255,255,0.15); color: #fff;
  padding: 12px 14px; font-family: var(--sans); font-size: 14px; border-radius: 2px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 32px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); flex-direction: column; align-items: flex-start;
    padding: 20px 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none; gap: 14px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .split, .team-member, .team-member.reverse { grid-template-columns: 1fr; }
  .team-member .team-portrait, .team-member.reverse .team-portrait { order: 1; max-width: 260px; }
  .reverse-on-desktop .split-image, .reverse-on-desktop .split-text { order: unset; }
  .service-grid, .amenity-grid, .restaurant-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 36px; }
}
