/* =========================================================
   Website Landlord — Base Stylesheet
   Mobile-first, no framework, no external dependencies.
   ========================================================= */

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

:root {
  --primary:     #1a3c6e;
  --primary-dark:#0f2545;
  --accent:      #e85d26;
  --accent-dark: #c44a1a;
  --text:        #1a1a1a;
  --muted:       #5a6474;
  --bg:          #ffffff;
  --light:       #f5f7fa;
  --border:      #dde2ea;
  --success:     #1a7f47;
  --font:        system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-w:       1100px;
  --radius:      6px;
  --shadow:      0 2px 12px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  font-size: 1rem;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 5vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 1.9rem); }
h3 { font-size: 1.1rem; }
p  { margin-bottom: 0.75rem; }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

/* --- Buttons --- */
.btn-phone {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-phone:hover { background: var(--accent-dark); text-decoration: none; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--accent-dark); }

/* --- Header --- */
.site-header {
  background: var(--primary-dark);
  color: #fff;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-niche    { font-weight: 700; font-size: 1.1rem; color: #fff; }
.brand-location { font-size: 0.8rem; color: #a8c0e0; }

.header-phone {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
.header-phone:hover { background: var(--accent-dark); text-decoration: none; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 3rem 0;
}

.hero-content {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 420px;
  }
}

.hero h1 { color: #fff; margin-bottom: 0.75rem; }

.hero-tagline {
  font-size: 1.15rem;
  color: #c8d8f0;
  margin-bottom: 1.25rem;
}

.hero-trust {
  list-style: none;
  margin-bottom: 1.75rem;
}
.hero-trust li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #d8e8f8;
}

.response-time {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #a8c8e8;
}

/* --- Lead Form --- */
.hero-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-form h2 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.field textarea { resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.form-success {
  text-align: center;
  padding: 1.5rem;
  color: var(--success);
  font-weight: 600;
  font-size: 1.05rem;
}

/* --- Services --- */
.services {
  padding: 4rem 0;
  background: var(--bg);
}

.services h2 { margin-bottom: 0.5rem; }
.section-sub  { color: var(--muted); margin-bottom: 2.5rem; }

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.15s;
}
.service-card:hover { box-shadow: var(--shadow); }

.service-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  margin-bottom: 0.4rem;
  color: var(--primary);
}
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

/* --- FAQ --- */
.faq {
  padding: 4rem 0;
  background: var(--light);
}
.faq h2 { margin-bottom: 2rem; }

.faq-list { margin-bottom: 2.5rem; }

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }

.faq-item p {
  padding: 1rem 1.25rem;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.97rem;
}

.faq-cta {
  text-align: center;
  padding-top: 1rem;
}
.faq-cta p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--primary-dark);
  color: #c8d8f0;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.site-footer h3 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.site-footer ul { list-style: none; }
.site-footer ul li {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #a8c0e0;
}

.nap-city   { font-size: 0.9rem; }
.nap-phone  { color: var(--accent); font-weight: 700; font-size: 1rem; }
.nap-phone:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #7a94b4;
}
