:root {
  --green: #008457;
  --green-dark: #00482f;
  --green-light: #dff1e9;
  --white: #fff;
  --ink: #173129;
  --line: rgba(255, 255, 255, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.home {
  display: grid;
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1fr);
}

.portrait {
  min-height: 620px;
  overflow: hidden;
  background: var(--green-dark);
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.intro {
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 112px);
}

.intro-inner {
  width: 100%;
  max-width: 680px;
}

.site-name,
.wordmark {
  margin: 0 0 clamp(64px, 10vh, 120px);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.intro h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 30rem;
  margin: 28px 0 46px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-link {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  transition: padding 180ms ease, background-color 180ms ease;
}

.contact-link small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.arrow {
  font-size: 1.65rem;
  font-weight: 400;
}

.site-footer {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 5vw, 72px);
  background: var(--white);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.privacy-page {
  background: #f5f7f5;
  color: var(--ink);
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(24px, 7vw, 112px);
  background: var(--green);
  color: var(--white);
}

.wordmark {
  margin: 0;
  text-decoration: none;
}

.back-link {
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.privacy-main {
  padding: clamp(56px, 9vw, 120px) 24px;
}

.privacy-content {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-content .eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.privacy-content > h1 {
  margin: 0 0 72px;
  color: var(--green);
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.privacy-content h2 {
  margin: 54px 0 16px;
  color: var(--green-dark);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.2;
}

.privacy-content h3 {
  margin: 32px 0 12px;
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.3;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-content p {
  margin: 0 0 16px;
}

.privacy-content ol {
  padding-left: 1.45rem;
}

.privacy-content li {
  padding-left: 0.35rem;
}

.privacy-content a {
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.privacy-content a:focus-visible {
  outline-color: var(--green);
}

.privacy-footer {
  border-top: 1px solid #dce3df;
}

@media (max-width: 820px) {
  .home {
    display: block;
  }

  .portrait {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .intro {
    padding: 48px 24px 64px;
  }

  .site-name {
    margin-bottom: 64px;
  }

  .intro h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .privacy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-content > h1 {
    margin-bottom: 52px;
  }
}

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

  .contact-link {
    transition: none;
  }
}
