:root {
  --bg: #f5f2eb;
  --surface: #fffdf8;
  --ink: #191a17;
  --muted: #5f635b;
  --line: #d8d2c5;
  --line-strong: #2b2d27;
  --green: #26362b;
  --sage: #9daa8f;
  --rust: #a54f30;
  --rust-soft: #ead7cb;
  --sand: #e8dfd0;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --sans: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(25, 26, 23, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--surface);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 176px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand > span {
  display: none;
}

.brand strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.brand small,
.eyebrow,
.package-label,
.media-caption span {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--sand);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 56px) 0;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rust);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.65vw, 4.45rem);
  line-height: 0.95;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.04;
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  padding: 0 18px;
  font-weight: 700;
  text-align: center;
}

.button.primary {
  background: var(--ink);
  color: var(--surface);
}

.button.secondary {
  background: transparent;
}

.button:hover,
.button:focus-visible {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--surface);
}

.hero-notes {
  margin: clamp(24px, 3.2vw, 36px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.hero-notes div {
  min-height: 112px;
  padding: 15px 16px 16px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}

.hero-notes div:last-child {
  border-right: 0;
}

.hero-notes dt {
  margin: 0 0 14px;
  color: var(--rust);
  font-family: var(--mono);
  font-weight: 700;
}

.hero-notes dd {
  margin: 0;
  font-weight: 600;
}

.hero-media {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  grid-template-rows: 270px 130px auto;
  gap: 12px;
  align-self: stretch;
  align-content: center;
}

.photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--sand);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.photo-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.photo-small {
  grid-column: 2;
  grid-row: 2 / 3;
}

.media-caption {
  grid-column: 1;
  grid-row: 3;
  border-top: 2px solid var(--line-strong);
  padding-top: 14px;
}

.media-caption span {
  display: block;
  color: var(--rust);
}

.media-caption strong {
  display: block;
  max-width: 290px;
  margin-top: 6px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.signal-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.signal-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 14px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.signal-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: start;
}

.section-heading {
  min-width: 0;
}

.section-heading p:not(.eyebrow),
.method p,
.image-panel-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.narrow {
  max-width: 780px;
}

.service-list {
  min-width: 0;
  border-top: 1px solid var(--line-strong);
}

.service-list article {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.62fr) minmax(260px, 1fr);
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.service-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--rust);
  font-family: var(--mono);
  font-weight: 700;
}

.service-list h3 {
  font-size: clamp(1.28rem, 2.1vw, 2.25rem);
}

.service-list p,
.method-grid p,
.geo-card p,
.package-list p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.proof-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 78px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--green);
  color: var(--surface);
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
}

.proof-band h2 {
  color: var(--surface);
}

.proof-band .eyebrow {
  color: var(--sage);
}

.fit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 36px;
}

.fit-list li {
  break-inside: avoid;
  margin: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  padding: 16px 0;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 600;
}

.method-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.method-grid article {
  min-height: 235px;
  border-right: 1px solid var(--line);
  padding: 22px 20px;
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.image-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding-top: 0;
  padding-bottom: 0;
}

.image-panel-copy {
  padding: clamp(28px, 5vw, 56px) clamp(24px, 4vw, 44px) clamp(28px, 5vw, 56px) 0;
}

.image-panel img {
  width: 100%;
  min-height: 440px;
  height: 100%;
  object-fit: cover;
  border-left: 1px solid var(--line-strong);
}

.geo-layout,
.package-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.geo-card,
.package-list article {
  min-height: 250px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 22px;
}

.geo-card:last-child,
.package-list article:last-child {
  border-right: 0;
}

.geo-card h3,
.package-list h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.packages {
  padding-top: 0;
}

.package-list article {
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.34);
}

.package-list .featured {
  background: var(--sand);
}

.package-label {
  margin: 0 0 18px;
  color: var(--rust);
}

.package-list span {
  margin-top: auto;
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 78px);
  padding-top: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}

summary::marker {
  color: var(--rust);
}

details p {
  margin-top: 12px;
}

.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(48px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 78px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: clamp(42px, 7vw, 78px) 0;
}

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

.direct-contact {
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.direct-contact span {
  display: block;
  margin-bottom: 6px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact a {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 0;
  font: 400 1rem var(--sans);
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--line-strong);
  outline: 3px solid var(--rust-soft);
}

.contact .button.primary {
  width: fit-content;
}

.contact .button.primary:disabled {
  cursor: wait;
  opacity: 0.68;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note[data-state="success"] {
  color: #245f3b;
  font-weight: 700;
}

.form-note[data-state="error"] {
  color: #a23a24;
  font-weight: 700;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}

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

.footer p {
  max-width: 560px;
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(25, 26, 23, 0.16);
  padding: 18px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 82px) 0;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.legal-page h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page a {
  color: var(--rust);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .proof-band,
  .image-panel,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    grid-template-rows: 320px 150px auto;
  }

  .service-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
  }

  .service-list p {
    grid-column: 2;
  }

  .method-grid,
  .geo-layout,
  .package-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid article:nth-child(2n),
  .geo-card:nth-child(2n),
  .package-list article:nth-child(2n) {
    border-right: 0;
  }

  .image-panel-copy {
    padding-left: 0;
  }

  .image-panel img {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 66px;
  }

  .menu-button {
    display: block;
  }

  .brand-logo {
    width: 166px;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    padding: 8px;
  }

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

  .nav-links a {
    justify-content: center;
  }

  .hero,
  .section,
  .contact,
  .footer,
  .signal-strip {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    display: block;
    padding: 42px 0 56px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-notes,
  .signal-strip,
  .method-grid,
  .geo-layout,
  .package-list {
    grid-template-columns: 1fr;
  }

  .hero-notes div,
  .signal-strip span,
  .method-grid article,
  .geo-card,
  .package-list article {
    border-right: 0;
  }

  .hero-media {
    margin-top: 34px;
    grid-template-columns: 1fr;
    grid-template-rows: 310px auto auto;
    gap: 12px;
  }

  .photo-large,
  .photo-small,
  .media-caption {
    grid-column: 1;
    grid-row: auto;
  }

  .photo-small {
    display: none;
  }

  .fit-list {
    columns: 1;
  }

  .footer {
    flex-direction: column;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
