/* GC Counsel PLLC — Site Stylesheet
   Colors: Jefferson Blue #232D4B | Rotunda Orange #E57200
   -------------------------------------------------------- */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}

a { color: #E57200; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: #232D4B;
  line-height: 1.2;
}
h1 { font-size: 2.6rem; font-weight: normal; }
h2 { font-size: 1.9rem; font-weight: normal; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Helpers --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }
section.alt { background: #f7f6f3; }

/* --- Nav --- */
header {
  background: #232D4B;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-brand .nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #c8cdd8;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  font-family: Arial, sans-serif;
}
.nav-links a:hover,
.nav-links a.active { color: #E57200; }

.nav-cta {
  background: #E57200;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c96200 !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c8cdd8;
}

@media (max-width: 720px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #232D4B;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid #3a4560;
  }
  .nav-links li { padding: 0.6rem 0; border-bottom: 1px solid #2e3a55; }
  .nav-links li:last-child { border-bottom: none; margin-top: 0.5rem; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: flex; }
  header { position: relative; }
  h1 { font-size: 2rem; }
}

/* --- Hero --- */
.hero {
  background: #232D4B;
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-logo-bg {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 40%;
  opacity: 0.12;
  filter: brightness(3);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 720px) {
  .hero-logo-bg { width: 200px; max-width: 50%; right: 2%; opacity: 0.08; filter: brightness(3); }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E57200;
  font-family: Arial, sans-serif;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: #fff;
  font-size: 3rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.15rem;
  color: #a8b4c8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}
.btn {
  display: inline-block;
  background: #E57200;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  text-decoration: none;
}
.btn:hover { background: #c96200; text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 1.5px solid #7a869a;
  color: #c8cdd8;
  margin-left: 1rem;
}
.btn-outline:hover { border-color: #E57200; color: #E57200; background: transparent; }

@media (max-width: 720px) {
  .hero { padding: 4rem 0 3.5rem; }
  .hero h1 { font-size: 2.1rem; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }
}

/* --- Value Strip --- */
.value-strip {
  background: #E57200;
  padding: 1.5rem 0;
}
.value-strip .container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.value-item {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.value-item::before {
  content: '✓';
  font-weight: bold;
}

/* --- Section Labels --- */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E57200;
  font-family: Arial, sans-serif;
  margin-bottom: 0.6rem;
  display: block;
}

/* --- Service Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(35,45,75,0.08);
  border-color: #E57200;
}
.card-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}
.card h3 { color: #232D4B; }
.card p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #E57200;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .cards { grid-template-columns: 1fr; }
}

/* --- Intro Block --- */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-block.flipped { direction: rtl; }
.intro-block.flipped > * { direction: ltr; }
.intro-block-text h2 { margin-bottom: 1.2rem; }
.intro-block-text p {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}
.intro-block-visual {
  background: #232D4B;
  border-radius: 4px;
  padding: 3rem 2.5rem;
  color: #fff;
}
.intro-block-visual h3 {
  color: #E57200;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  margin-bottom: 1.5rem;
}
.stat-list { list-style: none; }
.stat-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #3a4560;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #a8b4c8;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.stat-list li:last-child { border-bottom: none; }
.stat-val { color: #fff; font-weight: bold; white-space: nowrap; }

@media (max-width: 800px) {
  .intro-block { grid-template-columns: 1fr; gap: 2rem; }
  .intro-block.flipped { direction: ltr; }
}

/* --- Testimonial / Quote Block --- */
.quote-block {
  background: #232D4B;
  color: #fff;
  padding: 4rem 0;
}
.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.quote-mark {
  font-size: 5rem;
  line-height: 0.5;
  color: #E57200;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 1.5rem;
}
blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e4ed;
  font-style: italic;
  margin-bottom: 1.5rem;
}
cite {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #7a869a;
  letter-spacing: 0.06em;
  font-style: normal;
}

/* --- Bio / About --- */
.bio-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.bio-sidebar {
  background: #f7f6f3;
  border-radius: 4px;
  padding: 2rem;
  border-top: 4px solid #E57200;
}
.bio-name { font-size: 1.25rem; color: #232D4B; margin-bottom: 0.25rem; }
.bio-title {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1.5rem;
}
.bio-detail-list { list-style: none; }
.bio-detail-list li {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #555;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0ddd8;
  line-height: 1.4;
}
.bio-detail-list li:last-child { border-bottom: none; }
.bio-detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.2rem;
}
.bio-content p {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}
.bio-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

@media (max-width: 800px) {
  .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Services Detail --- */
.service-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e8e5e0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
}
.service-block:last-child { border-bottom: none; }
.service-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E57200;
  font-family: Arial, sans-serif;
  padding-top: 0.3rem;
}
.service-content h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.service-content p {
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}
.service-content ul {
  list-style: none;
  margin-top: 0.75rem;
}
.service-content ul li {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #666;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.service-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #E57200;
}

@media (max-width: 680px) {
  .service-block { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* --- Lien Calculator --- */
.calculator {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 680px;
  box-shadow: 0 4px 24px rgba(35,45,75,0.07);
}
.calculator h3 { margin-bottom: 0.4rem; }
.calc-intro {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.5rem;
}
.form-group select,
.form-group input[type="date"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #232D4B;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.calc-result {
  background: #232D4B;
  color: #fff;
  border-radius: 4px;
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: none;
}
.calc-result.show { display: block; }
.calc-result h4 {
  color: #E57200;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}
.calc-deadline {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.calc-note {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #a8b4c8;
  line-height: 1.6;
}
.calc-warning {
  background: rgba(229, 114, 0, 0.15);
  border-left: 3px solid #E57200;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-radius: 0 3px 3px 0;
}
.calc-warning p {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #f0b060;
  margin: 0;
}
.calc-disclaimer {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: #7a869a;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #3a4560;
  line-height: 1.5;
}

.resource-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .resource-grid { grid-template-columns: 1fr; }
}

.resource-sidebar h3 { margin-bottom: 1rem; }
.resource-sidebar p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.resource-links { list-style: none; }
.resource-links li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e8e5e0;
}
.resource-links li:last-child { border-bottom: none; }
.resource-links a {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #232D4B;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.resource-links a:hover { color: #E57200; text-decoration: none; }
.resource-links a::before { content: '→'; color: #E57200; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details { list-style: none; }
.contact-details li {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #444;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e5e0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact-details li:last-child { border-bottom: none; }
.contact-icon { color: #E57200; flex-shrink: 0; margin-top: 2px; }

.contact-form-box {
  background: #f7f6f3;
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form-box h3 { margin-bottom: 0.25rem; }
.contact-form-box .form-sub {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn-submit {
  width: 100%;
  background: #232D4B;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: #E57200; }
.form-disclaimer {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

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

/* --- Footer --- */
footer {
  background: #1a2035;
  color: #7a869a;
  padding: 3.5rem 0 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2e3a55;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p { max-width: 280px; line-height: 1.6; }
.footer-nav h4 {
  color: #c8cdd8;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul a { color: #7a869a; }
.footer-nav ul a:hover { color: #E57200; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p { line-height: 1.6; }
.footer-disc {
  max-width: 540px;
  font-size: 0.78rem;
  color: #4a566a;
  line-height: 1.6;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: #232D4B;
  padding: 4rem 0 3.5rem;
}
.page-hero .container { position: relative; }
.page-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E57200;
  font-family: Arial, sans-serif;
  margin-bottom: 0.75rem;
  display: block;
}
.page-hero h1 {
  color: #fff;
  font-size: 2.4rem;
  max-width: 600px;
}
.page-hero p {
  color: #a8b4c8;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  max-width: 520px;
  margin-top: 1rem;
  line-height: 1.65;
}

/* --- Services Dropdown Nav --- */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  color: #7a869a;
  margin-left: 0.15em;
  position: relative;
  top: -1px;
}
.has-dropdown:hover > a::after,
.has-dropdown.open > a::after { color: #E57200; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: #1a2035;
  min-width: 280px;
  padding: 0.5rem 0;
  border-top: 2px solid #E57200;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  list-style: none;
  z-index: 120;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #c8cdd8;
  font-family: Arial, sans-serif;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.dropdown-menu a:hover {
  background: #232D4B;
  color: #E57200;
  border-left-color: #E57200;
  text-decoration: none;
}
.dropdown-header {
  padding: 0.75rem 1.25rem 0.3rem;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a869a;
  border-top: 1px solid #2e3a55;
  margin-top: 0.35rem;
}
.dropdown-menu > li:first-child .dropdown-header,
.dropdown-menu > .dropdown-header:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0.4rem;
}
@media (max-width: 720px) {
  .has-dropdown > a::after { content: ''; }
  .dropdown-menu {
    display: block;
    position: static;
    background: transparent;
    border-top: none;
    box-shadow: none;
    min-width: 0;
    padding: 0.5rem 0 0;
  }
  .dropdown-menu a {
    padding: 0.5rem 1rem;
    border-left: none;
    color: #a8b4c8;
  }
  .dropdown-menu a:hover { background: transparent; border-left: none; }
  .dropdown-header {
    padding: 0.6rem 1rem 0.2rem;
    border-top: none;
  }
  .nav-links li.has-dropdown { padding-bottom: 0.5rem; }
}

/* --- Twin-Pillar Home Hero --- */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem 2rem 2.25rem;
  border-top: 4px solid #E57200;
  box-shadow: 0 6px 24px rgba(35,45,75,0.08);
}
.pillar-card.landlord { border-top-color: #2e8056; }
.pillar-card .pillar-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 0.6rem;
  display: block;
}
.pillar-card.landlord .pillar-eyebrow { color: #2e8056; }
.pillar-card.contractor .pillar-eyebrow { color: #E57200; }
.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.pillar-card p {
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.pillar-card ul {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
}
.pillar-card ul li {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #444;
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
  line-height: 1.55;
}
.pillar-card.landlord ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e8056;
  font-weight: bold;
}
.pillar-card.contractor ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E57200;
  font-weight: bold;
}
.pillar-card .pillar-cta {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #E57200;
  font-weight: bold;
}
.pillar-card.landlord .pillar-cta { color: #2e8056; }
.pillar-card .pillar-cta::after { content: ' →'; }
@media (max-width: 800px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* --- Fees Table (evictions) --- */
.fee-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  min-width: 540px;
}
.fee-table thead th {
  background: #232D4B;
  color: #fff;
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: bold;
}
.fee-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ece8e0;
  color: #444;
  vertical-align: top;
}
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:nth-child(even) td { background: #faf9f6; }
.fee-table td.fee-amt {
  font-weight: bold;
  color: #232D4B;
  white-space: nowrap;
}
.fee-table td.fee-name { font-weight: bold; color: #232D4B; }

/* --- Tiered fee cards --- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}
@media (max-width: 1100px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  padding: 1.75rem 1.75rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: #E57200;
  border-width: 2px;
  box-shadow: 0 8px 28px rgba(229, 114, 0, 0.12);
}
.tier-card .tier-name {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E57200;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.tier-card .tier-price {
  font-family: Georgia, serif;
  font-size: 2.3rem;
  color: #232D4B;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tier-card .tier-unit {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: #777;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}
.tier-card .tier-desc {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.tier-card .tier-tag {
  display: inline-block;
  background: #E57200;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

/* --- Utility --- */
.text-orange { color: #E57200; }
.text-blue { color: #232D4B; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }
