/* ================================================================
   KANIA IMMOBILIER — Design System
   Couleurs : Navy #1B4F8A / Gold #C9A96E / Off-white #F8F6F0
   Fonts : Cormorant Garamond (titres) + DM Sans (corps)
   ================================================================ */

:root {
  --navy: #1B4F8A;
  --navy-dark: #0F2544;
  --navy-light: #2563a8;
  --gold: #C9A96E;
  --gold-dark: #8B6914;
  --gold-light: #E8D5B0;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --cream: #FAF7F2;
  --dark: #1A1A2E;
  --text: #2C2C3E;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E2D9;
  --border-light: #F0EDE6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(27,79,138,.10);
  --shadow-lg: 0 12px 40px rgba(27,79,138,.16);
  --shadow-xl: 0 24px 64px rgba(27,79,138,.20);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.75; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-light); }

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title { color: var(--dark); margin-bottom: 1rem; }
.section-desc { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.title-underline {
  display: inline-block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: .75rem auto 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,79,138,.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-danger { background: #DC2626; color: white; border-color: #DC2626; }
.btn-danger:hover { background: #B91C1C; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-blue  { background: #DBEAFE; color: #1E40AF; }
.badge-gold  { background: var(--gold-pale); color: var(--gold-dark); }
.badge-navy  { background: #EFF6FF; color: var(--navy); }
.badge-red   { background: #FEE2E2; color: #991B1B; }
.badge-gray  { background: #F3F4F6; color: #374151; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,79,138,.12);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-error { color: #DC2626; font-size: .8rem; margin-top: .3rem; }
.form-hint { color: var(--text-light); font-size: .8rem; margin-top: .3rem; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .85rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color .3s;
}
.navbar.scrolled .navbar-logo { color: var(--dark); }
.navbar-logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.navbar-logo-text { line-height: 1.1; }
.navbar-logo-sub { font-size: .68rem; font-family: 'DM Sans', sans-serif; letter-spacing: .12em; text-transform: uppercase; opacity: .75; font-weight: 400; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 1px;
}
.navbar-nav a:hover::after,
.navbar-nav a.active::after { transform: scaleX(1); }
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--white); }
.navbar.scrolled .navbar-nav a { color: var(--text-light); }
.navbar.scrolled .navbar-nav a:hover,
.navbar.scrolled .navbar-nav a.active { color: var(--navy); }
.navbar-cta { display: flex; align-items: center; gap: 1rem; }
.navbar-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.navbar-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-menu-btn span { background: var(--dark); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; color: var(--white); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a6bb5 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 8rem 0 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,169,110,.2);
  border: 1px solid rgba(201,169,110,.4);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Search Bar ─────────────────────────────────────────────── */
.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 2.5rem;
}
.search-bar .form-group { margin-bottom: 0; flex: 1; min-width: 140px; }
.search-bar .btn { flex-shrink: 0; height: 44px; }

/* ── Bien Card ──────────────────────────────────────────────── */
.bien-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.bien-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.bien-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--off-white);
}
.bien-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bien-card:hover .bien-card-image img { transform: scale(1.05); }
.bien-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  gap: .5rem;
}
.bien-card-image-placeholder .emoji { font-size: 3rem; }
.bien-card-image-placeholder span { font-size: .8rem; opacity: .7; }
.bien-card-badges {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.bien-card-featured {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.bien-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bien-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.bien-card-location {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--text-light);
  font-size: .83rem;
  margin-bottom: 1rem;
}
.bien-card-specs {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.bien-card-spec {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: var(--text-light);
}
.bien-card-spec strong { color: var(--text); font-weight: 500; }
.bien-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.bien-card-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

/* ── Realisation Card ───────────────────────────────────────── */
.realisation-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.realisation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.realisation-card-header {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.realisation-card-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.realisation-card-meta { flex: 1; }
.realisation-card-type {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  margin-bottom: .3rem;
}
.realisation-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.realisation-card-body { background: var(--white); padding: 1.5rem; }
.realisation-card-detail {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: var(--text-light);
  margin-bottom: .5rem;
}

/* ── Article Card ───────────────────────────────────────────── */
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.article-card-header {
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-card-emoji { font-size: 2.5rem; }
.article-card-badge {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.article-card-body { padding: 0 1.75rem 1.75rem; }
.article-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.article-card-excerpt {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Grid Layouts ───────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Section Spacing ────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.section-navy { background: var(--navy-dark); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-off-white { background: var(--off-white); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .75rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--dark); }
.footer-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; font-size: .88rem; }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.cream::after { background: var(--cream); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); margin-bottom: .75rem; }
.page-hero h1 { color: var(--white); }
.page-hero-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin-top: .75rem; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }

/* ── Filter Bar ─────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.filter-bar .form-group { margin-bottom: 0; min-width: 160px; flex: 1; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 3rem; }
.pagination-item {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.pagination-item:hover { border-color: var(--navy); color: var(--navy); }
.pagination-item.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }
.pagination-item.disabled { opacity: .4; cursor: not-allowed; }

/* ── Flash Messages ─────────────────────────────────────────── */
.flash {
  position: fixed;
  top: 5.5rem; right: 1.5rem;
  z-index: 9999;
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.flash-msg {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: slideInRight .3s ease;
  border-left: 4px solid transparent;
}
.flash-msg.success { background: #F0FDF4; border-color: #16A34A; color: #15803D; }
.flash-msg.error   { background: #FEF2F2; border-color: #DC2626; color: #DC2626; }
.flash-msg.info    { background: #EFF6FF; border-color: var(--navy); color: var(--navy); }
.flash-close { margin-left: auto; opacity: .6; cursor: pointer; font-size: 1.1rem; flex-shrink: 0; }
.flash-close:hover { opacity: 1; }
@keyframes slideInRight {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

/* ── Detail View ────────────────────────────────────────────── */
.detail-image {
  width: 100%; height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-image-placeholder { font-size: 6rem; text-align: center; }
.detail-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.detail-spec {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.detail-spec-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.detail-spec-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .25rem; }
.detail-spec-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border-light); }

/* ── About / Features ───────────────────────────────────────── */
/* ── Why Choose Us & Service Mini Grid ─────────────────────── */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Feature Icon ───────────────────────────────────────────── */
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.feature-icon.navy { background: rgba(27,79,138,.1); }
.feature-icon.gold { background: var(--gold-pale); }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,169,110,.15), transparent 60%);
}

/* ── Admin ──────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--navy-dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 100;
  overflow-y: auto;
}
.admin-logo {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.admin-logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.admin-nav { padding: 1.5rem 0; flex: 1; }
.admin-nav-label {
  padding: .35rem 1.5rem;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.35);
  margin-bottom: .25rem;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  border-left: 3px solid transparent;
  margin: .1rem 0;
}
.admin-nav-item:hover {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-left-color: rgba(255,255,255,.3);
}
.admin-nav-item.active {
  background: rgba(201,169,110,.15);
  color: var(--gold);
  border-left-color: var(--gold);
}
.admin-nav-badge {
  margin-left: auto;
  background: #DC2626;
  color: white;
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 999px;
}
.admin-nav-icon { font-size: 1rem; flex-shrink: 0; }
.admin-user {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.admin-user-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: .88rem;
  flex-shrink: 0;
}
.admin-user-info { flex: 1; min-width: 0; }
.admin-user-name { font-size: .85rem; font-weight: 500; color: var(--white); }
.admin-user-role { font-size: .72rem; color: rgba(255,255,255,.45); }
.admin-main { margin-left: 260px; flex: 1; background: #F8F9FC; min-height: 100vh; }
.admin-topbar {
  background: var(--white);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.admin-topbar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); }
.admin-topbar-actions { display: flex; align-items: center; gap: 1rem; }
.admin-content { padding: 2rem; max-width: 1800px; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.admin-stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.admin-stat-label { font-size: .82rem; color: var(--text-light); margin-top: .25rem; }
.admin-table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: #F8F9FC;
  padding: .85rem 1.25rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}
.admin-table td {
  padding: 1rem 1.25rem;
  font-size: .88rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.admin-table-actions { display: flex; align-items: center; gap: .5rem; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.admin-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-title { font-size: 1rem; font-weight: 600; color: var(--dark); }
.admin-card-body { padding: 1.5rem; }
.admin-form-section { margin-bottom: 2rem; }
.admin-form-section-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border-light); }
.admin-image-preview {
  width: 200px; height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  font-size: 2.5rem;
}
.admin-image-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-checkbox-label { display: flex; align-items: center; gap: .75rem; cursor: pointer; }
.admin-checkbox { width: 18px; height: 18px; accent-color: var(--navy); }
.admin-msg-unread td { font-weight: 600; background: rgba(27,79,138,.03); }
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 2rem;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
}
.admin-login-logo { text-align: center; margin-bottom: 2rem; }
.admin-login-logo-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto .75rem;
}

/* ── Contact form ───────────────────────────────────────────── */
.contact-section {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: space-around; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .navbar-nav, .navbar-cta { display: none; }
  .navbar-menu-btn { display: flex; }
  .search-bar { flex-direction: column; }
  .search-bar .form-group { min-width: unset; }
  .search-bar .btn { width: 100%; height: auto; justify-content: center; }
  .filter-bar { flex-direction: column; }
  .filter-bar .form-group { min-width: unset; }
  .filter-bar .btn { width: 100%; justify-content: center; }
  .filter-bar-reset { text-align: center; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-content { padding: 6rem 0 4rem; }
  .section { padding: 4rem 0; }
  .btn-lg { padding: .85rem 1.75rem; }
  .hero-stats { gap: 1rem; }
  .hero-stats > div { flex: 0 0 calc(50% - .5rem); text-align: center; }
  .service-mini-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Detail Layout (2-col page) ─────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.detail-main { min-width: 0; }
.detail-sidebar { position: sticky; top: 90px; }

/* ── Image Gallery (public) ─────────────────────────────────── */
.gallery-wrap { margin-bottom: 2rem; }
.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background: var(--off-white);
  cursor: zoom-in;
  margin-bottom: .75rem;
}
.gallery-zoom-hint {
  position: absolute;
  bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.45);
  color: white;
  border-radius: 999px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  pointer-events: none;
}
.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: white;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}
.gallery-arrow:hover { background: rgba(0,0,0,.7); }
.gallery-arrow-prev { left: .75rem; }
.gallery-arrow-next { right: .75rem; }
.gallery-counter {
  position: absolute;
  bottom: .75rem; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  color: white;
  font-size: .75rem;
  padding: .2rem .7rem;
  border-radius: 999px;
}
.gallery-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .65;
  transition: var(--transition);
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--gold); opacity: 1; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-enter { transition: opacity .25s ease; }
.lightbox-enter-start { opacity: 0; }
.lightbox-enter-end   { opacity: 1; }
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: white;
  font-size: 1.5rem;
  background: rgba(255,255,255,.12);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,.6);
}
.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  color: white;
  border: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: .5rem;
}
.lightbox-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.lightbox-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── Admin Image Upload ─────────────────────────────────────── */
.image-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.image-upload-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off-white);
  border: 2px solid var(--border);
}
.image-upload-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-cover-badge {
  position: absolute;
  bottom: .4rem; left: .4rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .15rem .45rem;
  border-radius: 999px;
}
.image-delete-btn {
  position: absolute;
  top: .4rem; right: .4rem;
  width: 26px; height: 26px;
  background: #DC2626;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.image-delete-btn:hover { background: #991B1B; }
.image-upload-dropzone {
  display: block;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--off-white);
  position: relative;
}
.image-upload-dropzone.dragover,
.image-upload-dropzone:hover { border-color: var(--navy); background: rgba(27,79,138,.04); }
.image-upload-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
}

/* ── Admin Grid Helpers ─────────────────────────────────────── */
.admin-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.admin-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.admin-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ── Admin Mobile Sidebar ───────────────────────────────────── */
.admin-sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  flex-shrink: 0;
}
.admin-sidebar-toggle:hover { border-color: var(--navy); color: var(--navy); }
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
  cursor: pointer;
}

/* ── Responsive — new components ────────────────────────────── */
@media (max-width: 1100px) {
  .detail-layout { grid-template-columns: 1fr 300px; }
}
@media (max-width: 900px) {
  .admin-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .admin-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Detail pages — stack sidebar below */
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }

  /* Gallery */
  .gallery-main { height: 250px; }
  .gallery-thumb { width: 56px; height: 42px; }

  /* Lightbox arrows hidden on small touch screens */
  .lightbox-prev, .lightbox-next { display: none; }

  /* Admin sidebar mobile drawer — override existing display:none */
  .admin-sidebar-toggle { display: flex; }
  .admin-sidebar {
    display: flex;
    transform: translateX(-100%);
    transition: transform .3s ease;
  }
  .admin-sidebar.sidebar-open { transform: translateX(0); }
  .admin-sidebar-overlay { display: block; }

  /* Admin layout */
  .admin-content { padding: 1rem; }
  .admin-topbar { padding: .85rem 1rem; }

  /* Tables scrollable */
  .admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 620px; }

  /* Admin grids stack */
  .admin-grid-2,
  .admin-grid-3,
  .admin-grid-4 { grid-template-columns: 1fr; }

  /* Image upload grid */
  .image-upload-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }

  /* Flash full-width */
  .flash { left: 1rem; right: 1rem; max-width: none; }

  /* Detail specs 2-col */
  .detail-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-main { height: 200px; }
  .gallery-thumbs { gap: .35rem; }
  .gallery-thumb { width: 48px; height: 36px; }
  .detail-specs { grid-template-columns: 1fr 1fr; }
  .sidebar-card { padding: 1.25rem; }
  .admin-login-card { padding: 2rem 1.5rem; }
}
