/* =====================================================
   Alexander Summit — Global Styles
   Brand: black / white / cream, Rosario display, warm hospitality
===================================================== */

:root {
  --black: #111111;
  --black-soft: #1a1a1a;
  --white: #ffffff;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d8;
  --warm: #c4a97d;
  --warm-light: #d4be98;
  --warm-muted: #a38d6d;
  --text-primary: #111111;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;
  --text-light: #c0c0c0;
  --border: #ddd6ca;
  --border-light: #e8e2d6;
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Rosario', 'Avenir', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body: 'Rosario', 'Avenir', 'Avenir Next', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--warm-muted); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--black); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 14px;
  display: block;
}
.section-tag-light { color: var(--warm-light); }

/* =====================================================
   NAV
===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.85);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(17,17,17,0.97);
  box-shadow: 0 1px 8px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
  transition: filter 0.3s;
}
.nav.scrolled .logo-img { filter: invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--cream) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(17,17,17,0.98);
    padding: 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
}

/* =====================================================
   HERO V2 — image band + copy block below
===================================================== */
.hero-v2 {
  padding-top: 72px; /* offset for fixed nav */
}
.hero-v2-image {
  width: 100%;
  line-height: 0;
  background: var(--black);
}
.hero-v2-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 70vh;
}
.hero-v2-copy {
  text-align: center;
  padding: 64px 24px 72px;
  background: var(--cream);
}
.hero-v2-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.hero-v2-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-v2-body {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-v2-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-v2-copy { padding: 48px 24px 56px; }
  .hero-v2-img { max-height: 50vh; }
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--black-soft);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

/* =====================================================
   SECTIONS
===================================================== */
.section { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.text-white { color: var(--white) !important; }

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 48px;
  max-width: 700px;
}
.section-cta { margin-top: 48px; text-align: center; }

/* =====================================================
   PROBLEM — two-column image + text
===================================================== */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 480px;
}
.problem-text h2 {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .problem-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-image img { max-height: 320px; }
}

/* =====================================================
   PROBLEM GRID
===================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-body {
  max-width: 720px;
}
.problem-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.problem-body p:last-child { margin-bottom: 0; }

/* =====================================================
   SERVICES GRID
===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-icon {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--warm);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.services-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 48px;
}
a.service-card {
  color: var(--text-primary);
  text-decoration: none;
  display: block;
}
a.service-card:hover {
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   WHO WE WORK WITH
===================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}
.who-card:hover { border-color: rgba(255,255,255,0.25); }
.who-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 0.88rem;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   CTA BAND
===================================================== */
.section-cta-band {
  background: var(--warm);
  padding: 80px 0;
}
.cta-center { text-align: center; }
.cta-center h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  max-width: 100%;
}
.cta-center p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.section-cta-band .btn-primary {
  background: var(--black);
  color: var(--white);
}
.section-cta-band .btn-primary:hover { background: var(--black-soft); }
.section-cta-band .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.section-cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* =====================================================
   DIVISIONS
===================================================== */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.division-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--text-primary);
}
.division-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  color: var(--text-primary);
}
.division-logo-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.division-logo {
  max-height: 56px;
  width: auto;
}
.goodco-icon {
  background: var(--warm);
}
.goodco-icon span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.division-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.division-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.division-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm);
}
@media (max-width: 640px) {
  .divisions-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   V2 DIVISIONS — 4-card grid
===================================================== */
.divisions-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 48px;
}
.divisions-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.division-card-v2 {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.section-cream .division-card-v2 {
  background: var(--white);
}
.division-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.division-card-v2 .division-logo-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.division-card-v2 .division-logo {
  max-height: 56px;
  width: auto;
}
.division-card-v2 h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.division-card-v2 p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.division-card-v2 .division-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm);
}
.alter-bg { background: var(--black); }
.goodco-bg { background: var(--white); border: 1px solid var(--border-light); }
.goodco-logo {
  max-height: 48px;
  width: auto;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .divisions-grid-4 { grid-template-columns: 1fr; }
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  filter: invert(1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 260px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES PAGE (detailed)
===================================================== */
.page-header {
  background: var(--black);
  padding: 140px 0 80px;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-inner {
  max-width: 720px;
}
.service-detail .service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.service-detail h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-detail p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-detail p:last-child { margin-bottom: 0; }

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-content {
  max-width: 720px;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-content p:last-child { margin-bottom: 0; }
.experience-refs {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}
.experience-refs h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}
.experience-refs ul {
  list-style: none;
  padding: 0;
}
.experience-refs li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}
.experience-refs li:last-child { border-bottom: none; }

/* =====================================================
   BRANDS PAGE
===================================================== */
.brand-section {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.brand-logo-wrap {
  width: 140px; height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 24px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrap img {
  max-height: 100px;
  width: auto;
}
.brand-section h2 {
  max-width: 100%;
  margin-bottom: 16px;
}
.brand-section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.brand-section .btn { margin-top: 8px; }

.brand-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

/* =====================================================
   CONTACT / FORM
===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.contact-info a {
  color: var(--warm-muted);
  font-weight: 600;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-primary);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--black-soft); }
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES DETAIL GRID (6 cards, 2-col on desktop)
===================================================== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.svc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.svc-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.1em;
  margin-top: 4px;
  flex-shrink: 0;
}
.svc-card-header h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.3;
}
.svc-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.svc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .services-detail-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PACKAGES SECTION (3-tier consulting)
===================================================== */
.packages-intro {
  text-align: center;
  margin-bottom: 48px;
}
.packages-intro h2 {
  max-width: 100%;
  margin: 0 auto 14px;
}
.packages-intro p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.pkg-card-featured {
  border-color: var(--warm);
  border-width: 2px;
  background: var(--black);
}
.pkg-card-featured .pkg-label,
.pkg-card-featured .pkg-placeholder {
  color: var(--white);
}
.pkg-card-featured .pkg-divider {
  background: rgba(255,255,255,0.2);
}
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-card-header {
  text-align: center;
}
.pkg-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}
.pkg-divider {
  height: 1px;
  background: var(--border-light);
  margin: 20px 0;
}
.pkg-body {
  flex: 1;
  padding: 4px 0 24px;
}
.pkg-placeholder {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.pkg-footer {
  text-align: center;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pkg-card-featured { border-color: var(--warm); }
}
