/* Components — buttons, cards, modals, forms */

/* --- Area Hub Cards (service-areas page) --- */
.area-hub-card {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1rem 1.25rem;
  background: var(--ash); border-left: 2px solid var(--brass);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.area-hub-card:hover { background: var(--charcoal); border-color: var(--brass-lt); }
.area-hub-name { font-size: 0.9rem; color: var(--cream); font-weight: 500; letter-spacing: 0.02em; }
.area-hub-zip { font-size: 0.72rem; color: var(--stone); letter-spacing: 0.08em; }

/* --- Author Bio Box (E-E-A-T) --- */
.author-bio { max-width: 800px; margin: 3rem auto 0; padding: 0 1.5rem; }
.author-bio-inner { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--ash); padding: 2rem; border-left: 3px solid var(--brass); }
.author-bio-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio-name { font-size: 0.85rem; color: var(--cream); margin-bottom: 0.5rem; }
.author-bio-name strong { color: var(--white); }
.author-bio-desc { font-size: 0.82rem; color: var(--stone); line-height: 1.75; margin-bottom: 0.75rem; }
.author-bio-link { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); text-decoration: none; }
.author-bio-link:hover { color: var(--brass-lt); }
@media (max-width: 600px) {
  .author-bio-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-bio-photo { width: 64px; height: 64px; }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block; padding: 1rem 2.4rem;
  background: var(--brass); color: var(--ink);
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  transition: all 0.3s; margin-top: 2rem;
}
.btn-primary:hover { background: var(--brass-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); border-bottom: 1px solid rgba(245,240,232,0.35);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--brass); border-color: var(--brass); }

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s;
}
.floating-cta:hover {
  background: var(--brass-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.btn-submit {
  display: block; width: 100%; padding: 1rem;
  background: var(--brass); color: var(--ink);
  border: none; cursor: pointer;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  transition: background 0.3s; margin-top: 1rem;
}
.btn-submit:hover { background: var(--brass-lt); }

/* --- Service cards --- */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.service-card { background: var(--ash); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: background 0.4s; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { background: #2f2d2a; }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--serif); font-size: 0.78rem; color: var(--brass); opacity: 0.55; margin-bottom: 2rem; }
.service-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.service-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.8; }

/* --- Area cards --- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.area-card { background: var(--ash); padding: 2.5rem; text-align: center; transition: background 0.3s; }
.area-card:hover { background: #2f2d2a; }
.area-card a { display: block; text-decoration: none; }
.area-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.area-card .zip-code { font-size: 0.82rem; color: var(--brass); letter-spacing: 0.1em; }
.area-card:hover h3 { color: var(--brass-lt); }

/* --- Pricing cards --- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 4rem; }
.pricing-card { background: var(--ash); padding: 2.5rem; border-left: 3px solid var(--brass); }
.pricing-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.pricing-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.8; margin-bottom: 1rem; }
.pricing-range { font-size: 1rem; color: var(--brass-lt); font-weight: 500; }

/* --- Why cards --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 4rem; }
.why-card { background: var(--ash); padding: 2.8rem; border-top: 2px solid var(--brass); }
.why-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.why-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.8; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid rgba(138,130,120,0.18); padding: 2rem 0; }
.faq-item h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; font-weight: 600; }
.faq-item p { font-size: 0.92rem; color: var(--stone); line-height: 1.85; max-width: 720px; }

/* --- Blog cards ("From the Blog" sections) --- */
.related-reading { padding: 5rem 4rem; background: var(--charcoal); }
.related-reading .section-inner { max-width: 1200px; margin: 0 auto; }
.related-reading h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 2rem; }
.blog-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.blog-card { background: var(--ash); padding: 2rem; }
.blog-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.8rem; }
.blog-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.75; margin-bottom: 1rem; }
.read-more { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); text-decoration: none; }
.read-more:hover { color: var(--brass-lt); }

/* --- Contact modal --- */
.contact-modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(15,14,12,0.92); align-items: center; justify-content: center;
}
.contact-modal.active { display: flex; }
.contact-modal-inner {
  background: var(--charcoal); padding: 3rem; max-width: 540px; width: 90%;
  position: relative; max-height: 90vh; overflow-y: auto;
  border-top: 2px solid var(--brass);
}
.contact-modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: var(--stone);
  font-size: 1.8rem; cursor: pointer; transition: color 0.3s;
}
.contact-modal-close:hover { color: var(--cream); }
.contact-modal h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
.modal-sub { font-size: 0.88rem; color: var(--stone); margin-bottom: 2rem; }

/* Form fields */
.contact-modal label {
  display: block; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 0.4rem; margin-top: 1.2rem;
}
.contact-modal input,
.contact-modal select,
.contact-modal textarea {
  width: 100%; padding: 0.75rem 1rem; background: var(--ink); border: 1px solid rgba(138,130,120,0.2);
  color: var(--cream); font-family: var(--sans); font-size: 0.9rem;
  margin-bottom: 1.2rem; border-radius: 0; -webkit-appearance: none;
}
.contact-modal select { cursor: pointer; }
.contact-modal select option { background: var(--ink); color: var(--cream); }
.contact-modal input:focus,
.contact-modal select:focus,
.contact-modal textarea:focus { outline: none; border-color: var(--brass); }
.contact-modal .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp-field { position: absolute; left: -9999px; }

/* --- Tags --- */
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.tag { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.75rem; border: 1px solid rgba(196,154,60,0.3); color: var(--brass); }

/* --- Home type cards (historic-restoration) --- */
.home-types { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.home-card { background: var(--ash); padding: 3rem 2.5rem; border-top: 2px solid var(--brass); }
.home-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.home-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.8; }
.home-card ul { list-style: none; margin-top: 1.2rem; }
.home-card ul li { font-size: 0.84rem; color: var(--stone); padding: 0.35rem 0; border-bottom: 1px solid rgba(138,130,120,0.1); display: flex; align-items: center; gap: 0.5rem; }
.home-card ul li::before { content: ''; width: 4px; height: 4px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }

/* --- Photo grid (service pages) --- */
.photo-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto; gap: 2px; margin-top: 4rem; }
.photo-card { position: relative; overflow: hidden; }
.photo-card.featured { grid-row: span 2; }
.photo-card img { height: 100%; min-height: 280px; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); filter: brightness(0.82); }
.photo-card.featured img { min-height: 600px; }
.photo-card:hover img { transform: scale(1.04); filter: brightness(0.62); }
.photo-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(15,14,12,0.9) 0%, transparent 100%); }
.photo-loc { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.3rem; }
.photo-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.photo-card.featured h3 { font-size: 1.5rem; }

/* --- Quote band (service pages) --- */
.quote-band { background: var(--brass); padding: 4rem; text-align: center; }
.quote-band blockquote { font-family: var(--serif2); font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-style: italic; color: var(--ink); max-width: 820px; margin: 0 auto; line-height: 1.8; }
.quote-band cite { display: block; margin-top: 1rem; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-style: normal; color: rgba(15,14,12,0.5); }

/* --- Cost band (kitchen/bathroom) --- */
.cost-band { background: var(--brass); padding: 4rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; }
.cost-band .cost-range { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--ink); line-height: 1; }
.cost-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(15,14,12,0.55); margin-top: 0.5rem; }
.cost-desc { font-size: 0.84rem; color: rgba(15,14,12,0.65); margin-top: 0.4rem; line-height: 1.5; }

/* --- Stat band (lighting-design) --- */
.stat-band { background: var(--brass); padding: 4rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-band .stat-num { color: var(--ink); }
.stat-band .stat-label { color: rgba(15,14,12,0.55); }

/* --- Difference section (lighting-design) --- */
.diff-section { background: var(--charcoal); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 4rem; }
.diff-card { background: var(--ash); padding: 3.5rem; }
.diff-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.diff-card h3 em { font-style: italic; color: var(--brass-lt); font-weight: 400; }
.diff-card p { font-size: 0.92rem; color: var(--stone); line-height: 1.85; }

/* --- FAQ section background --- */
.faq-section { background: var(--charcoal); }

/* --- Architecture cards (area pages) --- */
.arch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.arch-card { background: var(--ash); padding: 3rem 2.5rem; border-top: 2px solid var(--brass); }
.arch-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.arch-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.8; }
.service-link { display: inline-block; margin-top: 1rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); text-decoration: none; }

/* --- Blog/Case study article layout --- */
.post-hero { position: relative; height: 80vh; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.post-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(170deg, rgba(15,14,12,0.25) 0%, rgba(15,14,12,0.6) 50%, rgba(15,14,12,0.97) 100%); }
.post-hero-content { position: relative; z-index: 2; padding: 0 4rem 6rem; max-width: 860px; }
.post-tag { display: inline-block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); background: var(--brass); padding: 0.3rem 0.8rem; margin-bottom: 1.4rem; text-decoration: none; }
.post-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.08; color: #ffffff; margin-bottom: 1.2rem; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.post-hero h1 em { font-style: italic; font-weight: 400; color: var(--brass-lt); }
.post-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.post-meta-item { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
.post-meta-item span { color: var(--cream-dk); }
.post-meta-div { width: 1px; height: 0.8rem; background: var(--stone); opacity: 0.35; }
.breadcrumb-sep { color: var(--stone); opacity: 0.4; }

.article-wrap { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
@media(max-width:768px) { .article-wrap { padding: 0 1.5rem; } }

.post-lead { padding: 6rem 0 4rem; display: grid; grid-template-columns: 1fr 340px; gap: 6rem; align-items: start; }
@media(max-width:960px) { .post-lead { grid-template-columns: 1fr; gap: 3rem; } }
.post-lead-text p { font-size: 1.05rem; color: var(--cream-dk); line-height: 1.95; margin-bottom: 1.4rem; }
.post-lead-text p strong { color: var(--white); font-weight: 500; }
.project-specs { background: var(--ash); border-top: 2px solid var(--brass); padding: 2.5rem; position: sticky; top: 100px; }
.spec-title { font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.8rem; }
.spec-row { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(138,130,120,0.12); }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.spec-value { font-size: 0.88rem; color: var(--cream); }

.post-section { padding: 5rem 0; border-top: 1px solid rgba(138,130,120,0.12); }
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; font-weight: 400; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 2rem; }
.section-title em { font-style: italic; font-weight: 400; color: var(--cream-dk); }
.prose { font-size: 0.98rem; color: var(--stone); line-height: 1.95; max-width: 720px; }
.prose + .prose { margin-top: 1.2rem; }
.prose strong { color: var(--cream-dk); font-weight: 500; }

.full-image { margin: 3rem 0; position: relative; overflow: hidden; }
.full-image img { height: 580px; filter: brightness(0.9); transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.full-image:hover img { transform: scale(1.02); filter: brightness(0.95); }
.image-caption { padding: 1rem 0 0; font-size: 0.72rem; letter-spacing: 0.12em; color: var(--stone); font-style: italic; display: flex; align-items: center; gap: 0.6rem; }
.image-caption::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--brass); flex-shrink: 0; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 3rem 0; }
@media(max-width:640px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { position: relative; overflow: hidden; }
.compare-card img { height: 460px; filter: brightness(0.85); transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.compare-card:hover img { transform: scale(1.03); filter: brightness(0.95); }
.compare-label { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; background: var(--brass); color: var(--ink); padding: 0.3rem 0.75rem; font-weight: 500; z-index: 2; }
.compare-label.after { background: var(--ink); color: var(--brass); border: 1px solid var(--brass); }

.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 3rem 0; }
@media(max-width:768px) { .three-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .three-grid { grid-template-columns: 1fr; } }
.three-grid .compare-card img { height: 320px; }

.detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2px; margin: 3rem 0; align-items: start; }
@media(max-width:768px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-grid .compare-card img { height: 500px; }

.pullquote { margin: 4rem 0; padding: 3.5rem 4rem; background: var(--ash); border-left: 3px solid var(--brass); position: relative; }
.pullquote::before { content: '\201C'; font-family: var(--serif); font-size: 8rem; color: var(--brass); opacity: 0.12; position: absolute; top: -1rem; left: 2rem; line-height: 1; }
.pullquote blockquote { font-family: var(--serif2); font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-style: italic; color: var(--cream); line-height: 1.75; font-weight: 300; position: relative; z-index: 1; }
.pullquote cite { display: block; margin-top: 1.2rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-style: normal; }
.pullquote cite span { color: var(--brass); }

.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 3rem 0; }
@media(max-width:768px) { .cost-grid { grid-template-columns: 1fr; } }
.cost-card { background: var(--ash); padding: 2.5rem 2rem; }
.cost-tier { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem; }
.cost-range { font-family: var(--serif); font-size: 1.8rem; color: var(--brass-lt); line-height: 1; margin-bottom: 1.2rem; }
.cost-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.cost-card ul { list-style: none; padding: 0; }
.cost-card li { font-size: 0.83rem; color: var(--stone); line-height: 1.8; padding: 0.4rem 0; }
.cost-card li::before { content: '• '; color: var(--brass); margin-right: 0.5rem; }

.breakdown-table { width: 100%; margin: 3rem 0; border-collapse: collapse; }
.breakdown-table th { background: var(--ash); padding: 1.2rem 1.5rem; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); text-align: left; border-bottom: 2px solid var(--brass); }
.breakdown-table td { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(138,130,120,0.12); font-size: 0.9rem; color: var(--cream-dk); }
.breakdown-table tr:hover { background: rgba(138,130,120,0.05); }
.breakdown-table .component { color: var(--white); font-weight: 500; }
.breakdown-table .range { color: var(--brass); }

.related-section { padding: 5rem 0; border-top: 1px solid rgba(138,130,120,0.12); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 3rem; }
@media(max-width:768px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { background: var(--ash); padding: 2.5rem; transition: background 0.3s; }
.related-card:hover { background: #2f2d2a; }
.related-tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.8rem; }
.related-card h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--white); line-height: 1.3; margin-bottom: 0.7rem; }
.related-card p { font-size: 0.83rem; color: var(--stone); line-height: 1.75; margin-bottom: 1.2rem; }
.related-link { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.3s; text-decoration: none; }
.related-card:hover .related-link { gap: 0.7rem; }

/* Reviews section */
.reviews-section { background: var(--charcoal); text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0 2rem; text-align: left; }
.review-card { background: var(--ash); border: 1px solid rgba(196,154,60,0.2); border-radius: 4px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { color: var(--brass); font-size: 1rem; letter-spacing: 0.1em; }
.review-text { font-family: var(--serif2); font-size: 1rem; font-style: italic; color: var(--cream); line-height: 1.7; margin: 0; font-weight: 300; }
.review-meta { display: flex; flex-direction: column; gap: 0.25rem; margin-top: auto; }
.review-name { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dk); font-weight: 600; }
.review-project { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }
.reviews-cta { margin-top: 1.5rem; }
.reviews-link { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); text-decoration: none; border-bottom: 1px solid rgba(196,154,60,0.4); padding-bottom: 2px; transition: color 0.2s; }
.reviews-link:hover { color: var(--brass-lt); }

/* Hero trust badge */
.hero-trust { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.2rem; }
.hero-trust-stars { color: var(--brass); font-size: 0.9rem; letter-spacing: 0.1em; }
.hero-trust-text { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }

/* About page */
.about-page-section { background: var(--charcoal); }
.about-photo-col { display: flex; align-items: flex-start; justify-content: center; }
.about-headshot { width: 100%; max-width: 420px; border-radius: 4px; filter: grayscale(20%); }
.about-services-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.about-services-list li { font-size: 0.85rem; color: var(--cream-dk); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.about-services-list li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
