@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;500&display=swap");

:root {
  --ink: #1c1c1c;
  --muted: #6f6862;
  --line: #d9cec0;
  --paper: #f7f5f2;
  --soft: #eee9e3;
  --taupe: #a8a29e;
  --gold: #c6b49a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Lato, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 245, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  height: 54px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.brand small {
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: stretch;
  min-height: calc(100vh - 83px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px) 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(247, 245, 242, 0.93), rgba(247, 245, 242, 0.8)),
    url("logo-seal.png") right 7% top 43% / min(34vw, 460px) no-repeat;
}

.hero-content {
  max-width: 820px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: #a89070;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.6rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.intro {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 300;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

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

.proof div {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.proof dt {
  font-size: 1.55rem;
  font-weight: 700;
}

.proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
}

.hero-panel {
  align-self: end;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(31, 29, 26, 0.14);
}

.hero-panel h2 {
  font-size: 2.35rem;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 300;
}

.hero-panel .panel-kicker {
  color: var(--gold);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

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

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

.service-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.service-grid p,
.reasons,
.resources a,
.contact p,
.small-note,
.site-footer {
  color: var(--muted);
  font-weight: 300;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 86px);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.reasons {
  font-size: 1.04rem;
}

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

.reasons li {
  padding: 14px 0;
  border-top: 1px solid rgba(31, 29, 26, 0.16);
}

.resource-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.resource-list a::after {
  content: "View";
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 104px);
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 83px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.about-copy {
  max-width: 760px;
}

.about-copy p:not(.eyebrow):not(.intro) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-photo {
  margin: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.about-photo img {
  display: block;
  width: 100%;
  height: min(680px, 72vh);
  object-fit: cover;
}

.legal-page {
  max-width: 880px;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.legal-page h1 {
  font-size: 4.2rem;
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 2rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1rem;
}

.legal-page a {
  color: var(--ink);
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 20px;
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-weight: 300;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact .button.primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.full {
  width: 100%;
}

.small-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

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

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .about-hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(120deg, rgba(247, 245, 242, 0.9), rgba(247, 245, 242, 0.9)),
      url("logo-seal.png") right 12px top 12px / 210px no-repeat;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .legal-page h1 {
    font-size: 3.4rem;
  }

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

  .about-photo img {
    height: 560px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .legal-page h1 {
    font-size: 2.6rem;
  }

  .hero-panel h2 {
    font-size: 1.8rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

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

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

  .button {
    width: 100%;
  }

  .resource-list a {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .legal-links {
    justify-content: flex-start;
  }

  .about-photo img {
    height: 430px;
  }
}
