:root {
  --ink: #111111;
  --muted: #5f5f5f;
  --paper: #f8f6f1;
  --white: #ffffff;
  --soft: #f0ece4;
  --black: #090909;
  --gold: #b8924b;
  --gold-dark: #8b6d34;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.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;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(184, 146, 75, 0.55);
  border-radius: 50%;
  font-size: 0.82rem;
}

.brand-text {
  letter-spacing: 0;
}

.main-nav {
  gap: clamp(12px, 2vw, 26px);
  color: #2f2f2f;
  font-size: 0.94rem;
}

.main-nav a,
.site-footer a,
.legal a {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.site-footer a:hover,
.legal a:hover {
  border-color: currentColor;
}

.main-nav a.is-active {
  color: var(--gold-dark);
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(18px, 5vw, 72px) 44px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.88) 39%, rgba(248, 246, 241, 0.35) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(9, 9, 9, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 12ch;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: #3e3e3e;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  border: 0;
  cursor: pointer;
  padding: 0 22px;
  font: inherit;
}

.button.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.button.primary:hover,
.nav-cta:hover {
  background: #2a2a2a;
}

.button.secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.16);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin: 46px 0 0;
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.hero-facts dt {
  color: var(--black);
  font-weight: 850;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-strip > * {
  min-height: 104px;
  padding: 22px clamp(18px, 3vw, 34px);
  background: var(--white);
  color: var(--ink);
  font-weight: 760;
}

.contact-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.split-section,
.contact,
.legal {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  background: var(--white);
}

.about-copy,
.visual-copy p,
.split-copy p,
.section-heading p,
.service-card p,
.steps span,
.price-card p,
.faq-list p,
.contact-copy p,
.legal p {
  color: var(--muted);
}

.about-copy {
  font-size: 1.06rem;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  background: var(--soft);
}

.visual-section img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.services,
.faq {
  background: var(--white);
}

.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.trust-grid article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.trust-grid p {
  color: var(--muted);
}

.note-section {
  background: var(--paper);
}

.note-section .note {
  max-width: 980px;
  margin: 0 auto;
}

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

.service-card {
  min-height: 310px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(30px, 6vw, 90px);
  background: #0e0e0e;
  color: var(--white);
}

.split-copy {
  align-self: start;
  position: sticky;
  top: 112px;
}

.split-copy .eyebrow {
  color: #d5b774;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
}

.prices {
  background: var(--paper);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.price-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.price-card.featured {
  color: var(--white);
  background: var(--black);
  transform: translateY(-12px);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.price-card.featured .price {
  color: #e8c977;
}

.price-estimator {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-top: 22px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.price-estimator p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.price-estimator strong {
  color: var(--gold-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 36px auto 0;
}

details {
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(32px, 6vw, 90px);
  color: var(--white);
  background: var(--black);
}

.contact .eyebrow {
  color: #d5b774;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-style: normal;
}

address a,
address span {
  color: rgba(255, 255, 255, 0.9);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 146, 75, 0.22);
  border-color: var(--gold);
}

iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 6px;
  background: var(--soft);
}

.legal {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal > div {
  max-width: 900px;
}

.legal a {
  color: var(--gold-dark);
}

.page-hero {
  padding: clamp(150px, 16vw, 210px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 118px);
  background: var(--white);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.26rem);
}

.dark-page-hero {
  color: var(--white);
  background: var(--black);
}

.dark-page-hero .eyebrow {
  color: #d5b774;
}

.dark-page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.content-page {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
}

.content-page h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.highlight-box,
.note {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.highlight-box ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-grid-page .service-card {
  min-height: 340px;
}

.service-grid-page h2,
.price-card h2 {
  font-size: 1.28rem;
  line-height: 1.25;
}

.steps-light {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-light li {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.steps-light strong {
  color: var(--black);
}

.steps-light span {
  color: var(--muted);
}

.contact-page {
  padding-top: clamp(70px, 9vw, 118px);
}

.contact-simple-hero {
  color: var(--ink);
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.contact-simple {
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-simple .eyebrow {
  color: var(--gold-dark);
}

.contact-simple h2,
.contact-simple address a,
.contact-simple address span {
  color: var(--ink);
}

.contact-simple .contact-copy p {
  color: var(--muted);
}

.contact-simple .contact-form {
  background: var(--white);
}

.process-simple-hero {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 241, 0.96) 62%, rgba(240, 236, 228, 0.9) 100%);
}

.process-simple-hero .eyebrow {
  color: var(--gold-dark);
}

.process-simple-page {
  background: var(--paper);
}

.process-simple-page .steps-light li {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.legal-page {
  padding-top: clamp(150px, 16vw, 210px);
  min-height: 70vh;
}

.floating-contact {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--black);
  background: #e7c86f;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  font-size: 0.8rem;
}

.floating-contact a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.premium-shadow {
  box-shadow: 0 24px 70px rgba(20, 14, 8, 0.12);
}

.soft-glow {
  box-shadow: 0 18px 45px rgba(190, 150, 82, 0.18);
}

.map-frame {
  min-height: 360px;
}

.seo-copy h2 {
  margin-top: 3.2rem;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.seo-copy h2:first-of-type {
  margin-top: 0;
}

.seo-copy p {
  margin-top: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.08rem;
  line-height: 1.85;
}

.seo-copy strong {
  color: #111111;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1060px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 152px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.84) 66%, rgba(248, 246, 241, 0.54) 100%);
  }

  .contact-strip,
  .service-grid,
  .price-grid,
  .steps-light,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .visual-section,
  .split-section,
  .contact,
  .two-column {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 650px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    order: 4;
    overflow: visible;
    padding: 8px 0 2px;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 150px 16px 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-facts,
  .contact-strip,
  .service-grid,
  .price-grid,
  .steps-light,
  .price-estimator,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .steps li,
  .contact-form {
    padding: 20px;
  }

  .price-card.featured {
    transform: none;
  }

  .floating-contact {
    right: 12px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
