:root {
  --ink: #202124;
  --muted: #5d6670;
  --paper: #faf8f4;
  --cream: #f3efe7;
  --teal: #2f6f73;
  --teal-dark: #1d4d51;
  --gold: #b88b4a;
  --line: #ded8cd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(24, 38, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(250, 248, 244, 0.9);
  border-bottom: 1px solid rgba(222, 216, 205, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.hero {
  position: relative;
  min-height: min(720px, 86vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 70px clamp(20px, 6vw, 84px);
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.98) 0%, rgba(250, 248, 244, 0.82) 42%, rgba(250, 248, 244, 0.12) 100%),
    linear-gradient(0deg, rgba(32, 33, 36, 0.08), rgba(32, 33, 36, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5vw, 5.35rem);
  font-weight: 500;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 32px;
  color: #384047;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.primary {
  background: var(--teal-dark);
  color: var(--white);
}

.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(29, 77, 81, 0.24);
  color: var(--teal-dark);
}

.notice {
  margin: 0 auto 42px;
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 36px));
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-left: 4px solid rgba(184, 139, 74, 0.6);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 38, 42, 0.06);
  color: #51585e;
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px clamp(20px, 6vw, 84px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  color: #374046;
  font-weight: 750;
}

.trust-strip li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal-dark);
  font-weight: 900;
}

.legal-note {
  margin-top: -34px;
}

.section,
.band,
.contact,
.testimonials,
.pricing,
.visual-story {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 84px);
}

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

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

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

.support-panel {
  display: grid;
  gap: 22px;
}

.support-panel p {
  margin: 0;
}

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

.focus-grid div {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(42, 48, 52, 0.05);
}

.focus-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.focus-grid strong {
  display: block;
  color: #30363b;
  line-height: 1.2;
}

.section-heading {
  margin-bottom: 34px;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 0;
}

.visual-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(42, 48, 52, 0.08);
}

.visual-card.tall {
  grid-row: span 2;
  min-height: 576px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.visual-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(222, 216, 205, 0.8);
  border-radius: 8px;
  color: #30363b;
  font-size: 0.92rem;
}

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

.card {
  min-height: 270px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(42, 48, 52, 0.06);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.service-note {
  max-width: 980px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.band {
  background: var(--teal-dark);
  color: var(--white);
}

.band .eyebrow {
  color: #d9c194;
}

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

.steps div {
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #f1d69a;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #374046;
  font-weight: 700;
}

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

.feature-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--teal-dark);
  font-weight: 900;
}

.testimonials {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.testimonial-grid article {
  min-height: 220px;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(42, 48, 52, 0.06);
}

.testimonial-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 900;
}

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

.founder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.founder-card {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo {
  display: block;
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 18px 42px rgba(24, 38, 42, 0.16);
}

.founder-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.founder-copy p {
  margin: 0;
}

.approach {
  align-self: start;
}

.approach-grid {
  display: grid;
  gap: 14px;
}

.approach-grid article {
  padding: 20px;
  background: #f6f1e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.approach-grid span {
  color: var(--gold);
  font-weight: 900;
}

.approach-grid h3 {
  margin: 12px 0 8px;
}

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

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.pricing p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

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

label {
  display: grid;
  gap: 8px;
  color: #3a4248;
  font-size: 0.92rem;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 111, 115, 0.18);
  border-color: var(--teal);
}

.spam-field {
  position: absolute;
  left: -9999px;
}

.form-message,
.privacy-note {
  margin: 0;
  font-size: 0.88rem;
}

.form-success {
  color: #246b3d;
  font-weight: 800;
}

.form-error {
  color: #a13a32;
  font-weight: 800;
}

.privacy-note {
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  display: grid;
  gap: 12px;
  padding: 34px clamp(20px, 6vw, 84px);
  background: #1f2325;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer p {
  max-width: 1080px;
  margin: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

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

@media (max-width: 920px) {
  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(250, 248, 244, 0.96) 0%, rgba(250, 248, 244, 0.74) 58%, rgba(250, 248, 244, 0.2) 100%),
      linear-gradient(0deg, rgba(32, 33, 36, 0.08), rgba(32, 33, 36, 0.08));
  }

  .intro,
  .split,
  .contact,
  .founder,
  .pricing,
  .trust-strip,
  .visual-story,
  .service-grid,
  .testimonial-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .visual-card.tall {
    grid-row: auto;
    min-height: 320px;
  }

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

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

  .card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 56px;
  }

  .button {
    width: 100%;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }
}
