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

:root {
  --gold: #af8b2f;
  --gold-light: #c9a84c;
  --dark: #111111;
  --dark-overlay: rgba(0,0,0,0.6);
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #222222;
  --text-muted: #666666;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Fira Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

a { color: inherit; text-decoration: none; }

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

/* ── Nav ─────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .cta-btn {
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-links .cta-btn:hover { background: var(--gold-light); color: var(--white); }
.nav-links .cta-btn:active,
.nav-links .cta-btn:visited { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-content h1 span { color: var(--gold); }

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--dark); }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Section Base ────────────────────────────────────────────── */
section { padding: 5rem 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title.white { color: var(--white); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── About ───────────────────────────────────────────────────── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--gold);
  z-index: 0;
  border-radius: 2px;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-position: top;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Services ────────────────────────────────────────────────── */
#services { background: var(--gray-light); padding: 0; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-img {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block:hover .service-img img { transform: scale(1.04); }

.service-content {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.service-block:nth-child(even) .service-content { background: var(--dark); }
.service-block:nth-child(even) .section-title { color: var(--white); }
.service-block:nth-child(even) .service-content p { color: rgba(255,255,255,0.7); }

.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Testimonials ────────────────────────────────────────────── */
#testimonials {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.testimonials-header { margin-bottom: 3rem; }
.testimonials-header .divider { margin: 0 auto 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(175,139,47,0.3);
  padding: 2rem;
  border-radius: 2px;
  text-align: left;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: var(--gold); }

.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.author-role {
  font-size: 0.75rem;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ── Contact ─────────────────────────────────────────────────── */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; fill: var(--white); }

.contact-item-text .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item-text a,
.contact-item-text span {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-item-text a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.2s;
}

.social-link:hover { background: var(--gold); color: var(--white); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem 1.2rem;
  border-radius: 2px;
  font-size: 0.9rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-logo {
  height: 40px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

.footer-col address a { transition: color 0.2s; }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: var(--gold); }

/* ── About Page ──────────────────────────────────────────────── */
.page-hero {
  height: 340px;
  background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
              url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: var(--nav-height);
}

.page-hero-content { color: var(--white); }
.page-hero-content .section-label { color: var(--gold); }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

.about-full-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-full-img {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-full-img img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-full-img .img-caption {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--dark);
  color: var(--white);
  border-radius: 2px;
}

.about-full-img .img-caption p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.about-full-img .img-caption strong { color: var(--gold); display: block; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.05em; }

.about-full-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.about-full-content h2:first-child { margin-top: 0; }

.about-full-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gray-light);
  border-radius: 0 2px 2px 0;
}

.value-card h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .about-full-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap::before { display: none; }
  .about-full-img { position: static; }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-img { min-height: 280px; }
  .service-content { padding: 3rem 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .about-stats { gap: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: rgba(0,0,0,0.96); padding: 1.5rem 2rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Content + Sidebar layout ────────────────────────────────── */
.content-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .content-sidebar-grid { grid-template-columns: 1fr; }
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.content-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--gray-light);
  border-radius: 2px;
  overflow: hidden;
}

.sidebar-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

.sidebar-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  padding: 1rem 1rem 0.25rem;
  color: var(--dark);
}

.sidebar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0 1rem;
  line-height: 1.5;
}

.sidebar-card .btn { display: block; margin: 0.75rem 1rem 0; }

.sidebar-email {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
  padding: 0.5rem 1rem 1rem;
}

.sidebar-links {
  background: var(--gray-light);
  border-radius: 2px;
  padding: 1.25rem;
}

.sidebar-links h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.sidebar-links ul { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--gray-mid); }
.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text);
  transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--gold); }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: var(--nav-height);
}

/* ── Inline link ─────────────────────────────────────────────── */
.inline-link {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.inline-link:hover { opacity: 0.75; }

/* ── CTA box ─────────────────────────────────────────────────── */
.cta-box {
  background: var(--gray-light);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 2px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
}

.cta-box h3 { font-size: 1.3rem; color: var(--dark); }
.cta-box p { color: var(--text-muted); font-size: 0.9rem; }
.cta-box { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cta-box h3, .cta-box p { flex: 0 0 100%; margin: 0; }

/* ── Resource steps ──────────────────────────────────────────── */
.resource-steps { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }

.resource-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: right;
}

.step-content h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* ── Mortgage Calculator ─────────────────────────────────────── */
.calc-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .calc-layout { grid-template-columns: 1fr; }
}

.calc-form { display: flex; flex-direction: column; gap: 0; }

.calc-field { margin-bottom: 1.25rem; }

.calc-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.calc-field input:focus,
.calc-field select:focus { border-color: var(--gold); }

.input-prefix, .input-suffix {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.input-prefix:focus-within,
.input-suffix:focus-within { border-color: var(--gold); }

.input-prefix span, .input-suffix span {
  background: var(--gray-light);
  padding: 0.7rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  border: none;
}

.input-prefix input, .input-suffix input {
  border: none !important;
  flex: 1;
  padding: 0.7rem 0.9rem;
}

.input-row { display: flex; gap: 0.75rem; }
.input-row .input-prefix, .input-row .input-suffix { flex: 1; }

.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.calc-payment-highlight {
  background: var(--dark);
  color: white;
  padding: 1.5rem;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.payment-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.payment-amount { font-family: 'Oswald', sans-serif; font-size: 2.5rem; color: var(--gold); }

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.result-item {
  background: var(--gray-light);
  padding: 0.9rem 1rem;
  border-radius: 2px;
}

.result-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.result-value { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--dark); }

.calc-chart-wrap { max-width: 300px; margin: 0 auto 1.5rem; }

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--gray-mid);
  padding-top: 1rem;
}

/* ── Home Evaluation Form ────────────────────────────────────── */
.eval-form { display: flex; flex-direction: column; }

.form-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.eval-form select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  margin-bottom: 0;
}

.eval-form select:focus { border-color: var(--gold); }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
}

.blog-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.45rem 1rem;
  border: 2px solid var(--gray-mid);
  background: transparent;
  border-radius: 2px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.blog-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}

.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }

.blog-card-cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.blog-card-body { padding: 1.25rem; }

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.75rem;
}

.blog-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card-body h3 a { color: var(--dark); transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── Blog Post Page ──────────────────────────────────────────── */
.post-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.post-price-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.post-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.post-body p { margin-bottom: 1.2rem; }
.post-body strong { color: var(--text); }

.post-cta {
  background: var(--gray-light);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 2px 2px 0;
  margin-top: 2.5rem;
}

.post-cta h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.post-cta p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ── Nav active state ────────────────────────────────────────── */
.nav-links a.active { color: var(--gold); }
