:root {
  color-scheme: light;
  --bg: #fbfaf6;
  --paper: #ffffff;
  --ink: #17221b;
  --muted: #5f695f;
  --line: #dedbd0;
  --green: #1f7a43;
  --green-dark: #12512e;
  --gold: #bd8b19;
  --coral: #c95f43;
  --soft-green: #edf6ee;
  --soft-gold: #f8f0dc;
  --shadow: 0 18px 42px rgba(25, 31, 24, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: rgba(31, 122, 67, 0.4);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--green-dark);
  text-decoration-color: currentColor;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.85rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(222, 219, 208, 0.8);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 122, 67, 0.35);
  border-radius: 8px;
  background: var(--paper);
  object-fit: cover;
  padding: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
}

.nav-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(82vh - 72px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -2;
  background-image: url("assets/parrot-crown-hero.jpg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::after {
  z-index: -1;
  background: rgba(251, 250, 246, 0.62);
}

.hero-inner {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 5.5rem 0 6rem;
}

.hero-inner > * {
  max-width: 680px;
}

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

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

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

h1 {
  font-size: 5.45rem;
  max-width: 760px;
}

h2 {
  font-size: 3.1rem;
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  margin: 1.4rem 0 0;
  color: #334036;
  font-size: 1.22rem;
  max-width: 600px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.primary:hover {
  background: var(--green-dark);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.section {
  padding: 5rem 5vw;
}

.section > *,
.policy-page > * {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.muted {
  background: #f2f4ea;
  border-block: 1px solid var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.content-grid > p,
.stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  margin-bottom: 1.7rem;
}

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

.service-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.service-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 1.3rem;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.policy-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0.65rem 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--soft-gold);
  border-top: 1px solid var(--line);
}

.contact-band > * {
  width: auto;
  margin: 0;
}

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

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 0.2rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}

.policy-page {
  padding: 4.5rem 5vw 5rem;
}

.policy {
  max-width: 860px;
}

.policy h1 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
}

.policy h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}

.policy p,
.policy li,
.policy dd {
  color: var(--muted);
}

.policy ul {
  padding-left: 1.2rem;
}

.policy li + li {
  margin-top: 0.55rem;
}

.notice-box {
  margin: 2rem 0;
  border: 1px solid rgba(189, 139, 25, 0.45);
  border-radius: 8px;
  background: var(--soft-gold);
  padding: 1rem;
}

.notice-box p {
  margin: 0.35rem 0 0;
}

.details-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.details-list dt {
  color: var(--ink);
  font-weight: 800;
}

.details-list dd {
  margin: 0;
}

.placeholder {
  color: #8a4b32;
  font-weight: 700;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-position: center bottom 1rem;
    background-size: 560px auto;
  }

  .hero::after {
    background: rgba(251, 250, 246, 0.76);
  }

  .hero-inner {
    padding: 4rem 0 18rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .policy h1 {
    font-size: 3.2rem;
  }

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

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .policy-page,
  .site-footer {
    padding-inline: 1.1rem;
  }

  .section {
    padding-block: 3rem;
  }

  .hero-inner {
    width: calc(100% - 2.2rem);
    padding: 3rem 0 13.5rem;
  }

  .hero::before {
    background-size: 350px auto;
  }

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

  h1 {
    font-size: 2.65rem;
  }

  .button,
  .hero-actions,
  .policy-links {
    width: 100%;
  }

  .button,
  .policy-links a {
    justify-content: center;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
