:root {
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', Arial, Helvetica, sans-serif;
  --navy: #fbfaf7;          /* ivory page ground (card background) */
  --navy-2: #ffffff;        /* card surface */
  --gold: #c9a24b;
  --gold-light: #e7c88a;
  --gold-deep: #a8823a;     /* card's dark gold — text accents on light */
  --text-light: #111318;    /* ink */
  --text-muted: #6f747d;
  --border: rgba(201, 162, 75, 0.35);
  --hairline: #dcd5c6;
}

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

body {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 162, 75, 0.12), rgba(201, 162, 75, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, var(--navy) 40%, #f3eee1 100%);
  color: var(--text-light);
  font-family: var(--serif);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(201, 162, 75, 0.3);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--gold-light), var(--gold) 45%, var(--gold-deep)) 1;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; }
.brand .name { font-size: 20px; letter-spacing: 2px; font-weight: 700; }
.brand .sub { font-size: 10px; letter-spacing: 4px; color: var(--gold); display: block; margin-top: 2px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
}

.nav-links a { color: var(--text-light); opacity: 0.85; padding-bottom: 6px; }
.nav-links a.active { color: var(--gold); opacity: 1; border-bottom: 2px solid var(--gold); }
.nav-links a:hover { opacity: 1; }

.btn-gold {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1305;
  border: none;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 162, 75, 0.35); }
.btn-gold:hover::after { left: 130%; }
.btn-gold.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  animation: hero-zoom 26s ease-in-out infinite alternate;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(201, 162, 75, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.78), rgba(251, 250, 247, 0.94));
  z-index: -1;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "— "; }

.hero h1 {
  font-size: 64px;
  font-weight: 400;
  max-width: 620px;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }

.hero p {
  font-family: var(--sans);
  color: var(--text-muted);
  max-width: 460px;
  margin: 22px 0 26px;
  font-size: 15px;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  color: var(--gold-deep);
  max-width: 640px;
  line-height: 1.45;
  margin: 0 0 30px;
}

/* ---------- Consultation modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 19, 24, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--navy-2);
  border: 1px solid var(--gold);
  padding: 36px 34px 30px;
}
.modal h3 { font-size: 22px; font-weight: 400; margin-bottom: 20px; }
.modal .eyebrow { margin-bottom: 10px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--gold-deep); }
.modal label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 14px 0 6px;
}
.modal input,
.modal textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 2px;
  resize: vertical;
}
.modal input:focus,
.modal textarea:focus { outline: none; border-color: var(--gold); }
.modal .btn-gold { width: 100%; margin-top: 20px; }
.modal-note {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* ---------- Quick pick ---------- */
.quick-pick {
  max-width: 1200px;
  margin: -46px auto 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  position: relative;
  z-index: 5;
  font-family: var(--sans);
  text-align: center;
  padding: 26px 30px 22px;
}
.qp-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.quick-pick .cat-tiles { text-align: left; }

/* ---------- Stats ---------- */
.stats {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  gap: 20px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 26px 10px;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 75, 0.06);
  font-family: var(--sans);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.stat:hover {
  transform: translateY(-4px);
  background: rgba(201, 162, 75, 0.11);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.12), 0 0 0 1px rgba(201, 162, 75, 0.25);
}
.stat .num {
  font-family: var(--serif);
  font-size: 30px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-deep);
}
.stat .label { font-size: 11px; letter-spacing: 1px; color: var(--text-muted); margin-top: 6px; }

/* ---------- Section heading ---------- */
.section { max-width: 1280px; margin: 90px auto 0; padding: 0 40px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 34px;
}
.section-head h2 { font-size: 34px; font-weight: 400; }
.section-head .view-all {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
}

/* ---------- Property cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.property-card {
  border: 1px solid var(--hairline);
  box-shadow: 0 2px 14px rgba(17, 19, 24, 0.05);
  background: var(--navy-2);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12), 0 0 24px rgba(201, 162, 75, 0.14);
}
.property-media { position: relative; height: 190px; overflow: hidden; }
.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-media img { transform: scale(1.07); }
.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #1a1305;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 5px 10px;
  font-weight: 700;
}

.property-body { padding: 18px 20px 22px; font-family: var(--sans); }
.property-body h3 { font-family: var(--serif); font-size: 17px; font-weight: 400; margin-bottom: 6px; }
.property-loc { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.property-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.property-price { color: var(--gold-deep); font-family: var(--serif); font-size: 19px; }
.property-price small { font-size: 12px; color: var(--text-muted); font-family: var(--sans); }

.prop-id {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 6px;
}
.prop-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
}
.prop-link:hover { color: var(--gold-deep); border-color: var(--gold); }
.prop-note {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  font-family: var(--sans);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
}
.filter-btn:hover { color: var(--gold-deep); border-color: var(--gold); }
.filter-btn.active {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1305;
  border-color: var(--gold);
}

/* ---------- No-photo card hero ---------- */
.property-media.no-photo {
  background:
    radial-gradient(ellipse at top left, rgba(201, 162, 75, 0.22), transparent 60%),
    linear-gradient(160deg, #fffdf8 0%, #f2ecdd 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-inner { text-align: center; padding: 0 16px; }
.np-line {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.np-price { font-family: var(--serif); font-size: 32px; color: var(--gold-deep); }
.np-price small { font-size: 15px; color: var(--text-muted); }

/* ---------- About us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--navy-2);
  padding: 50px;
}
.about-copy h2 { font-size: 34px; font-weight: 400; margin-bottom: 18px; }
.about-copy p {
  font-family: var(--sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 640px;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-highlight {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.about-highlight strong { color: var(--gold-deep); font-weight: 700; }
.about-stats { display: flex; flex-direction: column; gap: 18px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--border);
  background: var(--navy-2);
  padding: 34px 30px;
}
.service-card {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12), 0 0 24px rgba(201, 162, 75, 0.14);
}
.service-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 75, 0.08);
  color: var(--gold-deep);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.service-card p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
  display: flex;
  gap: 22px;
  border: 1px solid var(--border);
  background: var(--navy-2);
  padding: 26px;
  align-items: flex-start;
}
.blog-card { transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12), 0 0 24px rgba(201, 162, 75, 0.14);
}
.blog-date {
  flex: 0 0 auto;
  text-align: center;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 75, 0.08);
  padding: 12px 14px;
  min-width: 74px;
}
.blog-date .day {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-deep);
  line-height: 1.1;
}
.blog-date .monyr {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
}
.blog-body { font-family: var(--sans); min-width: 0; }
.blog-card { min-width: 0; }
.blog-cat {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ---------- Contact CTA band ---------- */
.cta-band {
  border: 1px solid var(--gold);
  background:
    radial-gradient(ellipse at top right, rgba(201, 162, 75, 0.12), transparent 55%),
    var(--navy-2);
  padding: 56px 50px;
  text-align: center;
}
.cta-band .eyebrow::before { content: ""; }
.cta-band h2 { font-size: 32px; font-weight: 400; margin-bottom: 16px; }
.cta-band p {
  font-family: var(--sans);
  color: var(--text-muted);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

footer { margin-top: 70px; }

.footer-bar {
  background: #ffffff;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--gold-light), var(--gold) 45%, var(--gold-deep)) 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bar .brand .name { color: var(--text-light); }
.footer-bar .brand .sub { color: var(--gold); }
.footer-bar .brand img { border: 1px solid var(--border); }

.footer-copy {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold-deep);
  font-size: 20px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 2px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; padding: 40px 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; }
  .about-stats .stat { flex: 1; }
  .hero h1 { font-size: 44px; }

  /* collapse nav into hamburger dropdown */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(251, 250, 247, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: none; }
  .nav-links a.active { border-bottom: none; }
}

@media (max-width: 640px) {
  .navbar { padding: 12px 18px; }
  .brand img { width: 34px; height: 34px; }
  .brand .name { font-size: 16px; }
  .btn-gold { padding: 11px 16px; font-size: 10px; letter-spacing: 1px; }
  .hero { padding: 48px 24px; min-height: 520px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 0 20px; margin-top: 64px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; padding: 0 20px; gap: 12px; }
  .stat { flex: 1 1 calc(50% - 6px); padding: 20px 8px; }
  .stat .num { font-size: 24px; }
  .quick-pick { margin: -30px 20px 0; padding: 22px 18px 18px; }
  .about-grid { padding: 30px 22px; }
  .about-stats { flex-direction: column; }
  .cta-band { padding: 38px 24px; }
  .cta-band h2 { font-size: 26px; }
  .blog-card { padding: 20px; gap: 16px; }
  .footer-bar { flex-direction: column; text-align: center; gap: 12px; padding: 22px 20px; }
  .modal { padding: 28px 22px 24px; }
}


/* ---------- Featured grid & category tiles ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-grid .property-media { height: 240px; }
.featured-grid .property-body h3 { font-size: 19px; }
.featured-grid .property-card { position: relative; }
.featured-grid .property-card::before {
  content: "PREMIUM";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 5px 10px;
}
.cat-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-tile {
  border: 1px solid var(--border);
  background: var(--navy-2);
  padding: 22px 14px;
  text-align: center;
  font-family: var(--sans);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cat-tile:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.10), 0 0 20px rgba(201, 162, 75, 0.12);
}
.ct-icon { display: block; font-size: 26px; margin-bottom: 10px; }
.ct-name { display: block; font-family: var(--serif); font-size: 16px; margin-bottom: 4px; }
.ct-count { display: block; font-size: 11px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }
.page-head { margin-top: 50px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---------- Motion & rich details ---------- */
html { scroll-behavior: smooth; }

::selection { background: var(--gold); color: #1a1305; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #f0ebe0; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 6px;
  border: 2px solid #f0ebe0;
}

.section-head h2,
.about-copy h2,
.cta-band h2 { letter-spacing: 0.5px; }
.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.filter-btn { transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.filter-btn:hover { transform: translateY(-2px); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Login page ---------- */
.login-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.role-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 34px 26px;
  text-align: center;
  cursor: pointer;
  color: var(--text-light);
  font-family: inherit;
  transition: border-color .2s, transform .2s;
}
.role-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.role-card.active {
  border-color: var(--gold);
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.14), transparent 60%),
    var(--navy-2);
}
.role-icon { display: block; font-size: 34px; margin-bottom: 14px; }
.role-name { display: block; font-family: var(--serif, Georgia, serif); font-size: 22px; margin-bottom: 10px; }
.role-desc { display: block; font-family: var(--sans, Arial, sans-serif); font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.role-panel {
  max-width: 560px;
  border: 1px solid var(--border);
  background: var(--navy-2);
  padding: 34px 36px 30px;
  border-radius: 2px;
}
.role-panel h3 { font-family: var(--serif, Georgia, serif); font-size: 22px; font-weight: 400; margin-bottom: 10px; }
.role-note { font-family: var(--sans, Arial, sans-serif); font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.role-form label {
  display: block;
  font-family: var(--sans, Arial, sans-serif);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 14px 0 6px;
}
.role-form input,
.role-form textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--sans, Arial, sans-serif);
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 2px;
  resize: vertical;
}
.role-form input:focus,
.role-form textarea:focus { outline: none; border-color: var(--gold); }
.role-form .btn-gold { width: 100%; margin-top: 20px; }
#panel-employee .btn-gold { display: inline-block; margin-top: 6px; }
@media (max-width: 900px) {
  .login-roles { grid-template-columns: 1fr; }
  .role-panel { padding: 26px 22px; }
}
