/* ==========================================================================
   local.css — additions only. Loaded after styles.css.
   Nothing here overrides your original file; you can delete this to revert.
   ========================================================================== */

/* Phone in the header nav */

.nav-phone {
  padding: 8px 16px;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: var(--olive-dark) !important;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  background: var(--olive);
  color: var(--white) !important;
}

/* Price line inside service cards */

.price-line {
  margin-bottom: 10px;
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Note under the Why Olive heading */

.feature-note {
  max-width: 460px;
  margin-top: 22px;
  color: #51574d;
  font-size: 16px;
  line-height: 1.7;
}

/* Service area section */

.areas-intro {
  max-width: 620px;
  margin-top: 22px;
  color: #51574d;
  font-size: 18px;
  line-height: 1.8;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  padding: 0;
  list-style: none;
}

.area-links li a,
.area-links li span {
  display: inline-block;
  padding: 11px 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.area-links li span {
  color: var(--stone);
}

.area-links li a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* Contact form */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin: 40px auto 0;
  text-align: left;
}

.contact-form .field.full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--olive);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
}

/* Town page hero */

.page-hero {
  padding-top: 165px;
  padding-bottom: 60px;
}

.page-hero h1 {
  max-width: 900px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
}

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

.page-hero .hero-text {
  margin-top: 28px;
}

.prose {
  max-width: 720px;
}

.prose p {
  margin-top: 20px;
  color: #3f453c;
  font-size: 18px;
  line-height: 1.8;
}

.prose h2 {
  margin-top: 46px;
}

.prose h3 {
  margin-top: 34px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
}

.prose ul {
  margin-top: 18px;
  padding-left: 20px;
  color: #3f453c;
  font-size: 17px;
  line-height: 1.9;
}

.breadcrumb {
  margin-bottom: 20px;
  color: var(--stone);
  font-size: 13px;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--olive-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 950px) {
  .nav-phone {
    padding: 7px 14px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .area-links {
    gap: 9px;
  }

  .area-links li a,
  .area-links li span {
    padding: 9px 16px;
    font-size: 14px;
  }

  .page-hero {
    padding-top: 48px;
  }

  .prose p {
    font-size: 16px;
  }
}
