:root {
  color-scheme: light;
  --ink: #071a33;
  --muted: #667085;
  --line: #d8dee8;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --accent: #071a33;
  --accent-strong: #0b2342;
  --gold: #b98721;
  --gold-strong: #946713;
  --rose: #b54a62;
  --shadow: 0 18px 50px rgba(31, 41, 51, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 76px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand small,
.muted,
.eyebrow {
  color: var(--muted);
}

.nav-actions,
.modal-actions,
.content-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.icon-button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.icon-button {
  width: 42px;
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.primary-button {
  gap: 8px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: white;
  font-weight: 750;
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.ghost-button {
  gap: 8px;
  padding: 0 14px;
  background: white;
  border-color: var(--line);
  color: var(--ink);
  font-weight: 700;
}

svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.15;
}

main {
  padding: 26px clamp(16px, 4vw, 44px) 48px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(16px, 4vw, 44px);
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-footer img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.site-footer span,
.site-footer strong {
  color: var(--ink);
  font-weight: 900;
}

.site-footer p {
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: stretch;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.82)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=85") center/cover;
  color: white;
  border-radius: 8px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 68px);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f2c66d;
}

.hero-subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  color: #d8e1ec;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ghost-on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stats span {
  min-width: 138px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
}

.profile-card {
  align-self: center;
  display: grid;
  gap: 16px;
  margin: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-photo-button {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  padding: 4px;
  border: 0;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #feda77);
  border-radius: 999px;
}

.profile-photo-button span,
.profile-photo-button img {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 4px solid white;
  background: var(--ink);
  color: var(--gold);
  border-radius: inherit;
  font-size: 1.45rem;
  font-weight: 900;
  object-fit: cover;
}

.profile-handle {
  margin: 0;
  color: var(--gold-strong);
  font-weight: 900;
}

.profile-card h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.profile-stats span {
  display: grid;
  gap: 2px;
  min-height: 64px;
  align-content: center;
  padding: 8px;
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.profile-stats strong {
  color: var(--ink);
  font-size: 1rem;
}

.profile-link {
  width: 100%;
}

.admin-only {
  display: none !important;
}

.brand-divider {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto auto minmax(20px, 1fr);
  align-items: center;
  gap: 18px;
  margin: 18px 0;
  padding: 12px 0;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 135, 33, 0.75), transparent);
}

.brand-divider img {
  width: 96px;
  height: 70px;
  object-fit: contain;
}

.brand-divider strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  text-align: center;
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.authority-strip article {
  display: grid;
  gap: 9px;
  min-height: 150px;
  align-content: start;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.authority-strip svg {
  color: var(--gold-strong);
}

.authority-strip strong {
  font-size: 1.04rem;
}

.authority-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.professional-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.professional-copy {
  align-self: center;
}

.professional-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.professional-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.professional-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 190px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.professional-grid svg {
  color: var(--gold-strong);
}

.professional-grid strong {
  font-size: 1.08rem;
}

.professional-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.number-one-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  margin-top: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.92), rgba(255, 255, 255, 0.96)),
    white;
  border: 1px solid #f1d8a7;
  border-radius: 8px;
}

.number-one-copy {
  align-self: center;
}

.number-one-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.number-one-copy p {
  max-width: 620px;
  color: #475467;
  line-height: 1.6;
}

.number-one-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.number-one-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: start;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.number-one-grid span {
  color: var(--gold-strong);
  font-weight: 950;
}

.number-one-grid strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.number-one-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.method-section {
  margin-top: 22px;
  padding: 22px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}

.method-section .eyebrow {
  color: #f2c66d;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.method-timeline article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  align-content: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.method-timeline span {
  color: #f2c66d;
  font-size: 0.85rem;
  font-weight: 950;
}

.method-timeline strong {
  font-size: 1.16rem;
}

.method-timeline p {
  margin: 0;
  color: #d8e1ec;
  line-height: 1.5;
}

.exterior-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  margin-top: 22px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.exterior-media {
  display: grid;
  min-height: 320px;
  place-items: end start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.05), rgba(7, 26, 51, 0.74)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1000&q=85") center/cover;
  border-radius: 8px;
}

.exterior-media span {
  color: white;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.exterior-copy {
  align-self: center;
  display: grid;
  gap: 14px;
}

.exterior-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.exterior-copy p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.6;
}

.process-list {
  display: grid;
  gap: 8px;
}

.process-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-weight: 760;
}

.process-list strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: #fff7e8;
  color: var(--gold-strong);
  border-radius: 999px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.trust-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 72px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
}

.trust-strip svg {
  color: var(--gold);
}

.video-section,
.proof-gallery-section,
.zones-section,
.testimonials-section,
.client-ready-section,
.faq-section {
  margin-top: 22px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-grid article,
.testimonial-grid article {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.video-thumb {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #d7dde7 center/cover;
  border-radius: 8px;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  display: grid;
  content: "▶";
  place-items: center;
  background: rgba(7, 26, 51, 0.26);
  color: white;
  font-size: 2.2rem;
}

.video-buy {
  background-image: url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=900&q=85");
}

.video-guide {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=900&q=85");
}

.video-invest {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=85");
}

.video-grid strong,
.testimonial-grid strong {
  font-size: 1.08rem;
}

.video-grid span,
.testimonial-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
}

.proof-main,
.proof-side-grid article {
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-main {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.proof-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-side-grid article {
  display: grid;
  grid-template-rows: 190px auto auto;
  gap: 10px;
}

.proof-media {
  position: relative;
  min-height: 190px;
  background: #d7dde7 center/cover;
}

.proof-main .proof-media {
  min-height: 360px;
}

.proof-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 26, 51, 0.02), rgba(7, 26, 51, 0.58));
}

.proof-video-main {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1300&q=85");
}

.proof-keys {
  background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=900&q=85");
}

.proof-ready {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=85");
}

.proof-client {
  background-image: url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=900&q=85");
}

.proof-zone {
  background-image: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=900&q=85");
}

.media-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.media-chip svg {
  color: var(--gold-strong);
}

.proof-copy {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.proof-copy span {
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-copy strong {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.04;
}

.proof-copy p,
.proof-side-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.proof-side-grid strong,
.proof-side-grid p {
  padding: 0 14px;
}

.proof-side-grid p {
  padding-bottom: 14px;
}

.testimonial-grid article {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimonial-grid p {
  margin: 0;
  color: #344054;
  line-height: 1.55;
}

.zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zones-grid span {
  padding: 10px 12px;
  background: #fff7e8;
  color: var(--gold-strong);
  border: 1px solid #f1d8a7;
  border-radius: 999px;
  font-weight: 850;
}

.ready-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ready-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  align-content: start;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ready-grid svg {
  color: var(--gold-strong);
}

.ready-grid strong {
  font-size: 1.05rem;
}

.ready-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.faq-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  align-content: start;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.86)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1200&q=85") center/cover;
  color: white;
  border-radius: 8px;
}

.closing-cta .eyebrow {
  color: #f2c66d;
}

.closing-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.delivered-section {
  margin-top: 22px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.delivered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.delivered-grid article {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.delivered-photo {
  min-height: 220px;
  border-radius: 8px;
  background: #d7dde7 center/cover;
}

.delivered-award {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=85");
}

.delivered-family {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=85");
}

.delivered-investor {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=900&q=85");
}

.delivered-grid strong {
  font-size: 1.05rem;
}

.delivered-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.portfolio-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.portfolio-metrics span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  align-content: center;
  padding: 14px;
  background: var(--ink);
  color: #d8e1ec;
  border-radius: 8px;
}

.portfolio-metrics strong {
  color: #f2c66d;
  font-size: 1.5rem;
  line-height: 1;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.portfolio-tabs a {
  padding: 10px 14px;
  background: #fff7e8;
  color: var(--gold-strong);
  border: 1px solid #f1d8a7;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-case {
  grid-column: span 2;
}

.case-photo {
  min-height: 230px;
  background: #d7dde7 center/cover;
}

.featured-case .case-photo {
  min-height: 280px;
}

.case-award {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1100&q=85");
}

.case-family {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=85");
}

.case-investor {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=85");
}

.case-project {
  background-image: url("https://images.unsplash.com/photo-1600047509358-9dc75507daeb?auto=format&fit=crop&w=900&q=85");
}

.case-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.case-copy strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.case-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.case-copy a {
  color: var(--gold-strong);
  font-weight: 900;
  text-decoration: none;
}

.case-status {
  width: max-content;
  padding: 7px 9px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.case-status.delivered {
  background: #128c7e;
}

.case-status.ready {
  background: var(--gold-strong);
}

.case-status.project {
  background: var(--rose);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  margin-top: 22px;
  padding: 24px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}

.lead-copy {
  align-self: center;
}

.lead-copy .eyebrow {
  color: #f2c66d;
}

.lead-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.lead-copy p {
  max-width: 520px;
  color: #d8e1ec;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
}

.lead-form button {
  align-self: end;
}

.workspace {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.panel,
.content-area {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel {
  align-self: start;
  position: sticky;
  top: 86px;
  padding: 18px;
}

.panel-section + .panel-section {
  margin-top: 22px;
}

.field-label,
label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 12px;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-field input {
  padding-left: 42px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: #edf2f7;
  border-radius: 8px;
}

.segmented button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.segmented button.active {
  background: white;
  color: var(--gold-strong);
  box-shadow: 0 1px 5px rgba(31, 41, 51, 0.1);
}

.range-row {
  gap: 10px;
}

.range-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.content-area {
  min-width: 0;
  padding: 20px;
}

.content-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.content-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.content-note {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.inventory-secondary {
  opacity: 0.96;
}

.inventory-secondary .content-area {
  border-color: #e7c982;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.listing-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.06);
}

.listing-card button {
  display: grid;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
}

.card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #d6dde4 center/cover;
}

.card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5));
}

.badge {
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 10px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.reference-badge {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 10px;
  padding: 7px 9px;
  background: rgba(7, 26, 51, 0.9);
  color: white;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.card-hook {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: white;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

.badge.project {
  color: var(--rose);
}

.card-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.card-copy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  line-height: 1.22;
}

.price {
  color: var(--gold-strong);
  font-size: 1.2rem;
  font-weight: 900;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.empty-state {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.modal {
  width: min(760px, calc(100vw - 24px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(15, 23, 42, 0.46);
}

.modal-body {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 28px);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.modal-head h2 {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modal-actions {
  justify-content: flex-end;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-gallery video {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  background: #0b1220;
  border-radius: 8px;
}

.detail-gallery img:first-child,
.detail-gallery video:first-child {
  min-height: 310px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span {
  padding: 9px 11px;
  background: #fff7e8;
  color: var(--gold-strong);
  border-radius: 8px;
  font-weight: 800;
}

.detail-notes {
  margin: 0;
  color: #475467;
  line-height: 1.55;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  background: #111827;
  color: white;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  background: #128c7e;
  color: white;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.32);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero,
  .workspace,
  .professional-profile,
  .number-one-section,
  .exterior-section,
  .lead-section,
  .authority-strip,
  .method-timeline,
  .video-grid,
  .proof-gallery,
  .testimonial-grid,
  .ready-grid,
  .faq-grid,
  .case-grid,
  .delivered-grid {
    grid-template-columns: 1fr;
  }

  .featured-case {
    grid-column: span 1;
  }

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

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

  .number-one-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 58px;
    height: 46px;
  }

  .primary-button span,
  .ghost-button span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero h1 {
    font-size: 2.08rem;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .profile-card {
    margin: 0 14px 14px;
  }

  .profile-stats,
  .professional-grid,
  .number-one-grid,
  .portfolio-metrics,
  .proof-side-grid,
  .ready-grid,
  .faq-grid,
  .authority-strip,
  .method-timeline,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-photo,
  .featured-case .case-photo {
    min-height: 210px;
  }

  .proof-main,
  .proof-side-grid article {
    grid-template-rows: auto;
  }

  .proof-main .proof-media {
    min-height: 270px;
  }

  .brand-divider {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .brand-divider span {
    width: 100%;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats span {
    flex: 1 1 128px;
  }

  .form-grid,
  .lead-form,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .closing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 78px;
  }
}

@media print {
  body {
    background: white;
  }

  .topbar,
  .hero,
  .brand-divider,
  .professional-profile,
  .number-one-section,
  .exterior-section,
  .trust-strip,
  .video-section,
  .proof-gallery-section,
  .delivered-section,
  .zones-section,
  .testimonials-section,
  .client-ready-section,
  .faq-section,
  .lead-section,
  .closing-cta,
  .workspace,
  .floating-whatsapp,
  .toast,
  .modal-actions,
  .modal-head .icon-button {
    display: none !important;
  }

  .modal,
  .modal::backdrop,
  .modal-body {
    position: static;
    display: block;
    width: 100%;
    box-shadow: none;
  }

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