@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --brand: #1E2B5A;
  --brand-dark: #141C3D;
  --accent: #B12626;
  --ink: #0F1322;
  --cream: #FAF8F4;
  --stone: #F2EFE8;
  --muted: #6B7180;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', system-ui, sans-serif; color: var(--ink); -webkit-font-smoothing: antialiased; background: #fff; }

.font-display { font-family: 'Cormorant Garamond', Georgia, serif; letter-spacing: -0.01em; }
.tracking-eyebrow { letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.72rem; font-weight: 600; }

.hero-img { background-position: center; background-size: cover; }

.gallery-grid { column-count: 1; column-gap: 12px; }
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 3; } }
.gallery-grid img { width: 100%; display: block; margin-bottom: 12px; break-inside: avoid; border-radius: 4px; cursor: zoom-in; transition: opacity .2s; }
.gallery-grid img:hover { opacity: 0.92; }

.kf-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .9rem; background: var(--cream); border: 1px solid rgba(30,43,90,0.08); border-radius: 999px; font-size: .85rem; font-weight: 500; color: var(--brand); }
.kf-pill svg { width: 14px; height: 14px; flex: none; color: var(--accent); }

.spec-tile { background: #fff; border: 1px solid rgba(15,19,34,0.07); border-radius: 6px; padding: 1.4rem 1.1rem; text-align: center; }
.spec-tile .num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.3rem; font-weight: 600; color: var(--brand); line-height: 1; }
.spec-tile .lbl { font-size: .68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; font-weight: 600; }

.divider-rule { display: flex; align-items: center; gap: 1rem; }
.divider-rule::before, .divider-rule::after { content: ''; flex: 1; height: 1px; background: rgba(15,19,34,0.12); }

.cta-btn { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.6rem; background: var(--accent); color: #fff; font-weight: 600; letter-spacing: 0.02em; border-radius: 2px; transition: background .2s, transform .2s; text-decoration: none; }
.cta-btn:hover { background: var(--brand); }
.cta-btn.outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.cta-btn.outline:hover { background: var(--brand); color: #fff; }

.lightbox { position: fixed; inset: 0; background: rgba(15,19,34,0.94); z-index: 100; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; }
.lightbox button { position: absolute; top: 1.5rem; right: 1.5rem; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: .5rem 1rem; cursor: pointer; font-family: inherit; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }

@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fade-up .8s ease-out both; }

[x-cloak] { visibility: hidden; }