:root {
  color-scheme: light;
  --text: #1f252b;
  --muted: #66717b;
  --line: #e2e7eb;
  --bg: #ffffff;
  --soft: #f7f9fa;
  --accent: #0d5f8f;
  --success: #198754;
  --danger: #8a2d2d;
  --danger-soft: #fff1f1;
  --success-soft: #edf8f1;
  --radius: 6px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--text);
  color: #fff;
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.topbar {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--text);
  text-decoration: underline;
}

.topbar__inner,
.section__inner,
.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  flex: none;
}

.brand img {
  width: min(250px, 46vw);
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.45rem, 1vw, 0.95rem);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav__links a {
  color: var(--text);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav__toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 0.6rem 0.85rem;
  font: inherit;
  font-weight: 700;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero,
.page-hero,
.contact,
.legal-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero__grid,
.page-hero__grid,
.contact__grid,
.footer__grid,
.legal-grid,
.content-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.hero__grid,
.page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
}

.contact__grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
}

.legal-grid,
.content-grid {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.hero__copy,
.page-hero__copy,
.contact__copy,
.section-heading {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

h3 {
  font-size: 1.08rem;
}

.hero__copy p,
.page-hero__copy p,
.contact__copy p,
.section-heading p,
.content-grid p,
.privacy-content p,
.privacy-content li,
.intro-grid p,
.contact-details {
  color: var(--muted);
}

.hero__media,
.page-hero__image {
  justify-self: end;
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.hero__media {
  aspect-ratio: 4 / 5;
}

.page-hero__image {
  aspect-ratio: 4 / 5;
}

.hero__media img,
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media--collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  background: var(--bg);
}

.hero__media--collage img {
  min-height: 0;
  border-radius: 4px;
  background: var(--soft);
}

.hero__media--collage img:first-child,
.page-hero__image--flyer img,
.page-hero__image--contain img {
  object-fit: contain;
  padding: 6px;
  background: var(--soft);
}

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

.check-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.check-list--inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin-top: 1.25rem;
}

.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  background: var(--text);
  color: #fff;
}

.button--secondary {
  background: var(--bg);
}

.intro-section,
.detail-section,
.legal-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 1.4rem;
}

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

.intro-grid article {
  min-height: 210px;
  padding: 1.15rem 1rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid article + article {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.intro-grid h2 {
  font-size: 1.1rem;
}

.intro-grid a {
  font-weight: 700;
}

.info-panel,
.legal-card,
.privacy-content,
.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.7rem);
}

.contact-details {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7de;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 0.78rem 0.85rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(13, 95, 143, 0.14);
}

.captcha-field {
  max-width: 260px;
}

.captcha-question {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font-weight: 700;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: var(--success-soft);
  color: #165f38;
  border: 1px solid #b8e3c8;
}

.form-status.error {
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid #e4b8b8;
}

.legal-hero {
  min-height: auto;
}

.privacy-content h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.privacy-content h2 {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.privacy-content h3 {
  margin-top: 1.6rem;
}

.privacy-content ul {
  padding-left: 1.2rem;
}

.privacy-content a {
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--bg);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.site-footer a,
.site-footer strong {
  color: var(--text);
}

.footer__grid {
  grid-template-columns: repeat(3, 1fr);
}

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

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__links a:last-child {
    border-bottom: 0;
  }

  .hero__grid,
  .page-hero__grid,
  .contact__grid,
  .legal-grid,
  .content-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .page-hero__image {
    justify-self: start;
    width: min(100%, 420px);
  }

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

  .intro-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .section__inner,
  .nav,
  .topbar__inner {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: min(220px, 58vw);
    max-height: 52px;
  }

  .section {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .intro-grid,
  .form-row,
  .check-list--inline {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .intro-grid article + article,
  .intro-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}
