:root {
  --bg: #f3f2ed;
  --surface: #ffffff;
  --ink: #132024;
  --muted: #5e676a;
  --accent: #0d6f73;
  --accent-2: #c49a53;
  --line: #d9ddd8;
  --hero-overlay: rgba(10, 20, 24, 0.52);
  --radius: 18px;
  --shadow: 0 12px 40px rgba(18, 31, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #ffffff 0%, var(--bg) 65%);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(243, 242, 237, 0.9);
  border-bottom: 1px solid rgba(19, 32, 36, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.brand span {
  line-height: 1;
}

.nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 200ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.78rem 1.25rem;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 20px rgba(19, 32, 36, 0.24);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  min-height: min(78vh, 740px);
  display: grid;
  align-items: end;
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url("../wp-content/uploads/2020/07/header.jpg");
  background-size: cover;
  background-position: center;
  color: #f8f6f2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 111, 115, 0.22), rgba(6, 14, 18, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  animation: rise 700ms ease forwards;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  opacity: 0.9;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.lead {
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  max-width: 52ch;
  color: rgba(248, 246, 242, 0.92);
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

main {
  padding: 3.75rem 0 4rem;
}

.section {
  margin-bottom: 4rem;
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.card p,
.card li,
.copy p,
.copy li,
.copy blockquote {
  color: #263338;
}

.copy p,
.copy li {
  max-width: 74ch;
}

.copy ul {
  margin: 0.4rem 0 0;
  padding-left: 1.25rem;
}

.testimonial {
  border-left: 4px solid var(--accent-2);
  margin: 1.6rem 0;
  padding: 0.9rem 1rem;
  background: #fffaf1;
  border-radius: 0 12px 12px 0;
}

.media {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

.media img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pill-row {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  border: 1px solid #bcc8c3;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: #304247;
  background: #fcfcfb;
}

.cta {
  border-radius: var(--radius);
  background: linear-gradient(120deg, #10272b, #124449);
  color: #fff;
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.7rem 0 2.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 600ms ease forwards;
}

.reveal.delay-1 { animation-delay: 90ms; }
.reveal.delay-2 { animation-delay: 180ms; }
.reveal.delay-3 { animation-delay: 270ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .grid.cards {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding-top: 6rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1120px, calc(100% - 1.4rem));
  }

  .topbar-inner {
    min-height: 66px;
  }

  .nav {
    gap: 0.75rem;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

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

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