:root {
  --ink: #1c2126;
  --ink-soft: #454c53;
  --ink-faint: #767f87;
  --paper: #faf8f4;
  --paper-alt: #f1ede5;
  --paper-deep: #e9e3d8;
  --line: rgba(28, 33, 38, 0.14);
  --line-strong: rgba(28, 33, 38, 0.3);
  --accent: #b1703f;
  --accent-dark: #8f5830;
  --accent-soft: rgba(177, 112, 63, 0.12);
  --slate: #445251;

  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(28,33,38,0.06), 0 1px 1px rgba(28,33,38,0.05);
  --shadow-md: 0 10px 26px -10px rgba(28,33,38,0.22), 0 2px 8px -2px rgba(28,33,38,0.10);
  --shadow-lg: 0 30px 70px -26px rgba(28,33,38,0.32), 0 10px 24px -10px rgba(28,33,38,0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.section {
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1.25rem, 5vw, 5rem);
  position: relative;
}

.section--alt { background: var(--paper-alt); }

.section__header {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-strong);
}

.section__title {
  font-size: clamp(1.8rem, 2.4vw + 1rem, 2.6rem);
  margin-bottom: 1rem;
}

.section__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  min-height: 44px;
  position: relative;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

.btn__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  position: relative;
}
.btn__dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse 2.2s infinite var(--ease);
}
@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}


.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem clamp(1rem, 4vw, 3rem);
}

.site-header__flip {
  max-width: 1240px;
  margin: 0 auto;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.site-header__face {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .8s var(--ease), opacity .5s var(--ease), box-shadow .5s var(--ease);
  backface-visibility: hidden;
}

.site-header__face--front {
  position: relative;
  transform: rotateX(0deg);
}

.site-header__face--back {
  position: absolute;
  inset: 0;
  transform: rotateX(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.site-header--open .site-header__face--front { transform: rotateX(180deg); }
.site-header--open .site-header__face--back { transform: rotateX(0deg); }
.site-header--open .site-header__face--front,
.site-header--open .site-header__face--back { transition: transform .8s var(--ease); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 1.4rem;
}

.site-header__logo img { height: 32px; width: auto; }

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--ink); font-weight: 600; }

.site-header__cta { flex-shrink: 0; }

.site-header__burger, .site-header__close {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header__burger:hover, .site-header__close:hover { border-color: var(--accent); background: var(--accent-soft); }

.site-header__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  display: flex;
}

.nav--mobile { width: 100%; }
.nav__list--mobile {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nav__list--mobile .nav__link { font-size: 1.2rem; }

.nav-pill {
  position: fixed;
  top: 1.4rem; right: 1.4rem;
  z-index: 1100;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px) scale(0.85);
  transition: all .45s var(--ease);
}
.nav-pill--visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.nav-pill:hover { background: var(--accent-dark); }

.site-header--scrolled .site-header__flip { opacity: 0; pointer-events: none; transform: translateY(-16px); }
.site-header--open.site-header--scrolled .site-header__flip { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 880px) {
  .nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__burger { display: flex; }
  .site-header__inner { padding: 0.7rem 1rem; }
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,33,38,0.72) 0%, rgba(28,33,38,0.82) 55%, rgba(28,33,38,0.94) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 1.5rem;
  color: var(--paper);
}
.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.75);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(2.6rem, 5vw + 1rem, 5.2rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
  color: rgba(250,248,244,0.88);
  max-width: 56ch;
  margin: 0 auto 2.4rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero__actions .btn--ghost:hover { border-color: #fff; }
.hero__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,248,244,0.4), transparent);
}


.intro {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem);
  background: var(--ink);
}
.intro__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.intro__mark {
  display: block;
  width: 48px; height: 1px;
  background: var(--accent);
  margin: 0 auto 1.6rem;
}
.intro__text {
  color: rgba(250,248,244,0.9);
  font-size: clamp(1.1rem, 1vw + 0.8rem, 1.5rem);
  line-height: 1.6;
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.feature {
  display: flex;
  gap: 1.2rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.feature:nth-child(odd) { border-right: 1px solid var(--line); }
.feature__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-dark);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.feature:hover .feature__icon { border-color: var(--accent); background: var(--accent-soft); }
.feature__title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature__text { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 720px) {
  .feature-list { grid-template-columns: 1fr; }
  .feature:nth-child(odd) { border-right: none; }
}


.process__list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.process__list::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.process__step {
  display: flex;
  gap: 2rem;
  padding: 1.8rem 0 1.8rem 0;
  position: relative;
}
.process__number {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  color: var(--accent-dark);
  position: relative;
  z-index: 1;
}
.process__title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.process__text { color: var(--ink-soft); max-width: 55ch; }


.gallery-section { background: var(--paper-alt); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover .gallery__img { transform: scale(1.06); }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}


.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card--featured { background: linear-gradient(160deg, var(--ink) 0%, #2b3238 100%); border-color: transparent; color: #fff; }
.card--featured .card__title, .card--featured .card__icon { color: #fff; }
.card--featured .card__text { color: rgba(250,248,244,0.82); }
.card:has(img) { padding: 0; overflow: hidden; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent-dark);
}
.card--featured .card__icon { border-color: rgba(255,255,255,0.35); }
.card__title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.card__text { color: var(--ink-soft); font-size: 0.95rem; }

.section:has(.card--featured) { background: var(--paper-alt); }

.solutions-preview__cta { text-align: center; margin-top: 3rem; }

@media (max-width: 980px) {
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .solution-grid { grid-template-columns: 1fr; }
}


.areas__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
.areas__list { margin-top: 2rem; border-top: 1px solid var(--line); }
.areas__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.areas__item-title { font-weight: 600; }
.areas__item-text { color: var(--ink-soft); font-size: 0.95rem; }
.areas__map { color: var(--ink-soft); display: flex; justify-content: center; }
.areas__svg { width: 100%; max-width: 320px; height: auto; }

@media (max-width: 880px) {
  .areas__inner { grid-template-columns: 1fr; }
  .areas__map { order: -1; }
}


.faq-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-preview__item { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.faq-preview__q { font-size: 1.05rem; margin-bottom: 0.6rem; }
.faq-preview__a { color: var(--ink-soft); font-size: 0.95rem; }
.faq-preview__cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 700px) {
  .faq-preview__grid { grid-template-columns: 1fr; }
}


.cta-final {
  background: var(--ink);
  text-align: center;
}
.cta-final__inner { max-width: 640px; margin: 0 auto; }
.cta-final__title {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-final__text { color: rgba(250,248,244,0.82); margin-bottom: 2rem; }


.page-hero {
  padding: clamp(8rem, 12vw, 11rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero--sm { padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.page-hero__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-strong);
}
.page-hero__title {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  margin-bottom: 1.2rem;
}
.page-hero__lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 55ch; margin: 0 auto; }


.story__grid, .team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
.story__paragraph { color: var(--ink-soft); margin-bottom: 1.2rem; }
.story__paragraph:last-child { margin-bottom: 0; }
.story__image, .team__image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.story__img, .team__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

@media (max-width: 880px) {
  .story__grid, .team__grid { grid-template-columns: 1fr; }
}


.philosophy__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy__item { padding: 1.5rem 1.4rem 0; border-top: 1px solid var(--line-strong); }
.philosophy__number { display: block; font-size: 0.85rem; color: var(--accent-dark); margin-bottom: 0.8rem; }
.philosophy__title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.philosophy__text { color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 980px) {
  .philosophy__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .philosophy__list { grid-template-columns: 1fr; }
}


.values__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.values__item {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.values__icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}
.values__text { color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 980px) {
  .values__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values__list { grid-template-columns: 1fr; }
}


.solution-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
.solution-detail__grid--reverse .solution-detail__image { order: 2; }
.solution-detail--alt { background: var(--paper-alt); }
.solution-detail__number {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
.solution-detail__title { font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem); margin-bottom: 1rem; }
.solution-detail__paragraph { color: var(--ink-soft); margin-bottom: 1.3rem; }
.solution-detail__points { border-top: 1px solid var(--line); }
.solution-detail__points li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}
.solution-detail__points li::before {
  content: '';
  position: absolute; left: 0; top: 1.2rem;
  width: 8px; height: 1px;
  background: var(--accent);
}
.solution-detail__image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.solution-detail__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

@media (max-width: 880px) {
  .solution-detail__grid, .solution-detail__grid--reverse { grid-template-columns: 1fr; }
  .solution-detail__grid--reverse .solution-detail__image { order: -1; }
}


.criteria__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.criteria__item { padding: 1.8rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-md); }
.criteria__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-dark);
}
.criteria__title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.criteria__text { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 980px) {
  .criteria__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .criteria__list { grid-template-columns: 1fr; }
}


.faq-group { max-width: 820px; margin: 0 auto 3rem; }
.faq-group__title {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-strong);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq-item__question {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-item__question::after { transform: rotate(45deg); }
.faq-item__answer { padding-top: 0.9rem; color: var(--ink-soft); }


.contact-section { padding-top: clamp(2rem, 4vw, 3rem); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.form__group { display: flex; flex-direction: column; gap: 0.5rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; transition: border-color .3s var(--ease); }
.form__group:has(:focus) { border-color: var(--accent); }
.form__group--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; border-bottom: none; padding-bottom: 0; }
.form__group--checkbox input { margin-top: 4px; width: 18px; height: 18px; }
.form__group--checkbox label { color: var(--ink-soft); font-size: 0.9rem; }
.form__label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.form__input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.3rem 0;
}
.form__input:focus { outline: none; }
.form__input--textarea { resize: vertical; min-height: 110px; }
.form:has(:focus) { box-shadow: var(--shadow-md); }
.form__submit { align-self: flex-start; margin-top: 0.4rem; }
.form__note { font-size: 0.82rem; color: var(--ink-faint); }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}
.contact-info__title { font-size: 1.1rem; margin-bottom: 1.2rem; }
.contact-info__list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__list li { display: flex; align-items: center; gap: 0.8rem; color: var(--ink-soft); }
.contact-info__list i { color: var(--accent-dark); width: 20px; }
.contact-info__map {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}


.methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.method-card { padding: 1.8rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); text-align: center; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.method-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.method-card__icon {
  width: 46px; height: 46px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}
.method-card__title { font-size: 1.02rem; margin-bottom: 0.6rem; }
.method-card__text { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 980px) {
  .methods-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .methods-grid { grid-template-columns: 1fr; }
}


.legal__inner { max-width: 780px; margin: 0 auto; }
.legal__updated { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 0.6rem; }
.legal__title { font-size: clamp(1.8rem, 2.4vw + 1rem, 2.6rem); margin-bottom: 1.3rem; }
.legal__intro { color: var(--ink-soft); margin-bottom: 2.6rem; }
.legal__block { margin-bottom: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal__heading { font-size: 1.2rem; margin-bottom: 1rem; }
.legal__bullets li { color: var(--ink-soft); padding: 0.5rem 0 0.5rem 1.2rem; position: relative; border-bottom: 1px solid var(--line); }
.legal__bullets li::before { content: ''; position: absolute; left: 0; top: 1rem; width: 6px; height: 1px; background: var(--accent); }
.legal__bullets li:last-child { border-bottom: none; }
.legal__paragraph { color: var(--ink-soft); }
.legal__clauses { counter-reset: clause; padding-left: 0; }
.legal__clauses li { list-style: none; counter-increment: clause; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.legal__clause-title::before { content: counter(clause) ". "; color: var(--accent-dark); }
.legal__clause-title { font-size: 1.1rem; margin-bottom: 0.7rem; }
.legal__clauses li p { color: var(--ink-soft); }
.legal__table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.legal__table th, .legal__table td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.legal__table th { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line-strong); }
.legal__table td { color: var(--ink-soft); }


.thanks { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 8rem 1.5rem 4rem; }
.thanks__inner { text-align: center; max-width: 480px; }
.thanks__check { margin: 0 auto 2rem; color: var(--accent); }
.thanks__circle { stroke: var(--accent); stroke-dasharray: 365; stroke-dashoffset: 365; animation: draw-circle 0.8s var(--ease) forwards; }
.thanks__mark { stroke: var(--accent); stroke-dasharray: 80; stroke-dashoffset: 80; animation: draw-mark 0.5s var(--ease) 0.7s forwards; }
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-mark { to { stroke-dashoffset: 0; } }
.thanks__title { font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem); opacity: 0; animation: fade-in 0.5s var(--ease) 1.2s forwards; margin-bottom: 1rem; }
.thanks__text { color: var(--ink-soft); opacity: 0; animation: fade-in 0.5s var(--ease) 1.4s forwards; margin-bottom: 2rem; }
.thanks__inner .btn { opacity: 0; animation: fade-in 0.5s var(--ease) 1.6s forwards; }
@keyframes fade-in { to { opacity: 1; } }


.footer { background: var(--ink); color: var(--paper); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) 2.5rem;
}
.footer__logo { height: 28px; margin-bottom: 1.4rem; filter: brightness(0) invert(1); }
.footer__story { color: rgba(250,248,244,0.78); margin-bottom: 1.6rem; max-width: 46ch; }
.footer__cta { border-color: rgba(250,248,244,0.4); color: #fff; }
.footer__cta:hover { background: #fff; color: var(--ink); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__heading { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(250,248,244,0.6); margin-bottom: 1.2rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__list a { color: rgba(250,248,244,0.85); font-size: 0.95rem; }
.footer__list a:hover { color: var(--accent); }
.footer__list--contact li { display: flex; align-items: flex-start; gap: 0.6rem; color: rgba(250,248,244,0.85); font-size: 0.92rem; }
.footer__bottom {
  border-top: 1px solid rgba(250,248,244,0.14);
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  max-width: 1240px; margin: 0 auto;
  font-size: 0.82rem;
  color: rgba(250,248,244,0.5);
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}


.cookie-consent {
  position: fixed;
  bottom: 1.2rem; left: 1.2rem;
  z-index: 1200;
  width: min(360px, calc(100vw - 2.4rem));
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .5s var(--ease);
}
.cookie-consent--visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-consent__title { font-size: 1rem; margin-bottom: 0.6rem; }
.cookie-consent__text { font-size: 0.87rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.cookie-consent__text a { color: var(--accent-dark); border-bottom: 1px solid var(--accent-dark); }
.cookie-consent__actions { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-consent__actions .btn { width: 100%; justify-content: center; }
.cookie-consent__customize {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.cookie-consent__customize--open { max-height: 400px; margin-top: 1rem; }
.cookie-consent__cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
}
.cookie-consent__cat:last-child { border-bottom: none; }
.cookie-consent__cat-name { font-weight: 500; }
.cookie-consent__cat-desc { color: var(--ink-faint); font-size: 0.78rem; display: block; }

@media (max-width: 480px) {
  .cookie-consent { left: 0.7rem; bottom: 0.7rem; }
}