/* ============================================================
   Love in Action Homecare — main.css (single-page)
   ============================================================ */

html { scroll-behavior: smooth; }

/* ── 1. Reset + Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── 2. Design Tokens ───────────────────────────────────────── */
:root {
  --pink:       #F4C0D1;
  --rose:       #D4537E;
  --rose-dark:  #993556;
  --pale:       #FBEAF0;
  --dark:       #2a2023;
  --black:      #1a1a1a;
  --mid:        #888888;
  --border:     0.5px solid #F4C0D1;
}

/* ── 3. Accessibility ───────────────────────────────────────── */

/* Visually hidden but available to screen readers */
.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;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--rose);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* ── 4. Site Wrapper ────────────────────────────────────────── */
.site {
  border: var(--border);
  background: #fff;
}

/* ── 5. Navigation ──────────────────────────────────────────── */
/* Default: fully invisible — items float over the hero video */
.nav-logo {
  position: fixed;
  top: 16px;
  left: 40px;
  z-index: 101;
  transition: filter 0.4s ease;
}
.nav-logo--scrolled img {
  filter: brightness(0);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 40px;
  gap: 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0.5px solid transparent;
  box-shadow: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-collapsible {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.90);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  line-height: 0;
}
.nav--scrolled .nav-toggle {
  color: var(--dark);
  text-shadow: none;
}
.nav-toggle .icon-close { display: none; }
.nav--open .nav-toggle .icon-hamburger { display: none; }
.nav--open .nav-toggle .icon-close { display: block; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  padding: 12px 6px;
}
.nav-links a:hover { color: var(--pink); }

.nav--scrolled .nav-links a {
  color: #2a2023;
  text-shadow: none;
}
.nav--scrolled .nav-links a:hover { color: var(--rose); }

/* ── 6. Language Switcher ───────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
}
.lang-btn {
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
  background: none;
  border: none;
  padding: 12px 8px;
  cursor: pointer;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.lang-btn.active,
.lang-btn[aria-pressed="true"] { color: #fff; }
.lang-btn:hover { color: var(--pink); }

.lang-sep {
  color: rgba(255, 255, 255, 0.30);
  margin: 0 5px;
  font-size: 14px;
  font-weight: 300;
  pointer-events: none;
  transition: color 0.4s ease;
}

/* Scrolled — dark lang buttons */
.nav--scrolled .lang-btn { color: rgba(42,32,35,0.50); text-shadow: none; }
.nav--scrolled .lang-btn.active,
.nav--scrolled .lang-btn[aria-pressed="true"] { color: #2a2023; }
.nav--scrolled .lang-btn:hover { color: var(--rose); }
.nav--scrolled .lang-sep { color: rgba(42,32,35,0.25); }

/* Offset anchor targets so fixed nav doesn't cover them */
#main-content, #services, #reviews, #contact, #faq {
  scroll-margin-top: 72px;
}

/* ── 7. Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 56px;
  z-index: 2;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
}
.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}
.hero-nav-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.hero-nav a {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.hero-nav a::before {
  content: "→ ";
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
}
.hero-nav a:hover {
  color: #fff;
}
.hero-nav a:hover::before {
  opacity: 1;
  color: #fff;
}
.hero-nav a:active {
  transform: scale(0.93);
  opacity: 0.6;
}
@keyframes navLinkClick {
  0%   { color: #fff; opacity: 1; letter-spacing: 0.12em; }
  40%  { color: var(--pink); opacity: 0.8; letter-spacing: 0.18em; }
  100% { color: rgba(255,255,255,0.8); opacity: 1; letter-spacing: 0.06em; }
}
.hero-nav a.nav-clicked {
  animation: navLinkClick 0.45s ease both;
}
.hero-tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 200;
  line-height: 1.1;
  color: #fff;
  max-width: 620px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--rose);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.88;
}
.hero-credential {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  font-weight: 400;
}


/* ── 8. Scroll hint (large screens only) ───────────────────── */
@media (min-width: 1024px) {
  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.4s ease;
    text-decoration: none;
    animation: scrollBounce 1.8s ease-in-out infinite;
  }
  .scroll-hint:hover { opacity: 1; }
  .scroll-hint__chevron {
    display: block;
    width: 22px;
    height: 22px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
  }
  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
  }
}

/* ── 9. Intro / Mission ─────────────────────────────────────── */
.intro {
  padding: 64px 56px;
  text-align: center;
  border-bottom: var(--border);
}
.intro-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.intro h2 {
  font-size: 32px;
  font-weight: 200;
  color: var(--black);
  line-height: 1.3;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* Two-column mission blocks */
.mission-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 860px;
  margin: 40px auto 0;
  text-align: left;
}
.mission-block-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.mission-block p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.85;
  font-weight: 400;
}

/* ── 9. Services Strip ──────────────────────────────────────── */
.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: var(--border);
}
.strip-item {
  padding: 48px 32px;
  border-right: var(--border);
  background: #fff;
  text-align: center;
}
.strip-item:last-child {
  border-right: none;
}
.strip-num {
  font-size: 14px;
  color: var(--rose);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.strip-item h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.strip-item p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
  max-width: 260px;
  margin: 0 auto;
}

/* ── 10. Reviews ────────────────────────────────────────────── */
.reviews {
  padding: 64px 56px;
  background: var(--pale);
  border-bottom: var(--border);
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.reviews-header h2 {
  font-size: 28px;
  font-weight: 200;
  color: var(--black);
  letter-spacing: -0.01em;
}
.reviews-body {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1050px;
  margin: 0 auto;
}
.reviews-grid {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: #fff;
  padding: 32px 28px;
  border: var(--border);
  display: flex;
  flex-direction: column;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--rose);
}
.review-text {
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: var(--border);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pale);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--rose-dark);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.review-date {
  font-size: 14px;
  color: var(--mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Review submission form ─────────────────────────────────── */
.review-form-wrap {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 88px;
  text-align: center;
}
.review-form-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.star-picker {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.star-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  line-height: 0;
}
.star-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 1.5px;
  transition: fill 0.12s, stroke 0.12s;
}
.star-btn.filled svg {
  fill: var(--rose);
  stroke: var(--rose);
}

/* ── 11. Contact ────────────────────────────────────────────── */
.contact {
  padding: 80px 56px;
  text-align: center;
  border-bottom: var(--border);
}
.contact-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact h2 {
  font-size: 28px;
  font-weight: 200;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.contact-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--black);
  line-height: 2;
}
.contact-row strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-row a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-row a:hover {
  color: var(--rose);
}

/* ── Contact: two-column inner layout ── */
.contact-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info {
  flex-shrink: 0;
}
.contact-info .contact-row {
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}
.contact-form-wrap {
  flex: 1;
  min-width: 0;
}

/* ── Contact form elements ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-row--half > .form-group {
  flex: 1;
  min-width: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.form-optional {
  font-size: 14px;
  color: var(--mid);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 13px;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--pink);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2rem;
}
.btn-submit {
  align-self: flex-start;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--rose-dark);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-feedback {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 13px;
}
.form-feedback--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@media (max-width: 768px) {
  .contact-inner {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .contact-info .contact-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
  }
  .form-row--half {
    flex-direction: column;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
  }
}

/* ── 12. FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 80px 56px;
  border-bottom: var(--border);
  max-width: 800px;
  margin: 0 auto;
}
.faq-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.faq-heading {
  font-size: 28px;
  font-weight: 200;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.faq-item {
  border-top: var(--border);
  padding: 0;
}
.faq-item:last-child {
  border-bottom: var(--border);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 200;
  color: var(--rose);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  padding-bottom: 20px;
}
.faq-item p a {
  color: var(--rose);
  text-decoration: none;
}
.faq-item p a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .faq {
    padding: 60px 24px;
  }
}

/* ── 13. Footer ─────────────────────────────────────────────── */
.footer {
  padding: 20px 40px;
  background: var(--pale);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer p {
  font-size: 14px;
  color: var(--rose-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer a {
  color: var(--rose-dark);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--rose);
}

/* ── Desktop: nav-links live in hero, not in top nav ────────── */
@media (min-width: 1024px) {
  .nav-links { display: none; }
  .nav-collapsible { justify-content: flex-end; }
}

/* ── 13. Responsive (768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  .nav-logo {
    top: 12px;
    left: 20px;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-collapsible {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    border-top: none;
  }
  .nav--scrolled .nav-collapsible {
    border-top-color: rgba(0, 0, 0, 0.06);
  }
  .nav--open .nav-collapsible {
    display: flex;
  }
  /* Liquid glass when open */
  .nav.nav--open {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.60), 0 4px 24px rgba(0, 0, 0, 0.07);
  }
  /* Open over hero — white text */
  .nav.nav--open .nav-links a,
  .nav.nav--open .nav-toggle {
    color: rgba(255, 255, 255, 0.90);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  }
  .nav.nav--open .nav-links a:hover { color: var(--pink); }
  .nav.nav--open .lang-btn { color: rgba(255, 255, 255, 0.60); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35); }
  .nav.nav--open .lang-btn[aria-pressed="true"] { color: #fff; }
  .nav.nav--open .lang-sep { color: rgba(255, 255, 255, 0.30); }
  .nav.nav--open .nav-collapsible { border-top-color: transparent; }

  /* Open while scrolled — dark text */
  .nav.nav--scrolled.nav--open .nav-links a,
  .nav.nav--scrolled.nav--open .nav-toggle {
    color: var(--dark);
    text-shadow: none;
  }
  .nav.nav--scrolled.nav--open .nav-links a:hover { color: var(--rose); }
  .nav.nav--scrolled.nav--open .lang-btn { color: rgba(42, 32, 35, 0.50); text-shadow: none; }
  .nav.nav--scrolled.nav--open .lang-btn[aria-pressed="true"] { color: var(--dark); }
  .nav.nav--scrolled.nav--open .lang-sep { color: rgba(42, 32, 35, 0.25); }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-links a {
    padding: 12px 0;
    width: 100%;
    display: block;
    text-align: right;
  }
  .lang-switcher {
    padding-top: 16px;
    width: 100%;
    justify-content: flex-end;
  }

  .hero {
    height: 100svh;
  }
  .hero-overlay {
    padding: 0 24px;
  }
  .hero-nav {
    display: none;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 13px;
  }

  .intro {
    padding: 64px 24px;
  }
  .intro h2 {
    font-size: 24px;
  }
  .mission-blocks {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .strip {
    grid-template-columns: 1fr;
  }
  .strip-item {
    border-right: none;
    border-bottom: var(--border);
    padding: 36px 24px;
  }
  .strip-item:last-child {
    border-bottom: none;
  }
  .strip-item p {
    max-width: none;
  }

  .reviews {
    padding: 64px 24px;
  }
  .reviews-body {
    flex-direction: column;
    gap: 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-form-wrap {
    width: auto;
    position: static;
    margin-top: 48px;
    padding-top: 48px;
    border-top: var(--border);
  }

  .contact {
    padding: 64px 24px;
  }
  .contact-row {
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── 14. Responsive (480px — phones) ───────────────────────── */
@media (max-width: 480px) {
  .nav {
    padding: 10px 16px;
  }
  .nav-logo img {
    height: 36px;
  }
  .contact-inner {
    align-items: stretch;
  }

  .hero {
    height: 100svh;
  }
  .hero-overlay {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .intro {
    padding: 48px 16px;
  }
  .intro h2 {
    font-size: 20px;
  }

  .reviews {
    padding: 48px 16px;
  }

  .contact {
    padding: 48px 16px;
  }
  .contact h2 {
    font-size: 22px;
  }

  .form-group label {
    letter-spacing: 0.08em;
  }

  .footer {
    padding: 16px 16px;
  }
}

/* ── 15. Services + Reviews — 2-col at mid-phone (481px–767px) ─ */
@media (min-width: 481px) and (max-width: 767px) {
  .strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .strip-item {
    border-right: var(--border);
    border-bottom: var(--border);
  }
  .strip-item:nth-child(2n) {
    border-right: none;
  }
  .strip-item:last-child {
    border-bottom: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 15b. Reviews — tablet side-by-side (769px–1023px) ─────── */
@media (min-width: 769px) and (max-width: 1023px) {
  .reviews-body {
    gap: 32px;
  }
  .review-form-wrap {
    width: 300px;
  }
  .reviews-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ── 16. Scroll-reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── 17. Hero entrance ──────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag        { animation: heroFadeUp 0.7s ease both; animation-delay: 0.2s; }
.hero-left h1    { animation: heroFadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero-left p     { animation: heroFadeUp 0.7s ease both; animation-delay: 0.6s; }
.hero-left .btn-primary    { animation: heroFadeUp 0.7s ease both; animation-delay: 0.75s; }
.hero-credential { animation: heroFadeUp 0.7s ease both; animation-delay: 0.85s; }
.hero-nav-label  { animation: heroFadeUp 0.5s ease both; animation-delay: 0.4s; }
.hero-nav a:nth-child(2) { animation: heroFadeUp 0.5s ease both; animation-delay: 0.5s; }
.hero-nav a:nth-child(3) { animation: heroFadeUp 0.5s ease both; animation-delay: 0.62s; }
.hero-nav a:nth-child(4) { animation: heroFadeUp 0.5s ease both; animation-delay: 0.74s; }
.hero-nav a:nth-child(5) { animation: heroFadeUp 0.5s ease both; animation-delay: 0.86s; }
.hero-nav a:nth-child(6) { animation: heroFadeUp 0.5s ease both; animation-delay: 0.98s; }

/* ── 18. Form feedback slide-in ─────────────────────────────── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-feedback:not([hidden]) {
  animation: slideDown 0.3s ease both;
}

/* ── 19. Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero video { display: none; }
  .reveal, .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
