:root {
  --ink: #1f2a2d;
  --muted: #647174;
  --paper: #f8f3eb;
  --surface: #fffaf3;
  --teal: #245f63;
  --teal-deep: #143f43;
  --sage: #809c79;
  --clay: #bc735d;
  --gold: #c39b4e;
  --rose: #d8a39a;
  --line: rgba(31, 42, 45, 0.14);
  --shadow: 0 18px 45px rgba(31, 42, 45, 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.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(248, 243, 235, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px 40px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-logo {
  border-radius: 8px;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.79rem;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  min-height: 40px;
  padding: 8px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(36, 95, 99, 0.1);
  color: var(--teal-deep);
  outline: none;
}

.hero {
  min-height: 74vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 63, 67, 0.82), rgba(20, 63, 67, 0.5) 45%, rgba(20, 63, 67, 0.08) 78%),
    linear-gradient(0deg, rgba(31, 42, 45, 0.2), rgba(31, 42, 45, 0.08));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fffaf3;
  max-width: 790px;
  padding: 96px 40px 88px;
  position: relative;
  width: min(100%, 1240px);
}

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1cc8e;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.65rem;
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 720px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.42rem;
  line-height: 1.13;
  margin-bottom: 0;
}

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

.hero-copy {
  font-size: 1.16rem;
  max-width: 650px;
}

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

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

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--clay);
  color: #fffaf3;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #a95f4d;
}

.button.secondary {
  background: rgba(255, 250, 243, 0.12);
  border-color: rgba(255, 250, 243, 0.62);
  color: #fffaf3;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 250, 243, 0.22);
}

.section,
.intro-band,
.ethics-band {
  padding: 82px 40px;
}

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

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

.intro-grid,
.ethics-grid,
.about-layout,
.social-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.lead-text,
.about-copy p,
.social-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.72), rgba(255, 250, 243, 0.96)),
    #f4e7dc;
}

.about-card {
  align-self: start;
  background: var(--teal-deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fffaf3;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.about-card::after {
  background:
    linear-gradient(135deg, rgba(214, 178, 107, 0.28), rgba(255, 250, 243, 0)),
    radial-gradient(circle at 78% 18%, rgba(255, 250, 243, 0.2), transparent 32%);
  content: "";
  inset: 0;
  position: absolute;
}

.about-card img {
  background: #fffaf3;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  height: 112px;
  margin-bottom: 72px;
  object-fit: cover;
  position: relative;
  width: 112px;
  z-index: 1;
}

.about-card p,
.about-card strong {
  display: block;
  position: relative;
  z-index: 1;
}

.about-card p {
  color: #f1cc8e;
  font-size: 0.9rem;
  font-weight: 850;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.about-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.credential-strip {
  border-top: 1px solid rgba(255, 250, 243, 0.22);
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.credential-strip span {
  color: rgba(255, 250, 243, 0.84);
  font-size: 0.92rem;
  font-weight: 750;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-bottom: 18px;
}

.about-milestones {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.about-milestones div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 140px minmax(0, 1fr);
  padding: 15px 0;
}

.about-milestones span {
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-milestones strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.services-section {
  background: #edf3ee;
}

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

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 12px 0 0;
}

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

.blog-card.featured {
  grid-column: span 2;
}

.service-card,
.blog-card,
.social-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.blog-card:hover,
.social-card:hover {
  border-color: rgba(31, 42, 45, 0.24);
  box-shadow: 0 14px 32px rgba(31, 42, 45, 0.1);
  transform: translateY(-3px);
}

.service-card {
  background: rgba(255, 250, 243, 0.92);
  min-height: 220px;
  padding: 24px;
}

.service-icon {
  color: var(--clay);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 42px;
}

.service-card p,
.blog-card p,
.site-footer p {
  color: var(--muted);
  margin-bottom: 0;
}

.blog-section {
  background: var(--paper);
}

.blog-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
}

.blog-card.featured {
  background: var(--teal-deep);
  color: #fffaf3;
}

.blog-card.featured p {
  color: rgba(255, 250, 243, 0.82);
}

.blog-meta {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 44px;
  text-transform: uppercase;
}

.blog-card.featured .blog-meta {
  color: #f1cc8e;
}

.blog-card a {
  color: var(--teal-deep);
  font-weight: 900;
  margin-top: auto;
  padding-top: 24px;
}

.blog-card.featured a {
  color: #f1cc8e;
}

.ethics-band {
  background: var(--teal-deep);
  color: #fffaf3;
}

.ethics-band .section-kicker {
  color: #f1cc8e;
}

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

.ethics-list li {
  border-left: 4px solid var(--gold);
  color: rgba(255, 250, 243, 0.88);
  padding-left: 16px;
}

.faq-section {
  background: var(--surface);
}

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

.faq-item {
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
  padding: 16px 32px 16px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--clay);
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  padding: 0 0 18px;
}

.social-section {
  background: #f4e7dc;
}

.social-layout h2 {
  margin-bottom: 18px;
}

.social-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.social-card {
  align-items: center;
  background: rgba(255, 250, 243, 0.88);
  display: grid;
  gap: 4px 14px;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 92px;
  padding: 16px;
}

.social-card span {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #fffaf3;
  display: flex;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.social-card strong,
.social-card small {
  grid-column: 2;
}

.social-card strong {
  color: var(--teal-deep);
  font-size: 1.05rem;
}

.social-card small {
  color: var(--muted);
  font-weight: 750;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(36, 95, 99, 0.36);
  box-shadow: 0 10px 28px rgba(31, 42, 45, 0.1);
  outline: none;
}

.article-main {
  background: var(--paper);
  padding: 56px 40px 72px;
}

.article {
  margin: 0 auto;
  max-width: 760px;
}

.breadcrumb {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--teal-deep);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span[aria-hidden] {
  color: var(--line);
}

.article-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 30px;
}

.article-tag {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.article-header h1 {
  font-size: 2.9rem;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: none;
}

.article-lead {
  color: var(--muted);
  font-size: 1.18rem;
  margin-bottom: 0;
}

.article-body h2 {
  font-size: 1.72rem;
  margin-bottom: 14px;
  margin-top: 40px;
}

.article-body p {
  color: var(--ink);
  font-size: 1.08rem;
  margin-bottom: 20px;
}

.article-body ul {
  color: var(--ink);
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.article-body ul li {
  font-size: 1.06rem;
  padding-left: 4px;
}

.article-body ul li::marker {
  color: var(--clay);
}

.article-cta {
  background: var(--teal-deep);
  border-radius: 12px;
  color: #fffaf3;
  margin: 44px 0 36px;
  padding: 34px;
  text-align: center;
}

.article-cta h2 {
  color: #fffaf3;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: rgba(255, 250, 243, 0.82);
  margin-bottom: 22px;
}

.article-nav {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 28px;
}

.article-nav a {
  color: var(--teal-deep);
  font-weight: 800;
  max-width: 48%;
}

.article-nav a:hover {
  text-decoration: underline;
}

.article-disclaimer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 30px;
  padding-top: 24px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fffaf3;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 30px 40px;
}

.site-footer a {
  color: #f1cc8e;
  font-weight: 850;
}

@media (max-width: 1080px) and (min-width: 921px) {
  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 22px;
  }

  .brand {
    min-width: 0;
  }

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

  .hero {
    min-height: 76vh;
  }

  .hero img {
    object-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(20, 63, 67, 0.86), rgba(20, 63, 67, 0.58));
  }

  .hero-content {
    padding: 72px 24px 64px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section,
  .intro-band,
  .ethics-band {
    padding: 62px 24px;
  }

  .intro-grid,
  .ethics-grid,
  .about-layout,
  .social-layout,
  .service-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: auto;
  }

  .about-card {
    min-height: 390px;
  }

  .article-main {
    padding: 40px 24px 56px;
  }

  .article-header h1 {
    font-size: 2.15rem;
  }

  .article-lead {
    font-size: 1.08rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-nav a {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .nav-links a {
    font-size: 0.88rem;
    padding: 7px 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero img {
    height: 100%;
  }

  .hero-content {
    min-height: 680px;
    padding: 58px 20px 56px;
  }

  h1 {
    font-size: 2.12rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

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

  .service-icon,
  .blog-meta {
    margin-bottom: 24px;
  }

  .about-card {
    min-height: 350px;
    padding: 24px;
  }

  .about-card img {
    height: 86px;
    margin-bottom: 48px;
    width: 86px;
  }

  .about-milestones div {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }
}
