/* Honest Lawns — converted from React/Tailwind design */

:root {
  --radius: 0.875rem;
  --paper: #f5f5f5;
  --tray: #d9d9d9;
  --tray-2: #ededed;
  --ink: #051a24;
  --ink-2: #0d212c;
  --cta: #0b0f1a;
  --orange: #ef4d23;
  --light: #f6fcff;
  --mute: #273c46;
  --border: rgba(5, 26, 36, 0.08);
  --font-display: "Inter", "Helvetica", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Instrument Serif", ui-serif, Georgia, serif;
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1480px, 100%);
  --px: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-feature-settings: "ss01", "cv11";
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.font-editorial {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.02em;
}

.font-sans { font-family: var(--font-display); }

.hl-main { background: var(--paper); color: var(--ink); overflow-x: clip; }

.hl-container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

/* Section rhythm — matches React mt-24 / mt-28 / mt-40 */
.hl-section { padding-inline: 0.75rem; margin-top: 6rem; }
.hl-section-lg { margin-top: 7rem; }
.hl-section-spacer { margin-top: 6rem; padding-inline: 0.75rem; }

.hl-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.hl-section-lead {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 15px;
}

.hl-section-link {
  font-size: 14px;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hl-section-link:hover { color: var(--ink); }

.hl-page-title { max-width: 56rem; }
.hl-page-subtitle { margin-top: 1.25rem; font-size: 16px; max-width: 36rem; }
.hl-empty-state { margin-top: 4rem; text-align: center; }

/* Grids — match React breakpoints */
.hl-grid-projects,
.hl-grid-services {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.hl-grid-projects-archive { margin-top: 2.5rem; }

@media (min-width: 768px) {
  .hl-grid-projects { grid-template-columns: repeat(2, 1fr); }
  .hl-grid-services { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hl-grid-projects { grid-template-columns: repeat(3, 1fr); }
  .hl-grid-services { grid-template-columns: repeat(3, 1fr); }
  .hl-section { margin-top: 8rem; }
  .hl-section-lg { margin-top: 10rem; }
}

@media (min-width: 640px) {
  .hl-hero-wrap { padding-top: 7rem; }
  .hl-page-hero { padding-top: 11rem; }
}

/* Glass & shadows */
.glass {
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 30px 60px -30px rgba(5, 26, 36, 0.25);
}

.glass-dark {
  background: color-mix(in oklab, #051a24 60%, transparent);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
}

.shadow-luxe {
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.shadow-float {
  box-shadow: 0 20px 60px -20px rgba(5, 26, 36, 0.35), 0 8px 24px -8px rgba(5, 26, 36, 0.2);
}

.hairline {
  background-image: linear-gradient(to right, transparent, rgba(5,26,36,0.15), transparent);
  height: 1px;
}

/* Typography helpers */
.hl-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mute);
}

.hl-display {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-top: 20px;
}

.hl-display-lg {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.text-mute { color: var(--mute); }
.text-light { color: var(--light); }
.text-orange { color: var(--orange); }
.bg-ink { background: var(--ink); }
.bg-light { background: var(--light); }
.bg-orange { background: var(--orange); }

/* Buttons */
.hl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s, filter 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.hl-btn-orange {
  background: var(--orange);
  color: var(--light);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
}

.hl-btn-orange:hover { filter: brightness(1.05); }

.hl-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--light);
  color: var(--ink);
  transition: transform 0.2s;
}

.hl-btn:hover .hl-btn-icon { transform: translateX(2px); }
.hl-btn-group:hover .hl-btn-icon-rotate { transform: rotate(-12deg); }

.hl-btn-ghost {
  border: 1px solid rgba(246, 252, 255, 0.4);
  color: var(--light);
  padding: 0.625rem 1.5rem;
  background: transparent;
}

.hl-btn-ghost:hover { background: rgba(246, 252, 255, 0.1); }

.hl-btn-ink {
  background: var(--ink);
  color: var(--light);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
}

.hl-btn-muted {
  background: rgba(5, 26, 36, 0.05);
  color: var(--ink);
  padding: 0.5rem 1.25rem;
}

.hl-btn-muted:hover { background: rgba(5, 26, 36, 0.1); }

/* Forms */
.hl-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-bottom: 0.375rem;
}

.hl-input,
.hl-select,
.hl-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(5, 26, 36, 0.15);
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.hl-input:focus,
.hl-select:focus,
.hl-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 77, 35, 0.12);
}

.hl-textarea { resize: none; }

.hl-form-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Navbar */
.hl-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-inline: 1rem;
}

.hl-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 72rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: 9999px;
}

.hl-nav-menu {
  display: none;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 1.75rem;
  font-size: 13px;
  color: rgba(5, 26, 36, 0.8);
}

.hl-nav-menu a:hover { color: var(--ink); }

.hl-nav-actions {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.75rem;
}

.hl-nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(5, 26, 36, 0.7);
}

.hl-nav-toggle {
  margin-left: auto;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--light);
  border: none;
  cursor: pointer;
}

.hl-mobile-menu {
  display: none;
  position: absolute;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.hl-mobile-menu.is-open { display: block; }

.hl-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hl-mobile-menu li + li { border-top: 1px solid rgba(5, 26, 36, 0.05); }

.hl-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 15px;
}

.hl-logo img { height: 3.5rem; width: auto; object-fit: contain; }

@media (min-width: 768px) {
  .hl-nav-actions { display: flex; }
  .hl-nav-toggle { display: none; }
}

@media (min-width: 1024px) {
  .hl-nav-menu { display: flex; }
  .hl-nav-toggle { display: none; }
}

@media (min-width: 1280px) {
  .hl-nav-phone { display: inline-flex; }
}

/* Hero */
.hl-hero-wrap {
  padding: 6rem var(--px) 0;
}

.hl-hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  max-width: var(--container);
  margin-inline: auto;
}

.hl-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 36, 0.55);
}

.hl-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,26,36,0.4), transparent 40%, rgba(5,26,36,0.7));
}

.hl-hero-inner {
  position: relative;
  padding: 5rem 1.5rem 3rem;
  min-height: 88vh;
}

.hl-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.hl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(5, 26, 36, 0.8);
  width: fit-content;
}

.hl-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--orange);
}

.hl-hero h1 {
  margin: 2rem 0 0;
  color: var(--light);
  max-width: 56rem;
}

.hl-hero-lead {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246, 252, 255, 0.8);
}

.hl-hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hl-trust-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  color: rgba(246, 252, 255, 0.9);
}

.hl-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(5, 26, 36, 0.3);
  backdrop-filter: blur(24px);
}

.hl-trust-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(246, 252, 255, 0.1);
  flex-shrink: 0;
}

.hl-trust-icon svg { color: var(--orange); }

.hl-trust-title { font-size: 13px; font-weight: 500; }
.hl-trust-sub { font-size: 11px; color: rgba(246, 252, 255, 0.55); }

@media (min-width: 640px) {
  .hl-hero { border-radius: 44px; }
  .hl-hero-inner { padding: 6rem 3rem 4rem; }
}

@media (min-width: 1024px) {
  .hl-hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
  .hl-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-form-sticky { position: sticky; top: 7rem; }
}

/* Sections */
.hl-section-sm { margin-top: 1.5rem; padding-inline: 0.75rem; }

.hl-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-card-pad { padding: 1.25rem 1.5rem; }

/* Trust bar */
.hl-trustbar {
  margin-top: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.hl-trustbar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  divide-color: rgba(5, 26, 36, 0.05);
}

.hl-trustbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 13px;
  color: rgba(5, 26, 36, 0.85);
}

.hl-trustbar-item svg { color: var(--orange); flex-shrink: 0; }

@media (min-width: 1024px) {
  .hl-trustbar-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Grid layouts */
.hl-grid-2 { display: grid; gap: 1.25rem; }
.hl-grid-3 { display: grid; gap: 1.25rem; }
.hl-grid-4 { display: grid; gap: 0.75rem; }

@media (min-width: 640px) {
  .hl-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .hl-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hl-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hl-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hl-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.hl-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hl-split {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

/* Project cards */
.hl-project-item {
  min-width: 0;
}

.hl-project-card {
  display: block;
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--tray);
  text-decoration: none;
  color: inherit;
}

.hl-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.hl-project-card:hover img { transform: scale(1.05); }

.hl-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,26,36,0.7), transparent 50%);
}

.hl-project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hl-project-body {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--light);
}

.hl-project-title { font-size: 1.125rem; letter-spacing: -0.02em; }

.hl-project-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246, 252, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.hl-project-arrow {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--light);
  color: var(--ink);
  transition: transform 0.3s;
}

.hl-project-card:hover .hl-project-arrow { transform: rotate(-12deg); }

/* Service cards */
.hl-service-card {
  display: block;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-service-card:hover { transform: translateY(-4px); }

.hl-service-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(5, 26, 36, 0.05);
}

.hl-service-img .hl-project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.hl-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.hl-service-card:hover .hl-service-img img { transform: scale(1.05); }

.hl-service-content { padding: 1.5rem; }
.hl-service-content h3 { font-size: 1.125rem; letter-spacing: -0.02em; margin: 0; }
.hl-service-content p { margin: 0.5rem 0 0; font-size: 14px; line-height: 1.6; color: var(--mute); }

.hl-learn-more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  transition: gap 0.2s;
}

.hl-service-card:hover .hl-learn-more { gap: 0.625rem; }

/* Filter pills */
.hl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.hl-filter-btn {
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 13px;
  border: 1px solid rgba(5, 26, 36, 0.1);
  background: var(--paper);
  color: rgba(5, 26, 36, 0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.hl-filter-btn:hover {
  border-color: rgba(5, 26, 36, 0.3);
  color: var(--ink);
}

.hl-filter-btn.is-active {
  background: var(--ink);
  color: var(--light);
  border-color: var(--ink);
}

/* Seasonal */
.hl-seasonal {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  color: var(--light);
  min-height: 640px;
}

.hl-seasonal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hl-seasonal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,26,36,0.6), rgba(5,26,36,0.4) 40%, var(--ink));
}

.hl-seasonal-inner {
  position: relative;
  padding: 5rem 1.5rem;
}

.hl-season-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(246, 252, 255, 0.05);
}

.hl-season-card {
  background: rgba(13, 33, 44, 0.8);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  height: 100%;
}

@media (min-width: 640px) {
  .hl-seasonal { border-radius: 44px; }
  .hl-seasonal-inner { padding: 7rem 3rem; }
  .hl-season-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hl-season-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Quote banner */
.hl-quote-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  color: var(--light);
  padding: 5rem 2rem;
}

.hl-quote-banner::before,
.hl-quote-banner::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(64px);
}

.hl-quote-banner::before {
  top: -8rem;
  right: -5rem;
  background: rgba(239, 77, 35, 0.3);
}

.hl-quote-banner::after {
  bottom: -8rem;
  left: -5rem;
  background: rgba(239, 77, 35, 0.1);
}

.hl-quote-inner { position: relative; max-width: 48rem; }

/* Footer */
.hl-footer-wrap {
  padding: 0 var(--px);
  margin: 6rem 0 7rem;
}

.hl-footer {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  color: var(--light);
}

.hl-footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink), var(--ink-2), var(--cta));
}

.hl-footer-glow {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(239, 77, 35, 0.2);
  filter: blur(64px);
}

.hl-footer-inner {
  position: relative;
  padding: 4rem 2rem;
}

.hl-footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .hl-footer { border-radius: 44px; }
  .hl-footer-inner { padding: 4rem 4rem; }
  .hl-footer-grid { grid-template-columns: 4fr 2fr 3fr 3fr; }
}

.hl-footer h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246, 252, 255, 0.4);
  margin: 0;
}

.hl-footer ul {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.hl-footer li { margin-bottom: 0.625rem; font-size: 14px; color: rgba(246, 252, 255, 0.8); }
.hl-footer a:hover { color: var(--light); }

.hl-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hl-social a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(246, 252, 255, 0.1);
  transition: background 0.2s;
}

.hl-social a:hover { background: rgba(246, 252, 255, 0.2); }

/* Testimonials */
.hl-testimonial {
  height: 100%;
  border-radius: 28px;
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--orange);
}

.hl-testimonial q {
  margin-top: 1.5rem;
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
  quotes: none;
}

.hl-quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--orange);
  vertical-align: top;
  margin-right: 0.25rem;
}

/* FAQ */
.hl-faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .hl-faq-grid { grid-template-columns: repeat(2, 1fr); }
}

.hl-faq-item {
  border-radius: 1rem;
  background: var(--light);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(5, 26, 36, 0.06);
}

.hl-faq-item dt { font-weight: 500; font-size: 17px; }
.hl-faq-item dd { margin: 0.5rem 0 0; font-size: 15px; color: rgba(5, 26, 36, 0.7); line-height: 1.6; }

/* Single project */
.hl-project-hero {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(5, 26, 36, 0.05);
}

@media (min-width: 640px) {
  .hl-project-hero { aspect-ratio: 21 / 9; }
}

.hl-project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-sidebar {
  border-radius: 24px;
  border: 1px solid rgba(5, 26, 36, 0.1);
  background: var(--paper);
  padding: 1.75rem;
}

@media (min-width: 1024px) {
  .hl-project-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3.5rem; }
  .hl-sidebar { position: sticky; top: 7rem; align-self: start; }
}

.hl-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hl-gallery { grid-template-columns: repeat(2, 1fr); }
}

.hl-gallery-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(5, 26, 36, 0.05);
  cursor: pointer;
}

.hl-gallery-btn.tall { aspect-ratio: 4 / 5; }
.hl-gallery-btn.wide { aspect-ratio: 4 / 3; }

.hl-gallery-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.hl-gallery-btn:hover img { transform: scale(1.05); }

/* Before / After */
.hl-before-after {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(5, 26, 36, 0.05);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.hl-before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-ba-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hl-ba-before-wrap img {
  position: absolute;
  inset: 0;
  max-width: none;
}

.hl-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light);
  transform: translateX(-50%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18);
}

.hl-ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--light);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-ba-label {
  position: absolute;
  top: 0.75rem;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.hl-ba-label.left { left: 0.75rem; }
.hl-ba-label.right { right: 0.75rem; }

/* Lightbox */
.hl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 26, 36, 0.9);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hl-lightbox.is-open { display: flex; }

.hl-lightbox img {
  max-height: 90vh;
  max-width: 95vw;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--light);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Scroll reveal animations — visible by default; animate when JS ready */
.hl-reveal {
  opacity: 1;
  transform: none;
}

.hl-js .hl-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}

.hl-js .hl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hl-hero .hl-reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: hl-fade-up 1s var(--ease-out-expo) forwards;
}

.hl-hero .hl-reveal-hero:nth-child(1) { animation-delay: 0s; }
.hl-hero .hl-reveal-hero:nth-child(2) { animation-delay: 0.1s; }
.hl-hero .hl-reveal-hero:nth-child(3) { animation-delay: 0.25s; }
.hl-hero .hl-reveal-hero:nth-child(4) { animation-delay: 0.4s; }
.hl-hero .hl-reveal-hero:nth-child(5) { animation-delay: 0.3s; }

@keyframes hl-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Toast */
.hl-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 14px;
  color: #fff;
  transition: transform 0.3s var(--ease-out-expo);
  pointer-events: none;
}

.hl-toast.is-show { transform: translateX(-50%) translateY(0); }
.hl-toast.success { background: #16a34a; }
.hl-toast.error { background: #dc2626; }

/* Page hero */
.hl-page-hero { padding: 9rem var(--px) 3rem; }

/* 404 */
.hl-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hl-contact-grid { display: grid; gap: 2rem; }

@media (min-width: 1024px) {
  .hl-contact-grid { grid-template-columns: 7fr 5fr; }
}

.hl-project-item.is-hidden { display: none; }

/* Breadcrumb */
.hl-breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hl-breadcrumb a:hover { color: var(--ink); }

/* Two ways cards */
.hl-option-card {
  height: 100%;
  border-radius: 28px;
  background: #fff;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-icon-box {
  display: inline-flex;
  flex-shrink: 0;
  align-self: flex-start;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--ink);
  color: var(--orange);
}

.hl-flex-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 100%;
}

.hl-flex-card-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hl-flex-card-icon {
  flex-shrink: 0;
  align-self: flex-start;
  color: var(--orange);
  line-height: 0;
}

.hl-grid-2 > .hl-reveal,
.hl-grid-3 > .hl-reveal,
.hl-grid-4 > .hl-reveal {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.hl-grid-2 > .hl-reveal > .hl-card,
.hl-grid-2 > .hl-reveal > .hl-option-card,
.hl-grid-3 > .hl-reveal > .hl-card,
.hl-grid-4 > .hl-reveal > .hl-card {
  flex: 1;
  width: 100%;
}

.hl-bullet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0;
  margin-top: 1.5rem;
  font-size: 13.5px;
  color: rgba(5, 26, 36, 0.85);
  list-style: none;
  padding: 0;
}

.hl-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hl-bullet-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Owner image */
.hl-owner-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 30px -12px rgba(5, 26, 36, 0.18), 0 30px 80px -40px rgba(5, 26, 36, 0.35);
}

.hl-owner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service detail page */
.hl-service-detail {
  scroll-margin-top: 8rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hl-service-detail { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .hl-service-detail.reverse .hl-service-media { order: 2; }
  .hl-service-detail.reverse .hl-service-copy { order: 1; }
}

.hl-includes {
  display: grid;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .hl-includes { grid-template-columns: repeat(2, 1fr); }
}

.hl-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
}

.hl-check {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(239, 77, 35, 0.15);
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
