:root {
  --ink: #17211f;
  --ink-soft: #31403d;
  --petrol: #0f6d68;
  --petrol-dark: #0a4e4b;
  --copper: #b9783b;
  --gold: #d1aa65;
  --ivory: #f6f1e8;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 22px 70px rgba(23, 33, 31, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.42), rgba(255, 250, 242, 1) 42%),
    var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 40px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
}

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

.brand-logo {
  width: auto;
  object-fit: contain;
}

.brand-logo-header {
  height: 48px;
}

.brand-logo-footer {
  height: 68px;
}

.brand img {
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  min-height: 40px;
  padding: 12px 14px;
  border-radius: 999px;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 650;
  opacity: 0.86;
}

.main-nav a:hover {
  background: rgba(15, 109, 104, 0.09);
  opacity: 1;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: rgba(15, 109, 104, 0.09);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: currentColor;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

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

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 18, 17, 0.9) 0%, rgba(11, 18, 17, 0.68) 42%, rgba(11, 18, 17, 0.14) 100%),
    linear-gradient(180deg, rgba(11, 18, 17, 0.42), rgba(11, 18, 17, 0.78));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 6vw, 84px) clamp(82px, 12vh, 128px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: #f1c37f;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 11vw, 8.3rem);
  font-weight: 500;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.7rem);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

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

.hero-assurance span {
  min-height: 34px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(120, 68, 28, 0.25);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.intro-section,
.trust-strip,
.services-section,
.method-section,
.confidence-section,
.contact-section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

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

.trust-strip div {
  display: grid;
  gap: 8px;
  min-height: 156px;
  align-content: center;
  padding: 30px;
  background: rgba(255, 250, 242, 0.94);
}

.trust-strip strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  font-weight: 500;
}

.trust-strip span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.intro-section p,
.method-copy p,
.contact-section p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 40px;
}

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

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 40px rgba(23, 33, 31, 0.05);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--petrol);
  background: rgba(15, 109, 104, 0.1);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.method-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.process-list span {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-family: Georgia, "Times New Roman", serif;
}

.confidence-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.signature-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  min-height: 430px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.signature-panel img {
  width: min(270px, 76%);
}

.signature-panel p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  text-align: center;
}

.confidence-points {
  display: grid;
  gap: 14px;
}

.confidence-points article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 18px;
  align-content: center;
  min-height: 134px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.confidence-points span {
  grid-row: span 2;
  color: var(--copper);
  font-weight: 900;
}

.confidence-points h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
}

.confidence-points p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  background: var(--ivory);
}

.contact-section p {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 109, 104, 0.17);
  border-color: var(--petrol);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  background: #101614;
}

.site-footer .brand {
  padding: 6px 0;
}

.site-footer p {
  max-width: 650px;
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 6px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .intro-section,
  .method-section,
  .confidence-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-header {
    height: 42px;
  }

  .brand-logo-footer {
    height: 58px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 18, 17, 0.92), rgba(11, 18, 17, 0.56)),
      linear-gradient(180deg, rgba(11, 18, 17, 0.36), rgba(11, 18, 17, 0.84));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 62px;
  }

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

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

  .trust-strip div {
    min-height: auto;
    padding: 24px 20px;
  }

  .confidence-points article {
    grid-template-columns: 1fr;
  }

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

  .process-list div {
    grid-template-columns: 52px 1fr;
  }
}
