/* Analiza Soratorio — UI fills/borders/shadows: palette (#98a086 · #a76d5e · #dfccb1). Text uses neutrals below. */

:root {
  --palette-petal: #a76d5e;
  --palette-honey: #dfccb1;
  --palette-sage: #98a086;
  --palette-mint: color-mix(in srgb, var(--palette-sage) 70%, var(--palette-honey) 30%);

  /* Typography only (not counted toward the four UI colors) */
  --color-ink: #1a1a1a;
  --color-body: #3a3a3a;
  --color-muted: #5a5a5a;

  /* UI tokens — rgba derived from the palette */
  --color-border: rgba(223, 204, 177, 0.65);
  --color-accent-dim: rgba(223, 204, 177, 0.45);
  --shadow-soft: 0 16px 40px rgba(167, 109, 94, 0.2);
  --shadow-lift: 0 20px 48px rgba(152, 160, 134, 0.3);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Libre Baskerville", Georgia, serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --header-h: 4.25rem;
  --ease-refined: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur: 0.4s;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-body);
  background-color: var(--palette-sage);
  background-image:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(167, 109, 94, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(152, 160, 134, 0.4), transparent 55%),
    linear-gradient(180deg, var(--palette-mint) 0%, var(--palette-sage) 45%, var(--palette-honey) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 14px,
    rgba(167, 109, 94, 0.08) 14px,
    rgba(167, 109, 94, 0.08) 15px
  );
}

/* Homepage only: beige wash at top, sage emphasis toward footer (inverse of default page backdrop) */
.page-home {
  background-color: var(--palette-honey);
  background-image:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(167, 109, 94, 0.3), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(223, 204, 177, 0.5), transparent 55%),
    linear-gradient(180deg, var(--palette-honey) 0%, var(--palette-sage) 42%, var(--palette-mint) 100%);
}

.page-home .hero {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--palette-honey) 88%, white 12%) 0%,
    var(--palette-honey) 38%,
    color-mix(in srgb, var(--palette-honey) 82%, var(--palette-petal) 18%) 100%
  );
}

.page-home .contact {
  background: linear-gradient(165deg, var(--palette-honey) 0%, var(--palette-sage) 45%, var(--palette-mint) 100%);
}

.page-home .site-footer {
  background: var(--palette-sage);
}

.page-home .logo-mark--footer {
  border-color: rgba(223, 204, 177, 0.65);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  z-index: 10000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--palette-honey);
  color: var(--color-ink);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--dur) var(--ease-refined);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Angled site motif */
.angle-ribbon {
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(223, 204, 177, 0.35) 18%,
    var(--palette-petal) 38%,
    var(--palette-honey) 50%,
    var(--palette-mint) 62%,
    rgba(223, 204, 177, 0.35) 82%,
    transparent 100%
  );
  transform: skewX(-12deg) scaleX(1.08);
  margin: 0 auto;
  max-width: 100%;
  opacity: 0.95;
}

.angle-ribbon--hero {
  margin-top: -2px;
  position: relative;
  z-index: 5;
}

.has-angle-bg {
  position: relative;
}

.has-angle-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 12px,
    rgba(152, 160, 134, 0.14) 12px,
    rgba(152, 160, 134, 0.14) 14px
  );
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--space-md);
  background: transparent;
  transition:
    background var(--dur) var(--ease-refined),
    box-shadow var(--dur) var(--ease-refined),
    backdrop-filter var(--dur) var(--ease-refined);
}

.site-header.is-scrolled {
  background: rgba(223, 204, 177, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 36px rgba(152, 160, 134, 0.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-ink);
}

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--palette-honey);
  color: var(--palette-mint);
  border-radius: var(--radius-sm);
}

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

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.nav a {
  color: var(--color-body);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease-refined);
}

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

.nav-cta {
  padding: var(--space-2xs) var(--space-sm);
  border: 1px solid var(--palette-petal);
  border-radius: 2px;
  color: var(--color-ink) !important;
}

.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2xs);
  margin-left: var(--space-md);
  padding: var(--space-2xs) var(--space-sm);
  background: rgba(223, 204, 177, 0.14);
  border: 1px solid var(--color-accent-dim);
  border-radius: 2px;
  color: var(--color-ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease-refined),
    border-color var(--dur) var(--ease-refined);
}

.header-phone:hover {
  background: rgba(223, 204, 177, 0.26);
  border-color: var(--palette-petal);
}

.menu-toggle {
  margin-left: auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--color-ink);
  transition: transform var(--dur) var(--ease-refined);
}

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

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--palette-honey);
  border-top: 1px solid var(--palette-petal);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 700;
  padding: var(--space-xs) 0;
}

.mobile-nav-call {
  margin-top: var(--space-xs);
  padding: var(--space-sm);
  text-align: center;
  background: var(--palette-petal);
  color: var(--color-ink) !important;
  border-radius: var(--radius-md);
}

/* ——— Hero: copy + floating photo card (aligned row) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--header-h) 0 0;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--palette-mint) 0%,
    var(--palette-sage) 42%,
    var(--palette-honey) 100%
  );
}

.hero-shell {
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100dvh - var(--header-h));
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
  display: flex;
  align-items: center;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-xl);
  width: 100%;
}

@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }
}

.hero-copy {
  flex: 1;
  min-width: 0;
  max-width: 36rem;
}

.hero-media {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-media {
    justify-content: flex-end;
    align-self: center;
  }
}

.hero-photo-card {
  width: min(52vw, 280px);
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--palette-honey);
  box-shadow: var(--shadow-lift);
  background: var(--palette-honey);
  animation: hero-card-float 5.5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-photo-card {
    width: min(34vw, 320px);
  }
}

@media (min-width: 1024px) {
  .hero-photo-card {
    width: min(30vw, 360px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-card {
    animation: none;
  }
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-body);
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}

.hero-title {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-ink);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title-accent {
  display: block;
  color: var(--palette-petal);
  font-style: italic;
  font-weight: 500;
  margin-top: 0.12em;
}

.hero-lede {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-body);
  margin: 0 0 var(--space-lg);
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Professional CTAs: outline default, fill on hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease-refined),
    color var(--dur) var(--ease-refined),
    border-color var(--dur) var(--ease-refined),
    box-shadow var(--dur) var(--ease-refined),
    transform var(--dur) var(--ease-refined);
}

.btn-primary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--palette-petal);
  box-shadow: 0 0 0 0 rgba(223, 204, 177, 0);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--palette-mint), var(--palette-honey));
  color: var(--color-ink);
  border-color: var(--palette-sage);
  box-shadow: 0 10px 32px rgba(152, 160, 134, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: rgba(223, 204, 177, 0.75);
}

.btn-secondary:hover {
  border-color: var(--palette-petal);
  color: var(--color-ink);
  background: rgba(223, 204, 177, 0.35);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.btn-submit {
  width: 100%;
  margin-top: var(--space-xs);
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--palette-honey);
}

.btn-submit:hover {
  background: var(--palette-honey);
  color: var(--color-ink);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(223, 204, 177, 0.45);
  border: 1px solid var(--palette-petal);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--color-body);
  max-width: 100%;
}

.hero-badge-stars {
  color: var(--palette-honey);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-reveal {
  opacity: 0;
  animation: fade-up var(--dur) var(--ease-refined) forwards;
  animation-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal {
    opacity: 1;
    animation: none;
  }
}

/* ——— Proof bar ——— */
.proof-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--palette-petal);
  background: rgba(223, 204, 177, 0.55);
  backdrop-filter: blur(8px);
}

.proof-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(167, 109, 94, 0.45), rgba(223, 204, 177, 0.5), transparent);
  transform: skewX(-10deg);
  opacity: 0.7;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
  display: grid;
  gap: var(--space-md);
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-ink);
  font-weight: 600;
  margin-bottom: var(--space-3xs);
}

.proof-item span {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.proof-divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: var(--color-border);
  align-self: center;
}

/* ——— Sections shared ——— */
main > section:not(.hero) {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) var(--space-md);
}

.section-head {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}

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

.section-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-body);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: var(--space-md) 0 0;
  font-size: 0.95rem;
  color: var(--color-body);
  line-height: 1.65;
  max-width: 42rem;
}

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

.services .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ——— Services ——— */
.services {
  background: linear-gradient(180deg, var(--palette-petal) 0%, var(--palette-honey) 55%, var(--palette-sage) 100%);
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.service-card {
  position: relative;
  z-index: 1;
  background: rgba(152, 160, 134, 0.35);
  border: 1px solid rgba(223, 204, 177, 0.75);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition:
    transform var(--dur) var(--ease-refined),
    box-shadow var(--dur) var(--ease-refined),
    border-color var(--dur) var(--ease-refined);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-accent-dim);
}

.service-card:hover .service-icon {
  color: var(--palette-petal);
  background: rgba(152, 160, 134, 0.18);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(223, 204, 177, 0.2);
  color: var(--palette-honey);
  margin-bottom: var(--space-md);
  transition:
    color var(--dur) var(--ease-refined),
    background var(--dur) var(--ease-refined);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 var(--space-xs);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* ——— Why ——— */
.why {
  background: linear-gradient(180deg, var(--palette-sage) 0%, var(--palette-mint) 50%, var(--palette-honey) 100%);
  color: var(--color-body);
}

.why .section-eyebrow {
  color: var(--color-body);
}

.why .section-title {
  color: var(--color-ink);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.why-list {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 2px;
  background: rgba(152, 160, 134, 0.35);
  color: var(--color-ink);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.why-list strong {
  color: var(--color-ink);
}

.why-figure {
  margin: 0;
  position: relative;
  z-index: 1;
}

.why-figure img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: block;
}

.why-caption {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ——— Testimonials (compact professional grid) ——— */
.testimonials {
  background: var(--palette-petal);
  padding-bottom: var(--space-3xl) !important;
}

.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.testimonial-card {
  margin: 0;
  padding: var(--space-md) var(--space-lg);
  background: rgba(223, 204, 177, 0.55);
  border: 1px solid rgba(223, 204, 177, 0.85);
  border-radius: var(--radius-md);
  color: var(--color-body);
  transition:
    border-color var(--dur) var(--ease-refined),
    background var(--dur) var(--ease-refined);
}

.testimonial-card:hover {
  border-color: var(--palette-mint);
  background: rgba(152, 160, 134, 0.45);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-ink);
  margin: var(--space-sm) 0 var(--space-md);
}

.testimonial-card footer {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.stars {
  color: var(--palette-honey);
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

/* ——— Contact ——— */
.contact {
  background: linear-gradient(165deg, var(--palette-mint) 0%, var(--palette-sage) 45%, var(--palette-honey) 100%);
  border-top: 1px solid var(--palette-petal);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
}

.contact-lede {
  color: var(--color-body);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 28rem;
}

.contact-address {
  font-style: normal;
  margin: var(--space-xl) 0 var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.65;
}

.contact-address strong {
  color: var(--color-ink);
}

.contact-area {
  font-size: 0.85rem;
  color: var(--color-body);
  line-height: 1.65;
  margin: 0 0 var(--space-sm);
  max-width: 36rem;
}

.contact-area strong {
  color: var(--color-ink);
}

.contact-hours {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

.quote-form {
  position: relative;
  background: rgba(152, 160, 134, 0.25);
  border: 1px solid rgba(223, 204, 177, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.quote-form label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-body);
  margin-top: var(--space-xs);
}

.quote-form label:first-of-type {
  margin-top: 0;
}

.quote-form input,
.quote-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(223, 204, 177, 0.75);
  background: rgba(223, 204, 177, 0.55);
  color: var(--color-ink);
  width: 100%;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--color-muted);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--palette-mint);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-body);
  min-height: 1.25rem;
  margin: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--palette-petal);
  padding: var(--space-xl) var(--space-md);
  background: var(--palette-honey);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.logo-mark--footer {
  border-color: rgba(223, 204, 177, 0.55);
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-ink);
  font-weight: 600;
}

.footer-tag {
  margin: var(--space-3xs) 0 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  color: var(--color-body);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--color-ink);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-contact a {
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--color-muted);
}

/* ——— Breakpoints ——— */
@media (min-width: 480px) {
  .proof-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .header-phone {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-inner {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

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

@media (min-width: 1024px) {
  .proof-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: var(--space-md);
  }

  .proof-divider {
    display: block;
  }

  .proof-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
