:root {
  --bg: #f3efe7;
  --bg-strong: #efe5d4;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf2;
  --surface-muted: rgba(14, 36, 52, 0.06);
  --ink: #153041;
  --ink-soft: #425c6b;
  --accent: #b55f35;
  --accent-strong: #8f431e;
  --accent-soft: #f0d3bd;
  --line: rgba(21, 48, 65, 0.12);
  --success: #2f6b57;
  --shadow: 0 24px 70px rgba(17, 38, 52, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(181, 95, 53, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(61, 125, 118, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 48%, #f8f3eb 100%);
  line-height: 1.6;
}

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

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

main {
  display: block;
}

.site-shell {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  overflow-x: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
  z-index: -1;
}

.page-shell::before {
  top: -9rem;
  right: -9rem;
  background: rgba(181, 95, 53, 0.16);
}

.page-shell::after {
  bottom: -12rem;
  left: -12rem;
  background: rgba(47, 107, 87, 0.12);
}

.container,
.service-header__inner,
.service-hero__inner,
.service-section__inner,
.service-cta__inner,
.site-footer__inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.75);
  border-bottom: 1px solid rgba(21, 48, 65, 0.08);
}

.site-header__inner,
.service-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark,
.service-header__brand {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

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

.site-nav a,
.service-header__nav a,
.service-header__nav span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(21, 48, 65, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.lang-select {
  min-height: 2.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(21, 48, 65, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 14px 30px rgba(181, 95, 53, 0.25);
}

.button-secondary {
  border-color: rgba(21, 48, 65, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.eyebrow,
.service-hero__eyebrow,
.section-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.content-card,
.service-card,
.contact-card,
.process-card,
.faq-card,
.highlight-card {
  border: 1px solid rgba(21, 48, 65, 0.08);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 2.75rem;
  border-radius: var(--radius-lg);
}

.hero h1,
.service-hero h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero__lead,
.service-hero__lead,
.page-hero__lead {
  margin: 0;
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero__actions,
.service-hero__actions,
.page-hero__actions,
.cta-band__actions,
.closing-cta__actions,
.service-cta__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(21, 48, 65, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
}

.hero__panel {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.hero-highlight {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(21, 48, 65, 0.08);
}

.hero-highlight strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-highlight p,
.content-card p,
.service-card p,
.faq-card p,
.contact-card p,
.highlight-card p,
.service-section p,
.page-section p {
  margin: 0;
  color: var(--ink-soft);
}

.section,
.page-section,
.service-section,
.service-cta,
.cta-band,
.closing-cta {
  padding: 1.2rem 0 2.2rem;
}

.section-header,
.page-section__header {
  margin-bottom: 1.4rem;
}

.section h2,
.page-section h2,
.service-section h2,
.service-cta h2,
.closing-cta h2,
.cta-band h2 {
  margin: 0 0 0.7rem;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.section-header p,
.page-section__header p {
  max-width: 48rem;
  color: var(--ink-soft);
}

.grid-3,
.grid-2,
.services-grid,
.reason-grid,
.faq-grid,
.contact-grid,
.metrics-grid {
  display: grid;
  gap: 1rem;
}

.grid-3,
.services-grid,
.reason-grid,
.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.content-card,
.service-card,
.contact-card,
.process-card,
.faq-card,
.highlight-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.service-card h3,
.content-card h3,
.process-card h3,
.faq-card h3,
.contact-card h3,
.highlight-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.service-card ul,
.content-card ul,
.contact-card ul,
.service-list,
.check-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.service-list li,
.check-list li,
.content-card li,
.contact-card li {
  margin-bottom: 0.55rem;
}

.service-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.split--reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

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

.metrics-grid .highlight-card {
  text-align: left;
}

.metric-value {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.page-hero,
.service-hero {
  padding: 4.5rem 0 2.3rem;
}

.page-hero__panel,
.service-hero__inner {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 48, 65, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 240, 0.74);
  border-bottom: 1px solid rgba(21, 48, 65, 0.08);
}

.service-header__nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.service-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.service-section__inner-single {
  grid-template-columns: 1fr;
}

.service-section__main,
.service-section__aside,
.service-cta__inner,
.cta-band__panel,
.closing-cta__panel {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 48, 65, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-section-muted .service-section__main,
.service-section-muted .service-section__aside {
  background: rgba(255, 255, 255, 0.58);
}

.service-cta__inner,
.cta-band__panel,
.closing-cta__panel {
  background:
    linear-gradient(135deg, rgba(21, 48, 65, 0.96), rgba(17, 60, 82, 0.94)),
    var(--ink);
  color: #f8f2e6;
}

.service-cta__inner p,
.cta-band__panel p,
.closing-cta__panel p {
  color: rgba(248, 242, 230, 0.82);
}

.service-cta .button-secondary,
.cta-band .button-secondary,
.closing-cta .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-chip {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(21, 48, 65, 0.08);
  color: var(--ink);
}

.service-area-banner {
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: rgba(181, 95, 53, 0.08);
  color: var(--ink-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.site-footer {
  padding: 1.8rem 0 3rem;
}

.site-footer__inner {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 48, 65, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--ink-soft);
}

.site-footer__note {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero__layout,
  .split,
  .split--reverse,
  .service-section__inner,
  .grid-3,
  .services-grid,
  .reason-grid,
  .metrics-grid,
  .grid-2,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(21, 48, 65, 0.08);
    background: rgba(251, 247, 240, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    position: relative;
  }

  .header-tools {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .site-header__inner,
  .service-header__inner {
    min-height: 68px;
  }

  .brand-tagline {
    display: none;
  }

  .header-tools {
    gap: 0.45rem;
  }

  .hero,
  .page-hero,
  .service-hero {
    padding-top: 3.4rem;
  }

  .hero__content,
  .hero__panel,
  .page-hero__panel,
  .service-hero__inner,
  .service-section__main,
  .service-section__aside,
  .service-cta__inner,
  .site-footer__inner,
  .content-card,
  .service-card,
  .contact-card,
  .process-card,
  .faq-card,
  .highlight-card {
    padding: 1.3rem;
  }

  .site-footer__top {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__actions .button,
  .page-hero__actions .button,
  .service-hero__actions .button,
  .service-cta__actions .button,
  .closing-cta__actions .button,
  .cta-band__actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero h1,
  .service-hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.06;
  }

  .hero__lead,
  .service-hero__lead,
  .page-hero__lead {
    font-size: 1rem;
  }

  .contact-chip,
  .pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service-header__nav {
    font-size: 0.88rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.1rem;
  }

  .lang-select {
    min-height: 2.4rem;
    padding-inline: 0.7rem;
    font-size: 0.92rem;
  }
}
