:root {
  --ink: #202623;
  --muted: #5f6762;
  --paper: #f7f2e9;
  --soft: #eee7dc;
  --sage: #315f48;
  --sage-dark: #174533;
  --copper: #9f6a3d;
  --gold: #c9a24d;
  --line: rgba(32, 38, 35, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(32, 38, 35, 0.12);
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 180, 95, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(248, 242, 232, 0.9);
  border-bottom: 1px solid rgba(32, 38, 35, 0.1);
  backdrop-filter: blur(16px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand strong {
  display: block;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: #9c762f;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 28px),
    linear-gradient(145deg, #0f4a38 0%, #153f34 58%, #0b332b 100%);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 69, 51, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.brand-mark-text {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 0;
  color: #fff6df;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-right: 1px;
  text-shadow: 0 1px 0 rgba(7, 58, 49, 0.35);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 16px;
  width: 22px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.brand-mark::before {
  top: 12px;
}

.brand-mark::after {
  bottom: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--sage-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  padding: 138px clamp(20px, 5vw, 78px) 56px;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 242, 232, 0.99) 0%, rgba(248, 242, 232, 0.92) 38%, rgba(248, 242, 232, 0.34) 68%, rgba(248, 242, 232, 0.04) 100%),
    linear-gradient(0deg, rgba(32, 38, 35, 0.08), rgba(32, 38, 35, 0));
}

.hero-content {
  width: min(830px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #9c762f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-copy {
  position: relative;
  max-width: 640px;
  margin-bottom: 32px;
  padding-top: 32px;
  color: #31423a;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

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

.button.secondary {
  color: #9c762f;
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(156, 118, 47, 0.62);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 242, 232, 0.96);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  align-content: center;
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 600;
}

.trust-strip .trust-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(23, 69, 51, 0.24);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--sage-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-area .section-kicker {
  margin-bottom: 0;
  color: var(--gold);
}

.service-area p {
  max-width: 1040px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.trust-build {
  background:
    linear-gradient(90deg, rgba(201, 162, 77, 0.12), rgba(201, 162, 77, 0) 44%),
    var(--paper);
}

.page-hero {
  padding: 150px clamp(20px, 5vw, 72px) clamp(58px, 8vw, 96px);
  background: var(--paper);
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 86px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.contact-hero {
  background: #f4eadf;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.audience-content p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 36px;
}

.section-heading p {
  width: min(430px, 100%);
  margin-bottom: 20px;
}

.services {
  background: var(--soft);
}

.core-tax {
  background: var(--soft);
}

.business-services {
  background: var(--paper);
}

.home-overview {
  background: var(--white);
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-link-card {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.home-link-card:hover,
.home-link-card:focus-visible {
  border-color: rgba(39, 79, 59, 0.52);
  transform: translateY(-2px);
}

.home-link-card p {
  color: var(--muted);
}

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

.service-card {
  min-height: 278px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(201, 162, 77, 0.72);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(19, 34, 28, 0.06);
}

.compact-grid .service-card {
  min-height: 246px;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--sage-dark);
  background: rgba(201, 162, 77, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.service-card p,
.tool-card p,
.upload-panel p,
.process-list p,
.faq p,
.contact-info p,
.form-note {
  color: var(--muted);
}

.tools {
  background: var(--white);
}

.tools-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.upload-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 360px;
  padding: 30px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 8px;
}

.upload-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.tool-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 54px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 26px;
  font-weight: 800;
}

.upload-form {
  display: grid;
  gap: 14px;
}

.secure-request-box {
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  align-content: center;
}

.secure-request-box strong {
  font-size: 20px;
}

.secure-request-box span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.file-drop {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  place-content: center;
  text-align: center;
}

.file-drop span {
  font-size: 18px;
}

.file-drop small,
.upload-status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.file-drop input {
  color: var(--white);
  background: transparent;
  border: 0;
  padding: 0;
}

.upload-status {
  margin-bottom: 0;
}

.tool-card-list {
  display: grid;
  gap: 14px;
}

.tool-card {
  min-height: 110px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tool-card h3 {
  font-size: 19px;
}

.process {
  background: var(--paper);
}

.hr-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.16), rgba(201, 162, 77, 0) 36%),
    var(--sage-dark);
}

.hr-section .section-kicker {
  color: var(--gold);
}

.hr-section h2 {
  color: #fff7e8;
}

.hr-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.hr-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

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

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

.pricing-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(201, 162, 77, 0.72);
  border-radius: 8px;
}

.pricing-card strong {
  display: block;
  margin: 34px 0 16px;
  color: var(--sage-dark);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.pricing-card p {
  color: var(--muted);
}

.featured-price {
  border-color: rgba(201, 162, 77, 0.62);
  box-shadow: 0 18px 46px rgba(32, 38, 35, 0.1);
}

.service-area-large {
  padding-top: clamp(50px, 7vw, 86px);
  padding-bottom: clamp(50px, 7vw, 86px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-list article {
  min-height: 260px;
  padding: 32px;
  background: var(--white);
}

.process-list span {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 800;
}

.audience-section {
  color: var(--white);
  background: var(--sage-dark);
}

.audience-section .section-kicker {
  color: var(--gold);
}

.audience-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--gold);
  clip-path: polygon(14% 48%, 38% 72%, 86% 20%, 100% 34%, 39% 96%, 0 60%);
}

.faq {
  background: var(--paper);
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
}

details p {
  max-width: 860px;
  padding: 0 24px 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 560px);
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: #f4eadf;
}

.home-contact {
  background:
    linear-gradient(90deg, rgba(23, 69, 51, 0.06), rgba(23, 69, 51, 0) 42%),
    #f4eadf;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
  font-weight: 700;
}

address a {
  color: var(--sage-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #33423a;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 38, 35, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf9;
}

textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .header-actions {
    gap: 14px;
  }

  .nav-links {
    gap: 18px;
  }

  .service-grid,
  .home-link-grid,
  .pricing-grid,
  .process-list,
  .upload-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-list article:last-child {
    grid-column: 1 / -1;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch button {
    min-width: 38px;
    min-height: 32px;
    padding: 5px 8px;
    font-size: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 20px 56px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.62)),
      linear-gradient(0deg, rgba(19, 34, 28, 0.18), rgba(19, 34, 28, 0.05));
  }

  h1 {
    max-width: 100%;
  }

  .trust-strip,
  .service-area,
  .intro-grid,
  .section-heading,
  .audience-content,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: grid;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .trust-strip div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: grid;
  }

  .section-heading p {
    margin-bottom: 0;
  }

  .service-grid,
  .home-link-grid,
  .pricing-grid,
  .process-list,
  .tools-grid,
  .upload-panel {
    grid-template-columns: 1fr;
  }

  .process-list article:last-child {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 440px) {
  .site-header {
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand small {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

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

  .service-card,
  .process-list article,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 8.5px;
    letter-spacing: 0.11em;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }
}
