:root {
  color-scheme: light;
  --ink: #17232b;
  --muted: #60717b;
  --line: #d9e4e7;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #0d6f72;
  --teal-dark: #084f52;
  --coral: #d86f4c;
  --gold: #bb8a3a;
  --shadow: 0 18px 45px rgba(23, 35, 43, 0.12);
}

* {
  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.6;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 250, 249, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.4rem;
}

nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.15fr);
  gap: 4vw;
  min-height: calc(100vh - 72px);
  padding: 6vw 5vw 4vw;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 1.4rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}

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

.hero-copy p,
.section-heading,
.advisor-band p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid var(--teal);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  text-decoration: none;
}

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

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

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  width: 100%;
}

.hero-image-placeholder {
  background:
    linear-gradient(140deg, rgba(13, 111, 114, 0.16), rgba(216, 111, 76, 0.08)),
    radial-gradient(circle at 18% 22%, rgba(13, 111, 114, 0.28), transparent 26%),
    radial-gradient(circle at 78% 26%, rgba(187, 138, 58, 0.22), transparent 24%),
    linear-gradient(180deg, #dceef0 0%, #f7faf9 58%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before,
.hero-image-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-image-placeholder::before {
  width: 74%;
  height: 74%;
  right: -10%;
  top: 10%;
  background: linear-gradient(180deg, rgba(13,111,114,0.22), rgba(8,79,82,0.08));
  transform: rotate(-18deg);
}

.hero-image-placeholder::after {
  width: 42%;
  height: 42%;
  left: 8%;
  bottom: 10%;
  background: linear-gradient(180deg, rgba(216,111,76,0.24), rgba(187,138,58,0.12));
}

.section,
.advisor-band {
  padding: 5rem 5vw;
}

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

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
}

.feature-grid p,
.advisor-details dd {
  color: var(--muted);
}

.advisor-band {
  background: var(--white);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
}

.advisor-details {
  border-left: 4px solid var(--gold);
  margin: 0;
  padding-left: 1.4rem;
}

.advisor-details div + div {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.advisor-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.advisor-details dd {
  margin: 0.2rem 0 0;
}

.contact-section {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.contact-section div {
  max-width: 720px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem 5vw;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  margin: 0 auto;
  max-width: 860px;
  padding: 4rem 5vw;
}

.legal-main h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-main h2 {
  font-family: inherit;
  font-size: 1.25rem;
  margin-top: 2rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .advisor-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-image {
    order: -1;
  }
}
