@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;600;700;800&display=swap');

:root {
  --ink: #172320;
  --muted: #61706b;
  --paper: #f4f7f2;
  --mint: #cfe8d8;
  --lime: #d9f36b;
  --line: #d9e2da;
  --white: #ffffff;
  --focus: #6a8d4c;
  --dark-hover: #34483f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

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

.brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.brand span {
  color: #6a8d4c;
}

nav {
  display: flex;
  gap: 24px;
  font-size: .9rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.language-option {
  padding: 3px 1px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: 700 .76rem 'DM Mono', monospace;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s ease, opacity .2s ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: var(--ink);
}

.language-option:not(.is-active) {
  opacity: .55;
}

.language-option:not(.is-active):hover,
.language-option:not(.is-active):focus-visible {
  opacity: 1;
}

.language-divider {
  color: var(--line);
  font: 500 .75rem 'DM Mono', monospace;
  user-select: none;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 500 .72rem 'DM Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #88a96a;
}

h1,
h2,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 650px;
  margin: 20px 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: -.085em;
}

.hero p {
  max-width: 510px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button {
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

button.button {
  appearance: none;
}

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

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

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

.orbital {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mint);
}

.orbital::before,
.orbital::after {
  content: '';
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(23, 35, 32, .25);
  border-radius: 50%;
  transform: rotate(-35deg) scaleX(1.5);
}

.orbital::after {
  transform: rotate(55deg) scaleX(1.5);
}

.signal {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 145px;
  height: 145px;
  border-radius: 38% 62% 55% 45%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  letter-spacing: -.05em;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: 18px 18px 0 rgba(23, 35, 32, .09);
}

.signal small {
  display: block;
  font: 500 .65rem 'DM Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card {
  padding: 28px 24px 34px 0;
}

.card + .card {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.card h2 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -.04em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.number {
  color: #7a9b62;
  font: 500 .75rem 'DM Mono', monospace;
}

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 20px;
}

.contact-intro h2 {
  max-width: 430px;
  margin: 20px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.075em;
}

.contact-intro > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-note {
  max-width: 430px;
  margin-top: 35px;
  padding: 18px 20px;
  border-left: 3px solid var(--lime);
  background: rgba(207, 232, 216, .55);
}

.contact-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: .84rem;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.contact-form {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
}

.form-field label span[aria-hidden="true"],
.form-consent span[aria-hidden="true"] {
  color: var(--focus);
}

.optional {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
  font-size: .92rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field select {
  min-height: 48px;
  cursor: pointer;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8b9791;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #b7c9bb;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--focus);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 155, 98, .18);
}

.form-field small {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

.form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--focus);
  cursor: pointer;
}

.form-consent label {
  cursor: pointer;
}

.form-consent a {
  color: var(--ink);
  font-weight: 700;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.form-required {
  color: var(--muted);
  font: 500 .68rem 'DM Mono', monospace;
}

.form-status {
  min-height: 20px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 35px 0;
  color: var(--muted);
  font-size: .82rem;
}

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

footer a:hover,
footer a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr .8fr;
    gap: 40px;
  }

  h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
  }

  .contact-section {
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 560px);
  }

  header {
    padding: 22px 0;
  }

  .header-actions {
    gap: 12px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: auto;
    padding: 45px 0 65px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .orbital {
    justify-self: start;
    width: min(78vw, 360px);
  }

  .services {
    grid-template-columns: 1fr;
  }

  .card,
  .card + .card {
    padding: 25px 0;
    border-left: 0;
  }

  .card + .card {
    border-top: 1px solid var(--line);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 75px 0 70px;
  }

  .contact-intro h2 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .contact-form {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  footer {
    flex-direction: column;
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  nav a,
  .language-option,
  .form-field input,
  .form-field select,
  .form-field textarea {
    transition: none;
  }
}

/* Privacy page: kept separate by scope, but served from the shared stylesheet. */
.privacy-page {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.privacy-page * {
  box-sizing: border-box;
}

.privacy-page a {
  color: var(--ink);
}

.privacy-page a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.privacy-page .wrap {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.privacy-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-page .brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.06em;
  text-decoration: none;
}

.privacy-page .brand span {
  color: #6a8d4c;
}

.privacy-page nav {
  display: flex;
  gap: 24px;
  font-size: .9rem;
}

.privacy-page nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}

.privacy-page nav a:hover,
.privacy-page nav a:focus-visible {
  color: var(--ink);
}

.privacy-page .language-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--muted);
  font: 500 .75rem 'DM Mono', monospace;
  letter-spacing: .04em;
}

.privacy-page .language-links a {
  color: var(--muted);
  text-decoration: none;
}

.privacy-page .language-links a:hover,
.privacy-page .language-links a:focus-visible {
  color: var(--ink);
}

.privacy-page main {
  padding: 76px 0 90px;
}

.privacy-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 500 .72rem 'DM Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.privacy-page .eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #88a96a;
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3 {
  line-height: 1.08;
  letter-spacing: -.045em;
  overflow-wrap: break-word;
}

.privacy-page h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.privacy-page h2 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.privacy-page h3 {
  margin: 34px 0 10px;
  font-size: 1.14rem;
  letter-spacing: -.025em;
}

.privacy-page p {
  max-width: 820px;
  margin: 0 0 16px;
}

.privacy-page .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.privacy-page .meta {
  color: var(--muted);
  font: 500 .72rem 'DM Mono', monospace;
}

.privacy-page .draft-warning {
  margin: 34px 0 50px;
  padding: 18px 20px;
  border-left: 3px solid #d58b27;
  background: #fff5df;
  color: #5d431b;
  font-size: .9rem;
}

.privacy-page .notice {
  margin-top: 52px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: var(--white);
}

.privacy-page .notice:first-of-type {
  margin-top: 0;
}

.privacy-page .notice ul {
  max-width: 800px;
  margin: 10px 0 20px 22px;
  padding: 0;
}

.privacy-page .notice li {
  margin: 5px 0;
}

.privacy-page .not-for-form {
  max-width: 820px;
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--lime);
  background: rgba(207, 232, 216, .62);
}

.privacy-page .not-for-form strong {
  display: block;
  margin-bottom: 5px;
}

.privacy-page .divider {
  height: 1px;
  margin: 80px 0 0;
  background: var(--line);
}

.privacy-page footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

.privacy-page footer a {
  color: inherit;
  text-decoration: none;
}

.privacy-page footer a:hover,
.privacy-page footer a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .privacy-page .wrap {
    width: min(100% - 32px, 560px);
  }

  .privacy-page header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 22px 0;
  }

  .privacy-page nav {
    order: 3;
    width: 100%;
    gap: 16px;
  }

  .privacy-page main {
    padding: 48px 0 65px;
  }

  .privacy-page h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .privacy-page .notice {
    padding: 24px 20px;
  }

  .privacy-page footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-page nav a {
    transition: none;
  }
}