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

:root {
  --navy: #142232;
  --navy-mid: #1A2E45;
  --gold: #B89E6B;
  --gold-light: #D4AE6A;
  --cream: #F8F6F2;
  --white: #FFFFFF;
  --text-dark: #0D1B2A;
  --text-mid: #3A4A5C;
  --text-light: #6B7A8D;
  --border: rgba(13,27,42,0.12);
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo-one { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.nav-logo-sub { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-mid); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }

.nav-cta { background: var(--navy); color: var(--white) !important; padding: 10px 22px; border-radius: var(--radius); font-size: 13px !important; font-weight: 500 !important; letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--navy-mid) !important; }

.hero { background: var(--navy); color: var(--white); padding: 100px 48px 88px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 560px; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-body { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 40px; max-width: 420px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary { background: var(--gold); color: var(--navy); border: none; padding: 14px 32px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; border-radius: var(--radius); cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); padding: 14px 32px; font-size: 14px; font-weight: 500; letter-spacing: 0.04em; border-radius: var(--radius); cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 24px 20px; }
.stat-card-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-card-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); text-transform: uppercase; }

.hero-badge { background: rgba(184,150,62,0.15); border: 1px solid rgba(184,150,62,0.3); border-radius: 6px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; }
.hero-badge-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.hero-badge-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.45; }
.hero-badge-text strong { display: block; color: var(--white); font-weight: 600; font-size: 15px; margin-bottom: 2px; }

.location-strip { background: var(--gold); padding: 14px 48px; display: flex; align-items: center; gap: 12px; }
.location-strip svg { width: 18px; height: 18px; fill: var(--navy); flex-shrink: 0; }
.location-strip span { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }

section { padding: 88px 48px; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-body { font-size: 16px; color: var(--text-mid); line-height: 1.75; max-width: 560px; }

#spaces { background: var(--cream); }
.spaces-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.space-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.space-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-2px); }
.space-card-header { height: 6px; background: var(--gold); }
.space-card-body { padding: 32px; }
.space-card-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.space-card-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.space-card-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.space-card-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.feature-list li { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.space-link { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; letter-spacing: 0.04em; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
.space-link:hover { color: var(--gold); }

#why { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 88px 48px; }
.why-features { display: flex; flex-direction: column; gap: 32px; margin-top: 52px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; }
.why-feature-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: rgba(184,150,62,0.25); line-height: 1; min-width: 40px; flex-shrink: 0; margin-top: -4px; }
.why-feature-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-feature-body { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.why-right { padding-top: 52px; }
.why-pull { background: var(--navy); color: var(--white); border-radius: 6px; padding: 40px; margin-bottom: 24px; }
.why-pull-quote { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 20px; }
.why-pull-attr { font-size: 13px; font-weight: 500; color: var(--gold-light); letter-spacing: 0.06em; }
.address-card { border: 1px solid var(--border); border-radius: 6px; padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start; }
.address-icon { width: 38px; height: 38px; background: var(--cream); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.address-icon svg { width: 18px; height: 18px; fill: var(--navy); }
.address-detail { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.address-detail strong { display: block; color: var(--navy); font-weight: 600; font-size: 15px; margin-bottom: 2px; }

#contact { background: var(--navy); text-align: center; padding: 100px 48px; }
#contact .section-eyebrow { color: var(--gold); }
#contact .section-title { color: var(--white); }
#contact .section-body { color: rgba(255,255,255,0.65); margin: 0 auto 48px; max-width: 480px; }

.contact-form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.form-field input, .form-field select, .form-field textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 12px 16px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field select option { background: var(--navy); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit { background: var(--gold); color: var(--navy); border: none; padding: 16px; font-size: 15px; font-weight: 700; letter-spacing: 0.05em; border-radius: var(--radius); cursor: pointer; width: 100%; margin-top: 6px; font-family: 'Inter', sans-serif; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

footer { background: #07101A; color: rgba(255,255,255,0.45); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .hero-title { font-size: 36px; }
  .spaces-grid { grid-template-columns: 1fr; }
  #why { grid-template-columns: 1fr; padding: 60px 20px; }
  section { padding: 60px 20px; }
  .location-strip { padding: 14px 20px; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
}
