* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #E5E9ED;
  min-height: 100vh;
  color: #4e4537;
  line-height: 1.6;
}
a { text-decoration: none; }

.page-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 50px;
}
.site-container {
  width: 820px;
  max-width: 95%;
  background: #FBF5ED;
  border: 1px solid #D1C9BC;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.site-header {
  text-align: center;
  padding: 30px 20px 20px;
  border-bottom: 1px solid #D1C9BC;
  background: linear-gradient(to bottom, #FBF5ED, #f8f2e8);
}
.site-header .firm-name {
  font-family: 'Marcellus', serif;
  font-size: 32px;
  font-weight: normal;
  color: #4e4537;
  letter-spacing: 1.2px;
}
.header-divider { width: 40px; height: 2px; background: #b8a068; margin: 6px auto 8px; }
.site-header .firm-sub {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: normal;
  color: #8a7a5c;
  letter-spacing: 2px;
}
.firm-sub-loc { margin-top: 2px; font-size: 11px; letter-spacing: 1px; }

.hero { display: flex; flex-wrap: wrap; gap: 30px; padding: 30px 30px 20px; align-items: stretch; }
.hero-left { flex: 0 0 160px; min-width: 120px; display: flex; flex-direction: column; gap: 12px; }
.hero-left .brad-photo {
  width: 100%; border-radius: 12px; overflow: hidden;
  border: 1px solid #D1C9BC; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.hero-left .brad-photo:hover { transform: scale(1.02); }
.hero-left .brad-photo img {
  display: block; width: 100%; height: auto; object-fit: cover;
}
.hero-left .building-photo {
  flex: 1;
  width: 100%; border-radius: 12px; overflow: hidden;
  border: 1px solid #D1C9BC; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.hero-left .building-photo img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.hero-right {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-right h1 {
  font-family: Georgia, serif; font-size: 15px; font-weight: 400;
  color: #3d3529; line-height: 1.2; margin-bottom: 10px;
}
.hero-right h1 .highlight { color: #b8a068; font-weight: 500; }
.hero-right .sub-headline { font-size: 14px; color: #5f5342; margin-bottom: 12px; }

.hero-right .ratings {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  color: #8a7a5c; margin-bottom: 14px; flex-wrap: wrap;
}
.hero-right .ratings .review-link {
  color: #8a7a5c; text-decoration: underline; font-size: 13px; transition: color 0.2s;
}
.hero-right .ratings .review-link:hover { color: #b8a068; }

.hero-right .cta-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.btn {
  display: inline-block; padding: 10px 24px; border-radius: 4px;
  font-family: Georgia, serif; font-size: 15px; font-weight: 600;
  text-align: center; cursor: pointer; transition: all 0.2s ease;
  border: 1px solid #4e4537;
}
.btn-primary { background: #4e4537; color: #fff; }
.btn-primary:hover { background: #6b5f4c; }
.btn-secondary { background: transparent; color: #4e4537; border: 1px solid #4e4537; }
.btn-secondary:hover { background: #f8f2e8; }
.btn:active { transform: scale(0.98); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px 4px 4px;
  border-radius: 40px;
  border: 1px solid #cfc4a8;
  background: transparent;
  font-family: Georgia, serif;
  font-size: 13px;
  color: #4e4537;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-icon:hover {
  border-color: #b8a068;
  background: #f8f2e8;
}
.btn-icon .icon-badge {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f8f2e8;
  border: 1px solid #b8a068;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon .icon-badge svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #4e4537;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-bottom-info { margin-top: 0; }
.hero-bottom-info .guarantee {
  font-size: 13px; color: #8a7a5c; background: #f2ece0; padding: 12px 18px;
  border-radius: 12px; display: inline-block; border-left: 3px solid #b8a068;
}
.hero-bottom-info .guarantee p { margin-bottom: 8px; }
.hero-bottom-info .guarantee p:last-child { margin-bottom: 0; }

.main-content { padding: 24px 30px; border-top: 1px solid #D1C9BC; }
.body-block { margin-bottom: 24px; }
.body-block h2 {
  font-family: Georgia, serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #8a7a5c;
  margin-bottom: 12px;
}
.body-block p { font-size: 15px; font-weight: 400; line-height: 1.7; color: #4e4537; margin-bottom: 10px; }
.body-block ul { list-style: none; padding: 0; }
.body-block ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #4e4537;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.body-block ul li::before { content: "-"; color: #b8a068; font-weight: bold; position: absolute; left: 0; }

.reviews-section { margin: 20px 0 10px; border-top: 1px solid #e8dfc8; padding-top: 18px; }
.reviews-section h3 {
  font-family: Georgia, serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #8a7a5c;
  text-align: center; margin-bottom: 4px;
}
.reviews-section .reviews-sub { font-size: 12px; color: #8a7a5c; text-align: center; margin-bottom: 16px; }
.review-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.review-card {
  flex: 1 1 calc(50% - 7px); min-width: 220px; background: #faf7f0;
  border: 1px solid #e8dfc8; border-radius: 12px; padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.review-avatar {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: #4e4537; color: #FBF5ED; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.review-body { flex: 1; }
.review-name { font-size: 13px; font-weight: 600; color: #3d3529; margin-bottom: 2px; }
.review-stars { color: #b8a068; font-size: 11px; letter-spacing: 1px; margin-bottom: 6px; }
.review-quote { font-size: 13px; color: #6b5f4c; line-height: 1.6; font-style: italic; }

.site-footer { background: #FBF5ED; border-top: 1px solid #D1C9BC; }
.footer-case-types {
  padding: 20px 24px 12px;
  text-align: center;
}
.footer-case-types .label {
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  color: #8a7a5c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.case-type-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.case-type-row:last-child {
  margin-bottom: 0;
}
.case-type-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Georgia, serif;
  font-size: 12px;
  color: #4e4537;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 20px;
  white-space: nowrap;
}
.case-type-item:hover {
  color: #b8a068;
  background: #f8f2e8;
}
.case-type-item svg {
  width: 20px;
  height: 20px;
}

.footer-nav {
  padding: 12px 20px 18px;
  text-align: center;
  font-size: 12px;
  color: #8a7a5c;
  border-top: 1px solid #f2ece0;
}
.footer-nav p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}
.footer-nav a {
  font-family: Georgia, serif;
  color: #8a7a5c;
  text-decoration: none;
}
.footer-nav a:hover {
  color: #4e4537;
}
.footer-nav .divider {
  color: #D1C9BC;
  display: inline-block; 
}

.disclaimer {
  border-top: 1px solid #D1C9BC; padding: 14px 20px; background: #faf7f0;
  font-size: 10px; color: #8a7a5c; line-height: 1.6; text-align: center;
}
.disclaimer p { margin-bottom: 4px; }
.disclaimer p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .hero { flex-direction: column; padding: 20px; }
  .hero-left { flex: 0 0 auto; max-width: 160px; margin: 0 auto; }
  .hero-left .building-photo { display: none; }
  .hero-right { justify-content: flex-start; gap: 14px; }
  .hero-right h1 { font-size: 15px; }
  .hero-right .sub-headline { font-size: 14px; }
  .main-content { padding: 20px; }
  .review-card { flex: 1 1 100%; }
  .case-type-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-header .firm-name { font-size: 26px; }
  .hero-right h1 { font-size: 15px; }
  .hero-right .sub-headline { font-size: 13px; }
  .hero-right .cta-group { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .cta-group .btn-icon { width: 100%; }
  .footer-nav .divider { display: none; }
  .footer-nav p { gap: 12px 18px; }
}

.seo-keyword {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8a7a5c;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.disclaimer-line {
    text-align: center;
    padding: 16px 0 24px 0;
    border-top: 1px solid #D1C9BC;
}
.disclaimer-line p {
    margin: 4px 0;
    font-size: 0.85em;
    font-weight: normal;
    color: #8a7d6a;
}
.disclaimer-line a {
    margin: 4px 0;
    color: #8a7d6a;
    text-decoration: underline;
}

/* --- ASK BRAD BLOCK (STANDARDIZED UNIFORM TYPOGRAPHY) --- */
.ask-brad-block {
    margin: 20px 0 30px 0;
    text-align: left;
}
.ask-brad-block p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #4e4537;
    margin: 0 0 14px 0;
    text-align: left;
}
.ask-brad-block .ask-brad-closer {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #4e4537;
    margin: 12px 0 0 0;
}
.ask-brad-btn {
    padding: 8px 26px;
    background: transparent;
    color: #4e4537;
    border: 1px solid #b8a068;
    border-radius: 20px;
    font-size: 14px;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.ask-brad-btn:hover {
    background: #4e4537;
    color: #fbf8f2;
    border-color: #4e4537;
}