:root {
  --ink: #171412;
  --muted: #6f6960;
  --paper: #f8f4ee;
  --white: #ffffff;
  --line: #e5ddd1;
  --green: #12382f;
  --green-2: #1c5144;
  --gold: #b89152;
  --rose: #8f514a;
  --shadow: 0 24px 70px rgba(24, 20, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 22, 18, 0.82), rgba(12, 22, 18, 0.1));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

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

.brand strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--white);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 14, 0.94) 0%, rgba(18, 56, 47, 0.78) 42%, rgba(18, 56, 47, 0.1) 78%),
    linear-gradient(0deg, rgba(13, 12, 10, 0.5), rgba(13, 12, 10, 0.05));
}

.hero-content {
  position: relative;
  width: min(740px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.3;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 34px 0;
}

.btn-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #17110b;
  box-shadow: 0 16px 34px rgba(184, 145, 82, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.trust-row {
  max-width: 640px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.trust-row span {
  min-width: 150px;
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.split-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.service-card,
.steps article,
blockquote,
.contact-form,
.offer-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(24, 20, 18, 0.04);
}

.service-card {
  min-height: 230px;
  padding: 28px;
}

.service-card.featured {
  background: var(--green);
  color: var(--white);
}

.service-card p,
.steps p,
blockquote p {
  color: var(--muted);
}

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

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  background: #efe5d5;
  color: var(--green);
  font-weight: 800;
}

.featured .icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.split {
  width: 100%;
  max-width: none;
  padding: 92px clamp(18px, 7vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.split-panel {
  max-width: 680px;
}

.offer-box {
  max-width: 520px;
  justify-self: end;
  padding: 34px;
  background: #fcf8f0;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.offer-box strong {
  display: block;
  margin: 8px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.offer-label {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-box p {
  color: var(--muted);
}

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

.steps article {
  padding: 30px;
}

.steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonials {
  border-top: 1px solid var(--line);
}

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

blockquote {
  margin: 0;
  padding: 34px;
}

blockquote p {
  font-size: 1.12rem;
}

cite {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.contact {
  width: 100%;
  max-width: none;
  padding: 96px clamp(18px, 7vw, 96px);
  background: #eee5d8;
}

.contact-copy {
  max-width: 610px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(100%, 560px);
  justify-self: end;
  padding: 26px;
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: #403b35;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cec0;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbf8f3;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--green);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    background: rgba(12, 22, 18, 0.9);
  }

  .nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 850px;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 15, 13, 0.15) 0%, rgba(9, 15, 13, 0.72) 38%, rgba(9, 15, 13, 0.96) 100%),
      linear-gradient(90deg, rgba(18, 56, 47, 0.65), rgba(18, 56, 47, 0.08));
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 140px 0 50px;
  }

  .intro,
  .split,
  .contact,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-box,
  .contact-form {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section {
    padding: 72px 0;
  }

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

  .service-card {
    min-height: 0;
  }

  .split,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
