body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--ink);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.brand {
  font-family: "Londrina Solid", LondrinaSolid, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 1px;
  font-size: 1.6rem;
  color: var(--ink);
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(202, 220, 160, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: background-color .2s ease, transform .2s ease;
}
.nav-links a:hover {
  background: rgba(0,0,0,.08);
}
.menu-toggle {
  display: none;
}
.burger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  display: block;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 14px 28px rgba(0,0,0,.18);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.hero {
  padding: 72px 0 48px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  font-family: "Londrina Solid", LondrinaSolid, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 16px;
}
.lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.logo-frame {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(0,0,0,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.section {
  padding: 56px 0;
}
.section h2 {
  font-family: "Londrina Solid", LondrinaSolid, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 4.2vw, 44px);
  margin: 0 0 16px;
  color: var(--ink);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, 1fr);
}
.gallery figure {
  margin: 0;
  grid-column: span 4;
  background: rgba(0,0,0,.06);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  position: relative;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery figure:hover img {
  transform: scale(1.04);
}
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.team .member {
  display: grid;
  gap: 10px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 18px;
}
.team .avatar {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.12);
}
form.contact {
  display: grid;
  gap: 12px;
  max-width: 720px;
}
.field {
  display: grid;
  gap: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.86);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--ring);
  background: #fff;
}
.helper {
  font-size: 12px;
  color: var(--muted);
}
.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.42);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}
footer.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 960px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .burger { display: inline-flex; }
  .nav-links {
    position: absolute;
    right: 20px;
    left: 20px;
    top: 60px;
    background: rgba(202, 220, 160, 0.98);
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 10px;
    display: grid;
    gap: 6px;
    transform-origin: top right;
    transform: scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle:checked ~ .nav-links {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle:checked ~ .burger span { background: transparent; }
  .menu-toggle:checked ~ .burger span::before { transform: translateY(6px) rotate(45deg); }
  .menu-toggle:checked ~ .burger span::after { transform: translateY(-6px) rotate(-45deg); }
  .gallery figure { grid-column: span 6; }
  .features { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
}
