:root {
  --ink: #1f252b;
  --muted: #66717c;
  --paper: #ffffff;
  --soft: #f4f1ec;
  --soft-2: #ebe3d8;
  --line: #ded6ca;
  --brand: #8d6a35;
  --brand-dark: #2d241b;
  --accent: #b98d48;
  --accent-soft: #f2e4ce;
  --gold-line: linear-gradient(90deg, #8d6a35, #d8b06d, #8d6a35);
  --shadow: 0 18px 48px rgba(31, 37, 43, .12);
  --shadow-soft: 0 10px 28px rgba(31, 37, 43, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f3ed 0, var(--soft) 360px),
    var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold-line);
  opacity: .7;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 17px;
  letter-spacing: 0;
  max-width: 320px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

.menu a:hover {
  color: var(--brand);
  border-bottom-color: var(--accent);
}

.menu .nav-call {
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--brand);
  border-bottom: 0;
  box-shadow: 0 8px 18px rgba(141, 106, 53, .22);
}

.menu-button {
  display: none;
  border: 0;
  background: var(--brand-dark);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 22px;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(26, 22, 18, .95), rgba(45, 36, 27, .72), rgba(45, 36, 27, .28)),
    url("img/mini-profile-bg-01.jpg") center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .28);
}

.hero-inner,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 104px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

.hero .eyebrow {
  color: #e9c47c;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  color: var(--brand-dark);
}

.hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 66px);
  max-width: 850px;
  text-wrap: balance;
  letter-spacing: -.02em;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 20px;
  color: #f5eee4;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--brand);
}

.button.secondary {
  background: #fff;
  color: var(--brand-dark);
}

.hero-panel {
  padding: 30px;
  background: rgba(255, 255, 255, .96);
  border-radius: 8px;
  color: var(--brand-dark);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .7);
  border-top: 4px solid var(--accent);
}

.panel-title {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 30px;
}

.panel-divider {
  height: 1px;
  margin: 20px 0;
  background: var(--line);
}

.panel-note {
  margin: 0;
  color: var(--muted);
}

.panel-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

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

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-weight: 700;
  font-size: 14px;
}

.trust-strip {
  background: var(--brand-dark);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.trust-grid div {
  padding: 24px 26px;
  background: var(--brand-dark);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 20px;
  color: #f3cf88;
}

.trust-grid span {
  margin-top: 4px;
  color: #e8ded0;
}

.section {
  padding: 84px 0;
}

.section:nth-child(even) {
  background: var(--paper);
}

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

.two {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.service-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 141, 72, .6);
  box-shadow: 0 18px 40px rgba(31, 37, 43, .12);
}

.service-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
}

.service-card p,
.intro p,
.contact p,
.cta p {
  color: var(--muted);
}

.cta {
  background:
    linear-gradient(90deg, rgba(31, 26, 21, .96), rgba(45, 36, 27, .9)),
    url("img/mini-profile-bg-02.jpg") center / cover no-repeat;
  color: #fff;
  padding: 70px 0;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: #e6ddd2;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list p {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-button {
  width: 100%;
}

.contact iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px max(20px, calc((100% - 1180px) / 2));
  background: #1f1a15;
  color: #f7efe5;
}

.process {
  background: var(--soft-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
}

.process-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  color: #f7efe5;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .menu a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .menu.open {
    display: flex;
  }

  .hero-inner,
  .two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin: 0 0 44px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 54px 0 24px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .lead {
    font-size: 17px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .hero-panel,
  .service-card,
  .contact-card,
  .process-grid article {
    padding: 22px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 13px;
    padding: 7px 10px;
  }

  .contact iframe {
    min-height: 300px;
  }

  .trust-grid div {
    padding: 18px 16px;
  }

  .mobile-call {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 16px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 -10px 30px rgba(31, 37, 43, .18);
  }

  .footer {
    display: block;
    padding-bottom: 84px;
  }

  .footer a {
    display: inline-block;
    margin-top: 8px;
  }
}
