/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F2EA;
  --cream-alt: #EFE6D8;
  --white: #FFFFFF;
  --teal: #0E3A4A;
  --teal-light: #155264;
  --orange: #E8743A;
  --orange-dark: #D2602A;
  --rose: #E8AFAE;
  --charcoal: #20231F;
  --text: #5C655F;
  --line: rgba(14,51,47,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--charcoal);
}

a { color: inherit; }

img { max-width: 100%; }

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,242,234,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 76px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo em { font-style: italic; color: var(--orange); }

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

.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-phone {
  font-weight: 600;
  color: var(--teal) !important;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.nav-toggle-input { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.25s;
}

/* ============ PAGE HERO (About / Services / Contact banners) ============ */
.page-hero {
  padding: 64px 40px;
  background: var(--teal);
  text-align: center;
}

.page-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}

.page-hero h1 em { font-style: italic; color: var(--orange); font-weight: 500; }

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

/* ============ HOME HERO ============ */
.home-hero {
  padding: 80px 40px;
  background: var(--teal);
}

.home-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.home-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.home-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

.home-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.78);
}

.home-hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.home-hero .btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quick quote card (hero) */
.hero-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 24px 48px -28px rgba(14,51,47,0.22);
}

.hero-quote h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-quote-sub {
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.hero-quote-form { display: flex; flex-direction: column; gap: 14px; }
.hero-quote-form .form-row { gap: 14px; }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 34px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--orange); background: var(--white); }

/* ============ SECTIONS ============ */
section { padding: 90px 40px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--orange); font-weight: 500; }

.section-sub {
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Deep teal accent sections */
.bg-alt {
  background: var(--teal);
}

.bg-alt h2,
.bg-alt h3,
.bg-alt h4,
.bg-alt h5 { color: var(--white); }

.bg-alt .section-eyebrow { color: var(--rose); }

.bg-alt .section-title em,
.bg-alt h2 em { color: var(--rose); }

.bg-alt .section-sub,
.bg-alt p { color: rgba(255,255,255,0.75); }

.bg-alt .why-number { color: var(--rose); }

.bg-alt .why-callout { background: var(--white); }
.bg-alt .why-callout p { color: var(--charcoal); }
.bg-alt .why-callout-label { color: var(--orange); }
.bg-alt .why-callout-author { color: var(--text); }

.bg-alt .area-pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
}

.bg-alt .area-pill:hover {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}

.bg-alt .area-dot { background: var(--orange); }

/* Decorative divider */
.divider {
  display: flex;
  justify-content: center;
  padding: 0 40px;
}

.divider svg { width: 160px; height: 24px; stroke: var(--teal); opacity: 0.35; }

/* ============ SERVICE CARDS (photo + content) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -28px rgba(14,51,47,0.3);
}

.service-photo {
  height: 180px;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.service-card:hover .service-photo img { transform: scale(1.06); }

.service-card-body { padding: 32px; }

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-tag {
  display: inline-block;
  background: var(--cream-alt);
  color: var(--teal);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-points { display: flex; flex-direction: column; gap: 32px; }

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--orange);
  min-width: 40px;
}

.why-point h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.why-callout {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px;
  border-radius: 14px;
}

.why-callout-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.why-callout p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.why-callout-author {
  margin-top: 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ PROCESS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--orange-dark);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.process-step h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============ AREAS ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.area-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.area-pill:hover { border-color: var(--orange); background: var(--cream); }

.area-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 80px 40px;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner h2 em { color: var(--rose); }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--cream-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 19px; height: 19px; stroke: var(--orange-dark); fill: none; stroke-width: 1.8; }

.contact-detail h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============ FORMS ============ */
.form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.form-group input,
.form-group select,
.form-group textarea,
.hero-quote-form input,
.hero-quote-form select {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 18px;
  color: var(--charcoal);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.hero-quote-form input::placeholder { color: #A3A89E; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.hero-quote-form input:focus,
.hero-quote-form select:focus { border-color: var(--orange); }

.form-group select,
.hero-quote-form select { appearance: none; cursor: pointer; }
.form-group select option,
.hero-quote-form select option { background: var(--white); }

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

.form-submit {
  background: var(--orange);
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--orange-dark); }

.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-message {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.form-message:not(:empty) { display: block; }

.form-message-success { color: #2E7D52; }
.form-message-error { color: #C0392B; }

/* ============ FOOTER ============ */
footer {
  background: var(--teal);
  padding: 64px 40px 40px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo em { font-style: italic; color: var(--rose); }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.footer-col p, .footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-phone { display: none; }

  .nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px 20px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px -16px rgba(14,51,47,0.15);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav-toggle-input:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a { font-size: 1.1rem; }
  .nav-links .nav-cta { display: inline-block; width: fit-content; }

  .nav-toggle-input:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-input:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-input:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  section { padding: 60px 20px; }
  .page-hero { padding: 48px 20px; }
  .home-hero { padding: 60px 20px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .home-hero-sub { max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-quote { padding: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}
