/* Leaseway — leaseway.in */
:root {
  --bg: #f6f2ec;
  --bg-alt: #fdfaf6;
  --surface: #ffffff;
  --ink: #141c28;
  --ink-muted: #4b5569;
  --ink-soft: #6b7285;
  --accent: #0c5c50;
  --accent-hover: #094a41;
  --accent-muted: #3d8a7d;
  --accent-soft: rgba(12, 92, 80, 0.09);
  --accent-line: rgba(12, 92, 80, 0.22);
  --gold: #9a7b2d;
  --warm-peach: #fcefe6;
  --warm-mint: #e8f4f1;
  --warm-sand: #f3e9dc;
  --border: #e4dfd4;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 22px 55px rgba(20, 28, 40, 0.07);
  --shadow-sm: 0 8px 30px rgba(20, 28, 40, 0.06);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*,
*::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-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", var(--font-sans);
}

html[lang="hi"] .hero h1,
html[lang="hi"] .section-head h2,
html[lang="hi"] .contact-title,
html[lang="hi"] .owner-block h2,
html[lang="hi"] .card h3,
html[lang="hi"] .process-step h3,
html[lang="hi"] .listing-card h3,
html[lang="hi"] .footer-heading,
html[lang="hi"] .logo,
html[lang="hi"] .about-pullquote p,
html[lang="hi"] .tagline-strip {
  font-family: "Noto Sans Devanagari", var(--font-sans);
  font-weight: 700;
}

html[lang="hi"] .hero h1,
html[lang="hi"] .section-head h2,
html[lang="hi"] .contact-title {
  font-weight: 700;
  letter-spacing: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  z-index: 10001;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

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

.btn:focus-visible {
  outline-offset: 2px;
}

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

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 241, 235, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.logo--invert {
  color: #f0f2f6;
}

.logo--invert span {
  color: #7ecbbe;
}

.nav-desktop {
  display: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(20, 28, 40, 0.06);
  border: 1px solid var(--border);
}

.lang-switch--drawer {
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.lang-switch--desktop {
  display: none;
}

@media (min-width: 960px) {
  .lang-switch--desktop {
    display: inline-flex;
  }
}

.lang-btn {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: 0 1px 4px rgba(20, 28, 40, 0.08);
}


.header-cta-desktop {
  display: none;
}

@media (min-width: 960px) {
  .header-cta-desktop {
    display: inline-flex;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

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

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

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

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

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

.nav-drawer {
  position: fixed;
  inset: 0;
  top: 57px;
  z-index: 999;
  background: rgba(244, 241, 235, 0.98);
  padding: 1.25rem 1.25rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease);
}

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

.nav-drawer[aria-hidden="true"]:not(.is-open) {
  pointer-events: none;
}

.nav-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer-links a:not(.btn) {
  display: block;
  padding: 0.85rem 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}

.nav-drawer-links .btn {
  margin-top: 1rem;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.4rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 92, 80, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(12, 92, 80, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-line);
}

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

.btn-light {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.btn-light:hover {
  background: #f6faf9;
}

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

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.25rem) 0 clamp(3.5rem, 9vw, 5.5rem);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 50% at 12% 20%, rgba(252, 239, 230, 0.95), transparent 52%),
    radial-gradient(ellipse 80% 55% at 88% 18%, rgba(232, 244, 241, 0.9), transparent 50%),
    radial-gradient(ellipse 70% 45% at 10% 90%, rgba(154, 123, 45, 0.07), transparent 45%),
    linear-gradient(168deg, var(--bg-alt) 0%, var(--bg) 50%, var(--warm-sand) 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(20, 28, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 28, 40, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 85%, transparent);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.25rem;
  align-items: stretch;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  margin-inline: auto;
}

.hero-illustration {
  width: 100%;
  max-width: 180px;
  height: auto;
  opacity: 0.92;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(100px, 0.38fr) minmax(0, 0.95fr);
    gap: 1.5rem 2rem;
    align-items: center;
  }

  .hero-visual {
    max-width: none;
    margin-inline: 0;
  }

  .hero-illustration {
    max-width: 200px;
  }
}

@media (max-width: 899px) {
  .hero-visual {
    order: 2;
  }

  .hero-card {
    order: 3;
  }

  .hero-copy {
    order: 1;
  }
}

.hero-copy {
  position: relative;
}

.hero-welcome {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hero-one-line {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: 40rem;
  font-weight: 500;
}

.hero-glance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.hero-glance li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(135deg, #fff 0%, var(--warm-mint) 100%);
  border: 1px solid rgba(12, 92, 80, 0.15);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(12, 92, 80, 0.06);
}

.hero-glance li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-muted);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-illustration {
    animation: hero-float 7s ease-in-out infinite;
  }

  .welcome-scene-svg {
    animation: hero-float 9s ease-in-out infinite;
  }
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--accent-line);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-sm);
}

.plain-lang-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.45;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.8vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 38ch;
  margin: 0 0 1.65rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-trust li {
  position: relative;
  padding-left: 1rem;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-muted);
}

.tagline-strip {
  margin-top: 1.35rem;
  font-size: 0.95rem;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 1.75rem 1.65rem 1.5rem;
  overflow: hidden;
}

.hero-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-muted));
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.hero-card-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

.hero-card-note {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 0;
}

@media (min-width: 720px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.25rem 0;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.trust-item-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.trust-item-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.25rem) 0;
}

.section-tight {
  padding-top: clamp(2rem, 4vw, 2.5rem);
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

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

.section-head--narrow {
  max-width: 560px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ink-muted);
}

.section-sub {
  margin: 0.75rem 0 0 !important;
  font-size: 1rem;
  max-width: 52ch;
}

.section-head--center .section-sub {
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-lead-gap {
  margin-top: 1rem !important;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr minmax(240px, 320px);
    gap: 3rem;
  }
}

.about-pullquote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-pullquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}

.about-pullquote footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ink-soft);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .cards.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.45rem;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.card--lift {
  transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

@media (hover: hover) {
  .card--lift:hover {
    border-color: rgba(12, 92, 80, 0.28);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
  }
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.svc-icon {
  flex-shrink: 0;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 0.55rem;
  line-height: 1.25;
}

.card-badge {
  display: inline-block;
  margin-left: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  vertical-align: middle;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
}

.card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-muted);
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.card li + li {
  margin-top: 0.28rem;
}

/* Process */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  position: relative;
}

.process-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.65rem;
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.process-step p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-muted);
}

/* Why */
.why-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .why-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }

  .why-layout .section-head {
    margin-bottom: 0;
  }
}

.check-list-pro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-list-pro li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.check-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Owner */
.owner-block {
  background: linear-gradient(145deg, #0c5c50 0%, #0a453c 48%, #07332c 100%);
  color: #eef6f4;
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.owner-block-inner {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .owner-block-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
  }
}

.owner-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  margin: 0 0 0.65rem;
  color: #fff;
}

.owner-lead {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0 0 1rem !important;
  max-width: 48ch;
}

.owner-block p {
  margin: 0 0 0.85rem;
  opacity: 0.92;
  max-width: 52ch;
}

.owner-block ul {
  margin: 0 0 0;
  padding-left: 1.2rem;
  opacity: 0.94;
}

.owner-block li + li {
  margin-top: 0.35rem;
}

.owner-block-cta {
  text-align: left;
}

@media (min-width: 720px) {
  .owner-block-cta {
    text-align: right;
    min-width: 220px;
  }
}

.owner-disclaimer {
  margin: 0.85rem 0 0 !important;
  font-size: 0.78rem !important;
  opacity: 0.75 !important;
  max-width: 280px;
  margin-left: auto !important;
}

@media (min-width: 720px) {
  .owner-disclaimer {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

/* Legal */
.legal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.35rem);
  font-size: 0.95rem;
  color: var(--ink-muted);
  box-shadow: var(--shadow-sm);
}

.legal-box--accent {
  border-left: 4px solid var(--accent);
}

.legal-box p {
  margin: 0 0 1rem;
}

.legal-box ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-box li + li {
  margin-top: 0.32rem;
}

.link-doc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.link-doc::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.link-doc:hover::after {
  transform: translateX(4px);
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.05rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item[open] p {
  border-top-color: var(--border);
  padding-top: 0.85rem;
}

/* Contact */
.contact-section .contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 3rem;
    align-items: center;
  }
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.contact-lead {
  margin: 0 0 1.35rem;
  color: var(--ink-muted);
  max-width: 42ch;
}

.form-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 48ch;
}

.form-error-banner {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(180, 60, 50, 0.08);
  border: 1px solid rgba(180, 60, 50, 0.35);
  color: #6b2e28;
}

.form-error-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field input {
  pointer-events: none;
  opacity: 0;
}

.lead-form {
  max-width: 520px;
}

.field {
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--accent-muted);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.field-file {
  display: block;
  width: 100%;
  font-size: 0.9rem;
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.field--submit {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.contact-ctas {
  margin-top: 0.25rem;
}

.thanks-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-alt);
}

.thanks-card {
  max-width: 440px;
  text-align: center;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.thanks-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
}

.thanks-body {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.thanks-note {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.contact-card-email {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-card-email a {
  text-decoration: none;
  color: var(--accent);
}

.contact-card-email a:hover {
  text-decoration: underline;
}

.contact-card-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.contact-card-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.contact-card-domain {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.mono {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #121a26 0%, #0e141f 100%);
  color: #c8ced9;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand .logo {
  margin-bottom: 0.65rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 28ch;
}

.footer-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a95a8;
  margin: 0 0 0.85rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #e8ecf2;
  text-decoration: none;
  font-size: 0.93rem;
  display: inline-block;
  padding: 0.28rem 0;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.88;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  opacity: 0.72;
}

.footer-bottom a {
  color: #aeb8c9;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Agreement page */
.agreement-page {
  padding: 2rem 0 4rem;
  background: var(--bg-alt);
  min-height: 100vh;
}

.agreement-lang-note {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-muted);
  background: rgba(12, 92, 80, 0.06);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-sm);
}

.agreement-doc {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.agreement-doc h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  text-align: center;
  margin: 0 0 0.25rem;
}

.agreement-doc .subtitle {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
}

.agreement-doc h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--ink);
}

.agreement-doc p,
.agreement-doc li {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0 0 0.65rem;
}

.agreement-doc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.agreement-nested {
  margin-top: 0.5rem;
  margin-bottom: 0.65rem;
}

.sign-line-spaced {
  margin-top: 2rem;
}

.agreement-doc .closing {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  text-align: center;
  color: var(--ink);
}

.sign-area {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 520px) {
  .sign-area {
    grid-template-columns: 1fr 1fr;
  }
}

.sign-line {
  border-top: 1px solid var(--ink);
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.agreement-actions {
  max-width: 800px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

@media print {
  .site-header,
  .skip-link,
  .agreement-lang-note {
    display: none !important;
  }

  .agreement-page {
    padding: 0;
    background: #fff;
  }

  .agreement-doc {
    box-shadow: none;
    border: none;
    max-width: none;
    padding: 0;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Welcome strip — trust & warmth */
.welcome-strip {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: linear-gradient(118deg, var(--warm-peach) 0%, #fff 42%, var(--warm-mint) 100%);
  border-bottom: 1px solid var(--border);
}

.welcome-strip-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .welcome-strip-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.42fr);
    gap: 2.5rem 3rem;
  }
}

.welcome-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-muted);
}

.welcome-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.welcome-strip-lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 48ch;
}

.welcome-warm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.welcome-warm-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}

.welcome-warm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-muted);
  opacity: 0.85;
}

.welcome-strip-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  margin-inline: auto;
}

.welcome-scene-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(12, 92, 80, 0.08));
}

/* Scroll reveal — hidden only when JS adds .lw-reveal on <html> */
html.lw-reveal .reveal-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

html.lw-reveal .reveal-on-scroll {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.lw-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.lw-reveal .reveal-on-scroll:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Owner listings (homepage — loaded via listings.js) */
.listings-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .listings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.listing-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.listing-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}

.listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-muted);
  opacity: 0.55;
}

.listing-card__count {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(20, 28, 40, 0.72);
  color: #fff;
}

.listing-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.listing-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
}

.listing-card__meta {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.listing-card__summary {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.listing-card__details {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.listing-card__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.listing-card__thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.listings-empty {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
  max-width: 42rem;
  margin-inline: auto;
}
