/* =========================================================
   Qlaio — Property Management for the Real and Virtual World
   styles.css
   ========================================================= */

/* ── Custom Properties ── */
:root {
  --navy:    #0B1F33;
  --ocean:   #1F6F8B;
  --teal:    #2AA8A1;
  --brass:   #D9A441;
  --mist:    #F4F8FA;
  --charcoal:#1E2933;
  --white:   #FFFFFF;

  --font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(11,31,51,.06), 0 2px 8px rgba(11,31,51,.04);
  --shadow-md: 0 4px 16px rgba(11,31,51,.10), 0 1px 4px rgba(11,31,51,.06);
  --shadow-lg: 0 8px 32px rgba(11,31,51,.13), 0 2px 8px rgba(11,31,51,.07);

  --max-width: 1160px;
  --section-v: 96px;
  --section-v-sm: 56px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--mist);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--teal); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.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;
}
.text-center { text-align: center; }
.text-brass  { color: var(--brass); }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { max-width: 68ch; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #3a4a58;
  max-width: 64ch;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, transform .12s;
  text-decoration: none;
  line-height: 1.4;
}
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(31,111,139,.35);
}
.btn-primary:hover {
  background: #185f78;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,111,139,.4);
}
.btn-secondary {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-secondary:hover { background: var(--ocean); color: var(--white); }
.btn-brass {
  background: var(--brass);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(217,164,65,.30);
}
.btn-brass:hover { background: #c7922d; color: var(--navy); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* SVG logo uses currentColor — white on dark header, no filter needed */
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  color: #ffffff;
}
.logo-img-footer {
  color: rgba(255,255,255,.75);
}
.logo-wordmark {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
}
.logo-wordmark span { color: var(--teal); }

/* ── Navigation ── */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .15s, background .15s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ── Hero (split layout) ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #122d47 60%, #0f3855 100%);
  color: var(--white);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(42,168,161,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(31,111,139,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Split layout */
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 520px;
}
.hero-trust svg { flex-shrink: 0; color: var(--teal); }

/* Hero image panel */
.hero-image-panel {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 4px 16px rgba(0,0,0,.25);
  max-width: 480px;
  width: 100%;
}
.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,31,51,.88);
  border: 1px solid rgba(42,168,161,.4);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.hero-img-badge svg { color: var(--teal); flex-shrink: 0; }

/* ── Section scaffolding ── */
.section { padding: var(--section-v) 0; }
.section-sm { padding: var(--section-v-sm) 0; }
.section-header { margin-bottom: 56px; }
.section-header p { margin-top: 16px; color: #4a5a6a; }

/* ── Floor Directory ── */
.floors-section { background: var(--white); }

/* Intro block — text left, two photos stacked right */
.floors-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.floors-intro-text .lead {
  margin-top: 16px;
  max-width: 52ch;
}
.floors-intro-images {
  display: flex;
  gap: 12px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.floors-img-main {
  flex: 1 1 65%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.floors-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.floors-img-main:hover img { transform: scale(1.03); }
.floors-img-accent {
  flex: 1 1 35%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.floors-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.floors-img-accent:hover img { transform: scale(1.03); }

/* Floor cards grid */
.floors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.floor-card {
  background: var(--mist);
  border: 1.5px solid #e2eaf0;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.floor-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateY(-3px);
  color: inherit;
}
.floor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ocean);
  background: rgba(31,111,139,.09);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.floor-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}
.floor-icon svg { width: 22px; height: 22px; }
.floor-card h3 { margin-bottom: 10px; color: var(--navy); }
.floor-card p { font-size: .93rem; color: #4a5a6a; margin: 0; max-width: none; }
.floor-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ocean);
}
.floor-link svg { width: 14px; height: 14px; transition: transform .15s; }
.floor-card:hover .floor-link svg { transform: translateX(3px); }

/* ── Photo Strip ── */
.photo-strip-section { background: var(--mist); }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.photo-card {
  background: var(--white);
  border: 1.5px solid #e2eaf0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.photo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.photo-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-card:hover .photo-card-img img { transform: scale(1.04); }
.photo-card-body {
  padding: 24px 26px 28px;
}
.photo-card-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  max-width: none;
}
.photo-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.photo-card-body p { font-size: .9rem; color: #4a5a6a; margin-bottom: 16px; max-width: none; }
.photo-card-body .floor-link { margin-top: 0; }

/* ── Why Qlaio ── */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, #122d47 100%);
  color: var(--white);
}
.why-section h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-content .lead { color: rgba(255,255,255,.8); max-width: 56ch; }
.why-content p { color: rgba(255,255,255,.65); margin-top: 16px; max-width: 56ch; }
.why-photo-wrap {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.why-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}
.pillar-icon { color: var(--teal); margin-bottom: 12px; }
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h4 { color: var(--white); font-size: .95rem; margin-bottom: 6px; }
.pillar p { font-size: .875rem; color: rgba(255,255,255,.58); margin: 0; max-width: none; }

/* ── Who We Help ── */
.who-section { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.who-card {
  background: var(--mist);
  border: 1.5px solid #e2eaf0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.who-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.who-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.who-card:hover .who-img img { transform: scale(1.04); }
.who-body {
  padding: 24px;
}
.who-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.who-body p { font-size: .9rem; color: #4a5a6a; margin: 0; max-width: none; }

/* ── Featured Offer ── */
.offer-section { background: var(--mist); }
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #dce8f0;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.offer-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(217,164,65,.12);
  color: #a07020;
  border: 1px solid rgba(217,164,65,.25);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.offer-content h2 { margin-bottom: 16px; }
.offer-content p { color: #4a5a6a; max-width: 54ch; }
.offer-price {
  text-align: center;
  background: var(--mist);
  border: 1.5px solid #dce8f0;
  border-radius: var(--radius-md);
  padding: 36px 40px;
  min-width: 220px;
  flex-shrink: 0;
}
.offer-price .from { font-size: .78rem; color: #7a8a96; font-weight: 600; display: block; margin-bottom: 4px; }
.offer-price .amount { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.offer-price .amount span { font-size: 1.5rem; vertical-align: super; font-weight: 700; }
.offer-price .sub { font-size: .8rem; color: #7a8a96; margin-bottom: 20px; }
.offer-price .btn { width: 100%; justify-content: center; }

/* ── Services Page ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #122d47 100%);
  padding: 72px 0 80px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.75); }
.service-block { padding: var(--section-v) 0; border-bottom: 1px solid #dce8f0; }
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) { background: var(--white); }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-img {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.service-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-number {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.service-layout h2 { margin-bottom: 16px; }
.service-layout p { color: #4a5a6a; }
.service-list { display: grid; gap: 12px; margin-top: 24px; }
.service-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--mist);
  border: 1px solid #e2eaf0;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.service-item svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.service-item-text h4 { font-size: .9rem; margin-bottom: 2px; color: var(--navy); }
.service-item-text p { font-size: .85rem; color: #5a6a78; margin: 0; max-width: none; }

/* ── Pricing Page ── */
.pricing-intro { background: var(--navy); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid #dce8f0;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(31,111,139,.12), var(--shadow-md);
}
.pricing-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-teal  { background: rgba(42,168,161,.12); color: #1c827d; }
.badge-ocean { background: rgba(31,111,139,.12); color: #155a6e; }
.badge-brass { background: rgba(217,164,65,.15); color: #8a6418; }
.badge-navy  { background: rgba(11,31,51,.08); color: var(--navy); }
.pricing-card h3 { margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.price-row .currency { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.price-row .amount { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-row .period { font-size: .9rem; color: #7a8a96; }
.price-note { font-size: .8rem; color: #7a8a96; margin-bottom: 24px; }
.pricing-desc { font-size: .9rem; color: #4a5a6a; margin-bottom: 24px; max-width: none; }
.pricing-divider { height: 1px; background: #e8eef4; margin: 24px 0; }
.pricing-features { display: grid; gap: 10px; margin-bottom: 32px; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: #3a4a58; }
.feat-item svg { flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-story h2 { margin-bottom: 20px; }
.about-story p { color: #4a5a6a; margin-bottom: 16px; }
.about-values { display: grid; gap: 20px; }
.value-item { border-left: 3px solid var(--teal); padding-left: 20px; }
.value-item h4 { color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: .9rem; color: #4a5a6a; margin: 0; max-width: none; }
.about-audience { background: var(--white); border-top: 1px solid #dce8f0; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.audience-card {
  background: var(--mist);
  border: 1px solid #e2eaf0;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.audience-card svg { color: var(--ocean); margin: 0 auto 12px; }
.audience-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.audience-card p { font-size: .85rem; color: #5a6a78; margin: 0; max-width: none; }

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: #4a5a6a; margin-bottom: 32px; max-width: none; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(31,111,139,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocean);
}
.contact-detail-text h4 { font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.contact-detail-text a,
.contact-detail-text p { font-size: .9rem; color: #4a5a6a; margin: 0; }
.contact-detail-text a:hover { color: var(--ocean); }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid #dce8f0;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { font-size: .9rem; color: #5a6a78; margin-bottom: 32px; max-width: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d0dce6;
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: var(--charcoal);
  font-size: .9rem;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31,111,139,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E2933' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-notice { font-size: .8rem; color: #7a8a96; margin-top: 12px; }
.form-notice a { color: var(--ocean); }
.form-submit .btn { width: 100%; justify-content: center; padding: 14px; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-wordmark { margin-top: 0; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: 16px; max-width: 28ch; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.62); transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { font-size: .8rem; color: rgba(255,255,255,.38); }

/* ── Page hero breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal) 100%);
  padding: 72px 0;
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.82); margin: 0 auto 32px; max-width: 56ch; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.btn-white { background: var(--white); color: var(--ocean); font-weight: 700; }
.btn-white:hover { background: #eaf4f8; color: var(--ocean); }

/* ── Dividers ── */
.spacer-lg { height: 64px; }
.spacer-sm { height: 32px; }
.divider { height: 1px; background: #dce8f0; margin: 48px 0; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-image-panel { display: none; }
  .hero-content { max-width: 100%; }
  .floors-intro { grid-template-columns: 1fr; gap: 32px; }
  .floors-intro-images { height: 280px; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-layout { grid-template-columns: 1fr; gap: 32px; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-price { min-width: 0; width: 100%; max-width: 320px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; --section-v-sm: 40px; }

  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; }

  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .site-nav.open + .header-cta { display: none; }

  .hero { padding: 56px 0 64px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .floors-intro { grid-template-columns: 1fr; }
  .floors-intro-images { height: 220px; }
  .floors-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }

  .offer-card { padding: 36px 28px; }
  .offer-price { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
  .floors-intro-images { height: 180px; }
}

/* ── Focus/accessibility ── */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
[data-skip-nav] {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 8px 16px;
  background: var(--teal);
  color: white;
  z-index: 9999;
}
[data-skip-nav]:focus { left: 8px; }