:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6874;
  --night: #10151f;
  --navy: #12364a;
  --sky: #e8f6ff;
  --sky-strong: #bfe8ff;
  --sky-line: #b8dcef;
  --gold: #c99a43;
  --gold-dark: #8f6521;
  --gold-soft: #fff4da;
  --paper: #fbf8f1;
  --white: #ffffff;
  --line: #e6dcc9;
  --shadow: 0 22px 70px rgba(17, 24, 39, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.visually-hidden, .skip-link:not(:focus) {
  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:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: #111;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(201, 154, 67, .26);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.brand {
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--gold-dark); }
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}
.primary-nav a {
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #111;
}
.menu-toggle { display: none; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: min(760px, calc(100vh - 76px));
  background: linear-gradient(135deg, var(--sky) 0%, var(--white) 46%, var(--gold-soft) 100%);
}
.hero-copy {
  align-self: center;
  padding: clamp(32px, 7vw, 92px);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.breadcrumbs a {
  color: var(--navy);
  text-decoration: none;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
}
h1, .section-head h2, .final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
}
h1 {
  max-width: 880px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  color: var(--night);
}
.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #354150;
  font-size: clamp(17px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-sky { border-color: var(--sky-line); background: var(--white); color: var(--navy); }
.hero-media {
  min-height: 420px;
  margin: 0;
  border-left: 1px solid rgba(201, 154, 67, .28);
}
.search-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  padding: 16px;
  border: 1px solid rgba(201, 154, 67, .34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.search-panel label, .lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}
textarea { padding: 12px; }
.qr-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}
.section-soft {
  background: linear-gradient(180deg, var(--sky) 0%, #f7fcff 100%);
}
.section-head {
  max-width: 1180px;
  margin: 0 auto 28px;
}
.section-head h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}
.card-grid, .property-grid, .process-grid, .logo-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.qr-card, .process-step, .info-panel, .property-card, .stat-grid article, .final-cta, .faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.qr-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.card-mark {
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--gold);
}
.qr-card h3, .process-step h3, .property-card h3, .info-panel h3 {
  font-size: 21px;
  line-height: 1.18;
}
.qr-card p, .process-step p, .property-card p, .info-panel p, .article-body p {
  color: var(--muted);
}
.text-link {
  margin-top: auto;
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: none;
}
.split, .contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: start;
}
.split > div > p, .article-body {
  font-size: 18px;
}
.info-panel {
  padding: 22px;
}
.info-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-grid article {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 18px;
}
.stat-grid strong {
  color: var(--gold-dark);
  font-size: 26px;
}
.stat-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.property-card {
  overflow: hidden;
}
.property-card figure {
  height: 230px;
  margin: 0;
}
.property-card div {
  padding: 20px;
}
.process-step {
  padding: 22px;
}
.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}
.logo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.logo-grid a {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.article-body {
  max-width: 900px;
  margin: 0 auto;
}
.article-body h2, .article-body h3 {
  margin-top: 28px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 18px 20px;
}
.faq-list summary {
  color: var(--night);
  font-weight: 900;
  cursor: pointer;
}
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.lead-form .wide { grid-column: 1 / -1; }
.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(44px, 7vw, 86px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(135deg, var(--night) 0%, var(--navy) 100%);
  color: var(--white);
}
.final-cta h2 {
  max-width: 680px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
}
.final-cta p { color: #d8e8f4; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 36px;
  padding: clamp(36px, 6vw, 72px);
  background: var(--night);
  color: var(--white);
}
.site-footer p, .site-footer a { color: #d8e8f4; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.footer-grid nav {
  display: grid;
  gap: 8px;
}
.footer-grid h2 {
  color: var(--gold);
  font-size: 15px;
}
.footer-grid a {
  text-decoration: none;
}
@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }
  .menu-toggle span:not(.visually-hidden) {
    width: 20px;
    height: 2px;
    background: var(--night);
  }
  .primary-nav {
    position: fixed;
    inset: 76px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero-media {
    min-height: 340px;
    border-left: 0;
    border-top: 1px solid rgba(201, 154, 67, .28);
  }
  .search-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-panel .btn { grid-column: 1 / -1; }
  .card-grid, .property-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split, .contact-layout, .site-footer { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .primary-nav { inset-top: 68px; }
  .hero-copy { padding: 28px 18px; }
  .hero-media { min-height: 260px; }
  .search-panel, .card-grid, .property-grid, .process-grid, .logo-grid, .lead-form, .footer-grid, .stat-grid {
    grid-template-columns: 1fr;
  }
  .qr-section { padding-left: 18px; padding-right: 18px; }
  .final-cta { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
}
