/* ============================
   Colour Palette
   ============================ */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --text: #1a1a1a;
  --text-soft: #555555;
  --black: #000000;
  --accent: #7CFF00;
  --accent-dark: #6be000;
  --accent-pressed: #5fc700;
  --border: #e5e5e5;

  --container: 1200px;

  --header-height: 80px;
  --footer-height: 100px;

  --transition-fast: 160ms ease;
}

/* ============================
   Global
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--black);
}

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

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

/* ============================
   Header
   ============================ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  width: 100vw;
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 72px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
}

.logo-mobile {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color var(--transition-fast), color var(--transition-fast);
}

.nav a:hover,
.nav a.active {
  border-bottom-color: var(--accent);
}

.nav a:active {
  color: var(--text-soft);
}

.nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.email-btn {
  background: var(--accent);
  color: var(--black);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.email-btn:hover {
  background: var(--accent-dark);
}

.email-btn:active {
  background: var(--accent-pressed);
  transform: translateY(1px);
}

.email-btn:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
}

.menu-toggle:active {
  background: #ececec;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   Mobile Drawer
   ============================ */
.drawer-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 90;
}

.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  bottom: 0;
  left: auto;
  right: 0;
  width: min(84vw, 360px);
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 95;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1rem 1.5rem;
}

.drawer-logo {
  margin: 0 auto 1.25rem;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.drawer-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 500;
  transition: border-bottom-color var(--transition-fast), color var(--transition-fast);
}

.drawer-nav a:hover,
.drawer-nav a.active {
  border-bottom-color: var(--accent);
}

.drawer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-soft);
}

.drawer-tagline {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.drawer-footer p {
  margin: 0.35rem 0;
}

.drawer-phone-note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.drawer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.85rem;
}

.drawer-social a {
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.drawer-social a:hover {
  border-bottom-color: var(--accent);
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media picture,
.hero-img {
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
  object-position: center 70%;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.92);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
}

.hero-overlay h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.hero-overlay p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn,
.btn-secondary {
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
}

.btn {
  background: var(--accent);
  color: var(--black);
  border: 2px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn:active {
  background: var(--accent-pressed);
  border-color: var(--accent-pressed);
  transform: translateY(1px);
}

.btn-secondary {
  background: var(--bg);
  color: var(--black);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--black);
}

.btn-secondary:active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(1px);
}

.btn:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.btn:disabled,
.btn-secondary:disabled,
button.btn:disabled,
button.btn-secondary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* ============================
   Home page shell
   ============================ */
.page-home {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
}

.page-home .hero {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.page-home .hero-media {
  grid-area: 1 / 1;
  min-height: 0;
}

.page-home .hero-overlay {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: start;
  margin: 0 0 clamp(1.25rem, 3.5vh, 2.5rem) clamp(1rem, 4vw, 3rem);
  max-width: min(420px, calc(100% - 2rem));
  z-index: 2;
}

.page-home .site-footer {
  min-height: auto;
}

.page-home .footer-inner {
  padding-block: 0.75rem;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  min-height: var(--footer-height);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding-block: 1rem;
}

.footer-section {
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-right: auto;
}

.footer-brand p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin: 0;
}

.footer-contact p {
  display: contents;
  font-size: 0.95rem;
}

.footer-contact strong {
  text-align: right;
}

.footer-contact a {
  text-align: right;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(0, max-content) max-content max-content;
  justify-content: end;
  column-gap: 0.4rem;
  row-gap: 0.25rem;
  margin-left: auto;
  text-align: right;
}

.social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 500;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.social-link:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
}

.social-link:active {
  background: #ececec;
  transform: translateY(1px);
}

.social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.social-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.footer-social {
  justify-content: flex-end;
}

.contact-social {
  margin-top: 0.35rem;
}

/* ============================
   Mobile
   ============================ */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --footer-height: auto;
  }

  .desktop-nav,
  .desktop-email {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo img {
    height: 60px;
    max-width: min(280px, 68vw);
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .footer--home-mobile-hidden {
    display: none;
  }

  .footer-desktop-only {
    display: none;
  }

  .footer-inner {
    justify-content: space-between;
  }

  .social {
    align-items: flex-end;
    width: auto;
  }

  .page-home {
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
  }

  .page-home .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
  }

  .page-home .hero-media {
    grid-area: 1 / 1;
    min-height: 0;
    overflow: hidden;
  }

  .page-home .hero-media picture {
    display: block;
    height: 100%;
  }

  .page-home .hero-img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .page-home .hero-overlay {
    grid-area: 1 / 1;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: calc(100% - 2rem);
    max-width: 430px;
    border-radius: 6px;
    padding: 1rem 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 229, 229, 0.9);
    z-index: 1;
  }

  .page-home .hero-overlay h1 {
    font-size: 1.25rem;
  }

  .page-home .hero-overlay p {
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
  }

  .page-home .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .page-home .hero-buttons .btn,
  .page-home .hero-buttons .btn-secondary {
    width: 100%;
    padding: 0.75rem 0.65rem;
    font-size: 0.9rem;
  }

  .site-footer:not(.footer--home-mobile-hidden) {
    padding-block: 0.85rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding-block: 0.85rem;
  }

  .footer-contact {
    margin: 0;
  }

  .footer-brand {
    margin-right: auto;
  }

  .footer-contact {
    text-align: left;
    width: 100%;
  }

  .footer-contact p {
    display: contents;
  }

  .footer-contact a {
    overflow-wrap: anywhere;
  }

  .footer-contact {
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    justify-content: stretch;
  }

  .footer-logo {
    height: 48px;
    max-width: 220px;
  }

  .footer-brand p,
  .footer-contact p {
    font-size: 0.88rem;
  }

  .social {
    align-items: flex-end;
    gap: 0.35rem;
    text-align: right;
  }
}

@media (max-width: 768px) and (max-height: 640px) {
  .page-home {
    overflow: auto;
  }

  .page-home .hero {
    min-height: calc(100dvh - var(--header-height) - var(--footer-height));
  }

  .page-home .hero-overlay {
    top: 68%;
  }
}

@media (max-height: 900px) and (min-width: 769px) {
  .page-home .hero-img {
    object-position: center 75%;
  }

  .page-home .hero-overlay {
    margin-bottom: clamp(0.85rem, 2.5vh, 1.5rem);
    padding: 1rem 1.15rem;
  }

  .page-home .hero-overlay h1 {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
  }

  .page-home .hero-overlay p {
    margin-bottom: 0.75rem;
  }

  .page-home .hero-tagline {
    margin-bottom: 0.2rem;
  }

  .page-home .btn,
  .page-home .btn-secondary {
    min-height: 40px;
    padding: 0.65rem 1rem;
  }

  .page-home .footer-inner {
    padding-block: 0.55rem;
  }

  .page-home .footer-logo {
    height: 44px;
  }
}

@media (max-height: 760px) and (min-width: 769px) {
  .page-home .hero-overlay {
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .page-home .hero-overlay h1 {
    font-size: 1.2rem;
  }

  .page-home .hero-overlay p:not(.hero-tagline) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 360px) {
  .page-home .hero-buttons {
    grid-template-columns: 1fr;
  }
}

/* ============================
   Interior pages
   ============================ */
.page-main {
  flex: 1;
}

.page-intro {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.page-lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.page-section {
  padding: 2.5rem 0;
}

.page-section--soft {
  background: var(--bg-soft);
}

.page-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.section-copy {
  margin: 0 0 1rem;
  max-width: 68ch;
  color: var(--text-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.1rem 1.15rem;
  background: var(--bg);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent);
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  columns: 2;
  column-gap: 2rem;
}

.service-list li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.service-list--compact {
  columns: 1;
}

.area-list {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-row--stack {
  flex-direction: column;
  align-items: stretch;
}

.text-link {
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--accent);
  transition:
    color var(--transition-fast),
    border-bottom-color var(--transition-fast);
}

.text-link:hover {
  color: var(--text);
  border-bottom-color: var(--accent-dark);
}

.text-link:active {
  color: var(--text-soft);
}

.text-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.content-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.content-media {
  margin: 0;
}

.content-media img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.spec-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.spec-table th,
.spec-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

.spec-table th {
  background: var(--bg-soft);
}

.placeholder-text {
  color: var(--text-soft);
  font-style: italic;
}

.placeholder-note {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--border);
  box-shadow: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gallery-item:hover img {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 55%, transparent);
}

.gallery-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.gallery-caption {
  margin: 0 0 0.35rem;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-tags li {
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  background: var(--bg);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.contact-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-note {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.contact-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-separator {
  color: var(--text-soft);
}

.hours-list {
  margin: 0;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(9rem, auto) 1fr;
  gap: 0.5rem 1rem;
  margin: 0 0 0.45rem;
}

.hours-row dt {
  margin: 0;
  font-weight: 600;
}

.hours-row dd {
  margin: 0;
}

.hours-note {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  background: var(--bg);
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.contact-link {
  font-weight: 600;
  font-size: 1.05rem;
  transition: color var(--transition-fast), border-bottom-color var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.contact-link:hover {
  border-bottom-color: var(--accent);
}

.contact-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact-card--actions {
  display: flex;
  flex-direction: column;
}

.form-shell {
  max-width: 720px;
}

.site-form {
  display: grid;
  gap: 1rem;
}

.form-fieldset {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.form-fieldset legend {
  padding: 0 0.35rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  color: var(--text);
  background: var(--bg);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-alert {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}

.form-alert--success {
  background: #eefce0;
  border: 1px solid #b8e986;
}

.form-alert--error {
  background: #fff0f0;
  border: 1px solid #f0b4b4;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-tagline {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn--inline {
  display: inline-flex;
  margin-top: 0.5rem;
}

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

  .service-list {
    columns: 1;
  }
}

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

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn,
  .form-actions .btn-secondary {
    width: 100%;
  }
}
