:root {
  --charcoal: #1f211a;
  --olive: #59573b;
  --sage: #77754e;
  --grass: #a8a589;
  --bone: #f4efe5;
  --paper: #fffaf1;
  --brass: #a98546;
  --ink: #202217;
  --muted: #67664f;
  --line: rgba(31, 33, 26, 0.16);
  --shadow: 0 22px 55px rgba(31, 33, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 64px 0;
  color: #fffdf7;
}

.inner-page .site-header,
.legal-page .site-header {
  position: static;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 253, 247, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-page .brand img {
  width: 252px;
  height: auto;
  filter: none;
}

.home-page .brand span {
  display: none;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #e1c07a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--olive);
  color: #fffdf7;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--sage);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 253, 247, 0.58);
  color: #fffdf7;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: #e1c07a;
  color: #e1c07a;
}

.button.outline {
  border-color: rgba(31, 33, 26, 0.28);
  background: transparent;
  color: var(--olive);
}

.button.outline:hover,
.button.outline:focus-visible {
  border-color: var(--olive);
  background: rgba(89, 87, 59, 0.08);
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.58) 31%, rgba(255, 250, 241, 0.04) 64%),
    linear-gradient(0deg, rgba(74, 61, 28, 0.04), rgba(74, 61, 28, 0.18)),
    url("assets/acacia-hero-landscape.png") center / cover;
  color: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(0deg, rgba(244, 239, 229, 0.94), rgba(244, 239, 229, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 128px));
  margin: 0 auto;
  padding: 154px 0 46px;
}

.hero-mark {
  width: 132px;
  height: 132px;
  margin-bottom: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  max-width: 600px;
  font-size: 3.9rem;
  letter-spacing: 0;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.42rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(32, 34, 23, 0.74);
  font-size: 1rem;
  line-height: 1.55;
}

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

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.feature-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  border-bottom: 1px solid rgba(31, 33, 26, 0.12);
}

.feature-item {
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 38px 64px;
  text-align: center;
}

.feature-item + .feature-item {
  border-left: 1px solid rgba(169, 133, 70, 0.55);
}

.feature-item svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h2 {
  max-width: 280px;
  font-size: 1.54rem;
}

.feature-item p {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.section-copy strong {
  color: var(--ink);
}

.quote-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: 38px;
}

.quote-panel p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.76rem;
  line-height: 1.28;
  color: var(--olive);
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(23, 24, 15, 0.92), rgba(23, 24, 15, 0.75) 43%, rgba(23, 24, 15, 0.22)),
    url("assets/acacia-hero-landscape.png") center 62% / cover;
  color: #fffdf7;
}

.page-hero > div {
  width: min(1120px, calc(100% - 128px));
  margin: 0 auto;
  padding: 72px 0;
}

.page-hero h1 {
  max-width: 760px;
  font-size: 3.6rem;
}

.page-hero p:not(.breadcrumb) {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 253, 247, 0.8);
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: 660px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.answer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.direct-answer {
  color: var(--ink);
  font-weight: 700;
}

.blog-preview {
  padding-top: 38px;
}

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

.article-card {
  min-height: 246px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.article-card h3 {
  font-size: 1.36rem;
  line-height: 1.2;
}

.article-card a,
.post-row a,
.article-body a {
  text-decoration-color: rgba(169, 133, 70, 0.5);
  text-underline-offset: 4px;
}

.article-card p:not(.card-meta) {
  color: var(--muted);
}

.card-meta {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  gap: 22px;
}

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

.text-columns > div {
  padding-top: 22px;
  border-top: 1px solid rgba(169, 133, 70, 0.45);
}

.text-columns h3 {
  margin-bottom: 12px;
}

.text-columns p,
.steps span,
.notice-box p,
.faq-list p,
.post-row p,
.article-subtitle {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 188px;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.cta-band {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 38px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fffdf7;
}

.cta-band h2 {
  font-size: 2rem;
}

.cta-band p {
  margin-top: 8px;
  color: rgba(255, 253, 247, 0.72);
}

.notice-box {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(169, 133, 70, 0.45);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.7);
}

.notice-box h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.faq-section {
  padding-top: 20px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-list h3 {
  margin-bottom: 8px;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.post-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.post-row h2 {
  margin-top: 6px;
  font-size: 2rem;
}

.post-row p:not(.card-meta) {
  max-width: 760px;
  margin-top: 12px;
}

.article {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 50px;
}

.article-header {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.article-header .breadcrumb {
  color: var(--muted);
  margin-bottom: 0;
}

.article-header h1 {
  max-width: 780px;
  font-size: 3.6rem;
}

.article-subtitle {
  max-width: 690px;
  font-size: 1.08rem;
}

.answer-callout {
  margin: 0 0 42px;
  padding: 28px 30px;
  border-left: 4px solid var(--brass);
  background: var(--paper);
}

.answer-callout h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.answer-callout p {
  color: var(--ink);
  font-weight: 700;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body h2 {
  margin-top: 26px;
  font-size: 2rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body ul {
  margin: 0;
  padding-left: 22px;
}

.article-body li + li {
  margin-top: 8px;
}

.experience-band {
  min-height: 352px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 24, 15, 0.94), rgba(23, 24, 15, 0.78) 34%, rgba(23, 24, 15, 0.22) 72%),
    url("assets/acacia-hero-landscape.png") center 72% / cover;
  color: #fffdf7;
}

.experience-copy {
  width: min(1120px, calc(100% - 128px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
  justify-items: start;
}

.experience-copy h2 {
  max-width: 440px;
  font-size: 2.7rem;
}

.experience-copy h2::after,
.contact-intro h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 18px;
  background: var(--brass);
}

.experience-copy p {
  max-width: 470px;
  color: rgba(255, 253, 247, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.contact-intro p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-details a {
  color: var(--olive);
  font-weight: 700;
}

.contact-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.84rem;
}

label:not(.consent) span {
  color: #9d2424;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 33, 26, 0.26);
  border-radius: 0;
  background: rgba(255, 253, 247, 0.8);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

label:not(.consent) input,
label:not(.consent) textarea {
  display: block;
  margin-top: 7px;
}

form label:nth-child(3),
form label:nth-child(4),
.consent,
form .button {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 400;
}

.consent span {
  color: inherit;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 8%, rgba(119, 117, 78, 0.24), transparent 30%),
    #17180f;
  color: rgba(255, 253, 247, 0.74);
  padding: 54px 48px 34px;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 44px;
  align-items: start;
}

.footer-brand img {
  width: 128px;
  height: auto;
  margin: 0 0 18px;
  filter: brightness(0) invert(1) sepia(0.2);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand p {
  max-width: 280px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 253, 247, 0.16);
}

.footer-note {
  max-width: 390px;
  justify-self: start;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 253, 247, 0.16);
}

.footer-note em {
  display: block;
  margin-top: 12px;
  color: #d9b56b;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-links a,
.credit a {
  color: #fffdf7;
}

.footer-links a {
  text-underline-offset: 4px;
}

.credit {
  grid-column: 1 / -1;
  padding-top: 22px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 253, 247, 0.58);
}

.legal-main {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-main .breadcrumb {
  color: var(--muted);
}

.legal-main h1 {
  color: var(--charcoal);
  font-size: 3.1rem;
}

.legal-main h2 {
  margin-top: 38px;
  font-size: 1.75rem;
}

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

.legal-main p {
  margin-top: 16px;
}

.legal-main ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.updated {
  color: var(--brass);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header,
  .legal-page .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    background: var(--charcoal);
  }

  .home-page .brand img {
    width: 178px;
    filter: brightness(0) invert(1);
  }

  .home-page .brand span {
    display: block;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.86), rgba(255, 250, 241, 0.38) 56%, rgba(255, 250, 241, 0.08)),
      linear-gradient(0deg, rgba(74, 61, 28, 0.08), rgba(74, 61, 28, 0.14)),
      url("assets/acacia-hero-landscape.png") center / cover;
  }

  .hero-inner,
  .section,
  .legal-main,
  .article,
  .page-hero > div,
  .experience-copy {
    width: min(100% - 32px, 1120px);
  }

  .hero-inner {
    padding: 72px 0 64px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .contact-section,
  .answer-section,
  .card-grid,
  .text-columns,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 320px;
  }

  .page-hero > div {
    padding: 54px 0;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: 2.9rem;
  }

  .post-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-item + .feature-item {
    border-left: 0;
    border-top: 1px solid rgba(169, 133, 70, 0.55);
  }

  form {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-note {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 46px;
    height: 46px;
  }

  .home-page .brand img {
    width: 132px;
  }

  h1 {
    font-size: 2.38rem;
  }

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

  .section,
  .article {
    padding: 58px 0;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: 2.34rem;
  }

  .page-hero p:not(.breadcrumb) {
    font-size: 1rem;
  }

  .feature-item {
    padding: 34px 28px;
  }

  .article-card,
  .steps li {
    min-height: auto;
    padding: 24px;
  }

  .answer-callout {
    padding: 24px;
  }

  .cta-band {
    width: min(100% - 32px, 1120px);
    padding: 28px 24px;
  }

  .quote-panel,
  .contact-panel {
    padding: 22px;
  }

  .quote-panel p {
    font-size: 1.38rem;
  }

  .site-footer {
    padding: 34px 24px;
  }
}
