:root {
  --navy: #1f3a5f;
  --navy-dark: #15293f;
  --wood: #8b5a2b;
  --wood-light: #b88555;
  --cream: #f5f1ea;
  --cream-dark: #ebe5d8;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e1ddd1;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.topbar { background: var(--navy-dark); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar a:hover { color: white; }
.topbar .badge { display: inline-flex; align-items: center; gap: 6px; }
.topbar .badge::before { content: '★★★★★'; color: #f5c518; font-size: 11px; letter-spacing: 1px; }

.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; gap: 24px; }
.logo { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); letter-spacing: 0.5px; line-height: 1; text-decoration: none; }
.logo span { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 3px; color: var(--wood); margin-top: 4px; text-transform: uppercase; font-weight: 500; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav a:hover { color: var(--wood); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.phone-link { font-weight: 600; color: var(--navy); text-decoration: none; font-size: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; border-radius: 2px; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-dark); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-light { background: white; color: var(--navy); }
.btn-light:hover { background: var(--cream); }

.gallery-tab { padding: 10px 20px; background: white; border: 1px solid var(--border); color: var(--text-muted); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; border-radius: 2px; font-family: inherit; }
.gallery-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
.gallery-tab:hover:not(.active) { border-color: var(--wood); color: var(--navy); }

.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 60px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { padding: 4px 0; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer a:hover { color: white; }
.footer-brand .logo { color: white; font-size: 24px; }
.footer-brand .logo span { color: var(--wood-light); }
.footer-brand p { margin-top: 16px; max-width: 320px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
