
:root {
  --accent: #e85d54;
  --accent-dark: #c84840;
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --border: #e8e8e8;
  --bg-alt: #f5f7fa;
  --max: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--text); background: #fff;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 600; }
.brand .logo-mark {
  background: var(--accent); color: #fff; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; border-radius: 2px;
}
.brand-text { font-size: 1.1rem; letter-spacing: 0.5px; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
nav a {
  text-decoration: none; color: var(--text); padding: 10px 16px; border-radius: 4px;
  font-size: 0.92rem; transition: color .15s; letter-spacing: 0.3px;
}
nav a:hover { color: var(--accent); }
nav a.active { color: var(--accent); font-weight: 600; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 4px 8px; }

/* Page hero (photo with overlay) */
.page-hero {
  background-size: cover; background-position: center;
  color: #fff; padding: 140px 0; text-align: left;
}
.page-hero h1 {
  font-size: 4rem; font-weight: 300; font-style: italic; letter-spacing: 2px;
  margin: 0; text-transform: uppercase; text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.page-hero.home h1 { font-size: 5rem; font-weight: 700; font-style: normal; letter-spacing: 4px; }
.page-hero.home .lead { font-size: 1.6rem; font-weight: 300; margin: 8px 0 28px; }
.page-hero .eyebrow {
  display: inline-block; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 12px;
}
.hero-cta {
  display: inline-block; background: var(--accent); color: #fff; padding: 14px 32px;
  text-decoration: none; font-weight: 600; border-radius: 2px; transition: background .15s;
  letter-spacing: 1px;
}
.hero-cta:hover { background: var(--accent-dark); }

/* Sections */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }
h2 { font-size: 2rem; margin: 0 0 24px; font-weight: 600; }
h2.section-title { text-align: center; text-transform: uppercase; letter-spacing: 2px; }
h3 { font-size: 1.25rem; margin: 0 0 14px; font-weight: 600; }
.subtitle { color: var(--muted); margin: -16px 0 40px; text-align: center; font-size: 1.05rem; }
p { margin: 0 0 14px; }

/* Two-col image+text rows (alternating) */
.row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin: 60px 0;
}
.row.reverse { direction: rtl; }
.row.reverse > * { direction: ltr; }
.row img { max-width: 100%; height: auto; display: block; }
.row .text h2 { color: var(--accent); }

/* Icon cards (4-up for services) */
.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 60px; }
.icon-card { display: flex; gap: 20px; align-items: flex-start; }
.icon-card .icon { flex-shrink: 0; width: 72px; height: auto; }
.icon-card h3 { color: var(--accent); margin-top: 0; }

/* Lists */
ul.bullets { padding-left: 0; list-style: none; margin: 0 0 14px; }
ul.bullets li {
  padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--border);
}
ul.bullets li:last-child { border-bottom: none; }
ul.bullets li::before {
  content: "›"; position: absolute; left: 4px; top: 8px;
  color: var(--accent); font-weight: 700; font-size: 1.4rem;
}

/* Buttons */
.btn {
  display: inline-block; background: var(--accent); color: #fff; padding: 12px 32px;
  text-decoration: none; font-weight: 600; border-radius: 2px; transition: background .15s;
  letter-spacing: 1px; font-size: 0.95rem;
}
.btn:hover { background: var(--accent-dark); }

/* Contact CTA band */
.contact-band {
  background: var(--bg-alt); padding: 50px 0;
}
.contact-band .container {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.contact-band h2 { margin: 0; font-size: 1.6rem; }
.contact-band p { margin: 4px 0 0; color: var(--muted); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form .form-row { margin-bottom: 16px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 2px; font: inherit;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { background: var(--accent); color: #fff; border: none; padding: 12px 36px;
  border-radius: 2px; font: inherit; font-weight: 600; cursor: pointer; letter-spacing: 1px;
}
.contact-form button:hover { background: var(--accent-dark); }
.address { font-style: normal; line-height: 1.9; color: var(--muted); }
.address strong { color: var(--text); display: block; margin-bottom: 8px; font-size: 1.1rem; }
.address a { color: var(--accent); text-decoration: none; }

/* Footer */
footer { background: #fff; border-top: 1px solid var(--border); padding: 30px 0; margin-top: 80px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
footer p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.contact-line a { color: var(--accent); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .page-hero { padding: 80px 0; }
  .page-hero h1 { font-size: 2.4rem; }
  .page-hero.home h1 { font-size: 2.8rem; letter-spacing: 2px; }
  .page-hero.home .lead { font-size: 1.1rem; }
  .row, .row.reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
  .icon-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  nav { position: absolute; top: 72px; left: 0; right: 0; background: #fff;
        border-bottom: 1px solid var(--border); display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 12px 24px; gap: 0; }
  nav a { display: block; padding: 12px 0; }
}
