:root {
  --bg: #ffffff;
  --panel: #f0efeb;
  --panel-strong: #e8e6e1;
  --text: #2a322c;
  --muted: #5c675f;
  --brand: #7a8f6e;
  --brand-2: #66785c;
  --hero: #e8ebe4;
  --hero-deep: #d5dcd2;
  --hero-mist: #9aab90;
  --border: #e0e4dc;
  --shadow: 0 16px 40px rgba(42, 50, 44, 0.1);
  --radius: 16px;
  --container: 1100px;
  --font-mark: "Playfair", Georgia, "Times New Roman", serif;
  --font-display: "Playfair", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform 140ms ease;
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(227, 224, 216, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand-logo {
  width: auto;
  height: 52px;
  display: block;
  object-fit: contain;
  border: 2px solid #c9b896;
  border-radius: 9999px;
}

.brand-text {
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  font-weight: 400;
}

.brand-ah,
.hero-ah {
  font-family: var(--font-mark);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.amp {
  font-size: 0.68em;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0.02em;
  vertical-align: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a:hover {
  text-decoration: none;
  background: rgba(148, 163, 184, 0.12);
  color: #020617;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--text);
}

.nav-toggle-icon {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #020617;
  border-radius: 999px;
}

.nav-toggle-icon::before {
  top: 0;
  box-shadow: 0 5px 0 #020617;
}

.nav-toggle-icon::after {
  bottom: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--hero);
  background-image:
    linear-gradient(
      105deg,
      rgba(247, 246, 243, 0.55) 0%,
      rgba(247, 246, 243, 0.28) 42%,
      rgba(247, 246, 243, 0.08) 100%
    ),
    url("/hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(247, 246, 243, 0.25) 0%,
    transparent 38%
  );
  pointer-events: none;
}

.hero-inner {
  padding: 5.5rem 0 4.5rem;
}

.hero-brand {
  max-width: 40rem;
  display: grid;
  justify-items: start;
  gap: 0.85rem;
  animation: hero-rise 0.9s ease-out both;
}

.hero-identity {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.hero-logo {
  width: auto;
  height: clamp(110px, 18vw, 160px);
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border: 2px solid #c9b896;
  border-radius: 9999px;
}

.hero-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #2a322c;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-ah {
  font-size: 1.15em;
  line-height: 0.95;
}

.brand-rest,
.hero-rest {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-rest {
  font-size: 0.52em;
  font-weight: 400;
  color: #3d4f3f;
}

.hero-tagline {
  margin: 0;
  max-width: 28rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(42, 50, 44, 0.78);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }
}

h1 {
  margin: 0.8rem 0 0.8rem;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: 1.25rem;
}

.h4 {
  font-size: 1.05rem;
}

.lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #f7f6f3;
  font-weight: 700;
  text-decoration: none;
}

.btn:visited {
  color: #f7f6f3;
}

.btn:hover {
  text-decoration: none;
  background: var(--brand-2);
}

.btn:active {
  transform: translateY(1px);
}

.btn-small {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: #2a322c;
  border-color: rgba(42, 50, 44, 0.18);
}

.btn-ghost:visited {
  color: #2a322c;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(42, 50, 44, 0.28);
}

.site-nav .btn {
  background: var(--brand);
  border-color: transparent;
  color: #f7f6f3;
}

.site-nav .btn:visited {
  color: #f7f6f3;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.9rem;
}

.contact-lines {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.contact-line {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.contact-line:hover {
  text-decoration: none;
  background: #f9fafb;
}

.contact-k {
  font-weight: 600;
  color: #111827;
}

.contact-v {
  color: #4b5563;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: #ffffff;
  border-top: 1px solid rgba(227, 224, 216, 0.9);
  border-bottom: 1px solid rgba(227, 224, 216, 0.9);
}

.section-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid #e5e7eb;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.prose p {
  margin: 0.75rem 0;
}

.aside-card {
  border: 1px solid #e5e7eb;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.checklist {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.checklist li {
  margin: 0.35rem 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  border: 1px solid #e5e7eb;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.steps p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid #e5e7eb;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.contact-box {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.contact-pill:hover {
  text-decoration: none;
  background: #f9fafb;
}

.form {
  border: 1px solid #e5e7eb;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

label span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus,
button:focus,
.nav-toggle:focus,
a:focus {
  outline: 2px solid rgba(122, 143, 110, 0.9);
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: min(78vh, 640px);
  }

  .hero-inner {
    padding: 4.25rem 0 3.5rem;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    margin: 0.6rem auto 0;
    width: min(var(--container), calc(100% - 2rem));
    padding: 0.7rem;
    border-radius: var(--radius);
    border: 1px solid rgba(209, 213, 219, 0.9);
    background: #ffffff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
