/* ============================================================
   Dust Out Home Services
   Clean · Fresh · Local
   ============================================================ */

:root {
  --teal-900: #134e4a;
  --teal-800: #115e59;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --leaf: #5a9a62;
  --ink-950: #121917;
  --ink-900: #1a2422;
  --ink-800: #24302d;
  --ink-700: #3a4744;
  --ink-600: #5a6764;
  --ink-500: #7a8683;
  --ink-400: #9aa6a2;
  --ink-300: #c5cecb;
  --ink-200: #e2e8e6;
  --ink-100: #eef2f0;
  --cream: #f5f7f6;
  --cream-deep: #e8eeeb;
  --white: #ffffff;

  --bg: var(--cream);
  --bg-alt: var(--white);
  --bg-dark: var(--ink-900);
  --text: var(--ink-900);
  --text-muted: var(--ink-600);
  --text-on-dark: #f3f7f5;
  --text-on-dark-muted: rgba(243, 247, 245, 0.72);
  --accent: var(--teal-600);
  --accent-hover: var(--teal-700);
  --border: rgba(18, 25, 23, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --container: 1140px;
  --header-h: 108px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(18, 25, 23, 0.05);
  --shadow: 0 12px 32px rgba(18, 25, 23, 0.08);
  --shadow-lg: 0 24px 56px rgba(18, 25, 23, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px rgba(13, 148, 136, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.site-watermark {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  pointer-events: none;
  user-select: none;
}

.site-watermark img {
  width: min(300px, 46vw);
  height: auto;
  opacity: 0.28;
  animation: watermark-float 11s ease-in-out infinite;
}

@keyframes watermark-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.hero__inner,
.page-hero .container,
.section .container,
.cta-band .container,
.site-footer .container {
  position: relative;
  z-index: 5;
}

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

a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

a:hover {
  color: var(--ink-900);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.7rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p + p {
  margin-top: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: min(38rem, 100%);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  min-width: 0;
  max-width: 100%;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

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

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--text-on-dark);
}

.section--dark .lead,
.section--dark p {
  color: var(--text-on-dark-muted);
}

.section--dark .section-tag {
  color: var(--teal-400);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.28);
}

.btn--primary:hover {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.34);
}

.btn--secondary {
  background: var(--ink-900);
  color: var(--text-on-dark);
}

.btn--secondary:hover {
  background: var(--ink-800);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: var(--ink-300);
  color: var(--ink-900);
}

.btn--outline:hover {
  border-color: var(--ink-900);
  color: var(--ink-900);
  background: rgba(26, 36, 34, 0.04);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--text-on-dark);
}

.btn--outline-light:hover {
  border-color: var(--teal-400);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--on-photo {
  background: var(--white);
  color: var(--teal-800);
}

.btn--on-photo:hover {
  background: var(--teal-50);
  color: var(--teal-900);
}

.btn--sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.05rem 1.85rem;
  font-size: 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245, 247, 246, 0.84);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(245, 247, 246, 0.96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
  opacity: 0.88;
}

.brand__mark {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.brand__name span {
  color: var(--teal-600);
}

.brand__sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover {
  color: var(--ink-900);
  background: rgba(26, 36, 34, 0.05);
}

.nav a[aria-current="page"] {
  color: var(--teal-800);
  background: var(--teal-50);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-actions .btn--email {
  display: none;
}

@media (min-width: 800px) {
  .header-actions .btn--email {
    display: inline-flex;
  }
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none !important;
  }
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

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

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

.nav-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(245, 247, 246, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 1.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.3s;
  overflow-y: auto;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-drawer a {
  color: var(--ink-900);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
}

.nav-drawer a[aria-current="page"] {
  background: var(--teal-50);
  color: var(--teal-800);
}

.nav-drawer .btn {
  margin-top: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  overflow: hidden;
  min-width: 0;
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 65% at 50% 45%, rgba(18, 25, 23, 0.28) 0%, rgba(18, 25, 23, 0.62) 100%),
    linear-gradient(180deg, rgba(18, 25, 23, 0.2) 0%, rgba(18, 25, 23, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 2.5rem), var(--container));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  padding: 3.5rem 0 3.75rem;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.hero-logo img {
  width: min(280px, 52vw);
  height: auto;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.36;
  filter: none;
}

.hero__inner .section-tag {
  color: var(--teal-300, #5eead4);
}

.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.hero .lead {
  color: rgba(243, 247, 245, 0.86);
  max-width: min(34rem, 100%);
  margin-inline: auto;
}

.hero .btn-row {
  justify-content: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: rgba(243, 247, 245, 0.78);
}

@media (max-width: 720px) {
  .hero__meta {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .hero-logo img {
    width: min(210px, 48vw);
    opacity: 0.34;
  }

  .brand__mark {
    height: 68px;
  }
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__meta svg {
  width: 16px;
  height: 16px;
  color: var(--teal-400);
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.75rem;
  overflow: hidden;
  color: var(--text-on-dark);
}

.page-hero .lead {
  max-width: min(36rem, 100%);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(18, 25, 23, 0.45), rgba(18, 25, 23, 0.72));
}

.page-hero .container {
  position: relative;
  z-index: 5;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.7rem;
}

.page-hero .lead {
  color: rgba(243, 247, 245, 0.84);
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  color: inherit;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-100);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.service-card__link {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card:hover .service-card__link {
  gap: 0.55rem;
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.3rem 1.7rem;
}

.why-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.why-item__icon svg {
  width: 22px;
  height: 22px;
}

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ---------- Split / about teaser ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.split__media img.photo-owners {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: #e8e4df;
}

.split__panel {
  background: var(--ink-900);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.split__panel h3 {
  color: var(--white);
  margin-bottom: 0.55rem;
}

.split__panel p {
  color: var(--text-on-dark-muted);
  margin-bottom: 1.35rem;
}

.highlight {
  background: var(--teal-50);
  border-left: 3px solid var(--teal-600);
  padding: 1rem 1.15rem;
  border-radius: 0 12px 12px 0;
  margin: 1.35rem 0;
  color: var(--ink-800);
  font-weight: 500;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 280px at 80% 0%, rgba(45, 212, 191, 0.16), transparent 60%),
    var(--ink-900);
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  max-width: 34rem;
  margin: 0 auto 1.6rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #101614;
  color: var(--ink-300);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand .brand__mark {
  height: 64px;
}

.footer-brand .brand__name,
.footer-brand .brand__name span {
  color: var(--white);
}

.footer-brand .brand__sub {
  color: var(--ink-400);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 32ch;
  line-height: 1.65;
}

.footer-brand .footer-email {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--teal-400);
  font-size: 0.95rem;
  white-space: nowrap;
}

.footer-brand .footer-email:hover {
  color: var(--teal-300, #5eead4);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--ink-300);
}

.site-footer a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-400);
}

/* ---------- Services detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type {
  border-bottom: 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail h2 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 0.7rem;
}

.service-detail p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--ink-700);
  font-size: 0.97rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-600);
  margin-top: 0.18rem;
}

.service-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-detail__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- About ---------- */
.about-prose {
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.about-prose p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.35rem;
}

.value-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.value-card__icon svg {
  width: 20px;
  height: 20px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-top: 0.4rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}

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

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink-800);
}

.req {
  color: var(--teal-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--teal-500);
}

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

.form-note {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  display: none;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-900);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.1rem;
}

.form-success.is-visible {
  display: block;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.info-card__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-card__row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-600);
  margin-top: 0.15rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .services-grid,
  .why-grid,
  .split,
  .split--reverse,
  .contact-grid,
  .service-detail,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .hero {
    min-height: 70vh;
  }

  .split__media img {
    aspect-ratio: 16 / 10;
  }

  .split__media img.photo-owners {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 720px) {
  .services-grid,
  .why-grid,
  .split,
  .split--reverse,
  .contact-grid,
  .service-detail,
  .values-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding: 4.5rem 0 3rem;
  }

  .hero {
    min-height: auto;
  }

  .page-hero {
    padding: 3.1rem 0 2.5rem;
  }

  .page-hero h1,
  .hero h1,
  .page-hero .lead,
  .hero .lead {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .brand__sub {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-row .btn {
    width: 100%;
  }
}
