/* Vanilla Gift — site styles */

:root {
  --red: #D32027;
  --red-dark: #A8181E;
  --red-soft: #FBEDED;
  --ink: #1A1A1A;
  --text: #2E2E2E;
  --muted: #6B6B6B;
  --line: #E5E5E5;
  --line-soft: #F0F0F0;
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --max: 1080px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: auto; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 1.25;
}

p { margin: 0 0 14px; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* topbar */
.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar a { color: var(--muted); }
.topbar a:hover { color: var(--ink); text-decoration: none; }
.topbar .sep { margin: 0 10px; color: #d4d4d4; }

/* header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 32px;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand span { color: var(--ink); font-weight: 400; }

.mainnav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.mainnav a {
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}
.mainnav a:hover { color: var(--red); }
.mainnav a.active { color: var(--red); }
.mainnav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.header-phone {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  line-height: 1.3;
}
.header-phone strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* hero */
.hero {
  background: var(--bg-alt);
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero h1 {
  font-size: 38px;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero h1 .red { color: var(--red); }
.hero .intro {
  font-size: 17px;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 520px;
}
.small-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}

/* card visual */
.card-art {
  position: relative;
  height: 280px;
  margin-bottom: 28px;
}
.gc {
  position: absolute;
  width: 300px;
  height: 190px;
  border-radius: 12px;
  padding: 20px;
  color: white;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, var(--red) 0%, #A8181E 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font);
}
.gc.back {
  top: 80px;
  left: 70px;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
  transform: rotate(-5deg);
}
.gc.front {
  top: 20px;
  left: 0;
  transform: rotate(3deg);
}
.gc .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gc .name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gc .visa {
  font-size: 13px;
  font-weight: 700;
  background: white;
  color: #1A1F71;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.gc .num {
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 15px;
  letter-spacing: 1.5px;
  opacity: 0.95;
}
.gc .bottom {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
}
.gc .bottom small {
  display: block;
  opacity: 0.7;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* notice card */
.notice {
  padding: 18px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
}
.notice strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

/* form */
.balance-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 32px 28px;
  box-shadow: 0 18px 50px -12px rgba(26, 26, 26, 0.18), 0 4px 12px rgba(26, 26, 26, 0.05);
  position: relative;
  overflow: hidden;
}
.balance-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red);
}
.balance-box h2 {
  font-size: 22px;
  margin: 6px 0 4px;
  color: var(--ink);
  font-weight: 700;
}
.balance-box .req {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}
.balance-box .req .star { color: var(--red); }
.balance-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.balance-box label .star { color: var(--red); }
.field {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  margin-bottom: 18px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field::placeholder { color: #B5B5B5; }
.field:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 32, 39, 0.15);
}
.row { display: flex; gap: 14px; }
.row > div { flex: 1; }

.submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border-radius: 8px;
  margin-top: 6px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(211, 32, 39, 0.25);
  letter-spacing: 0.01em;
}
.submit:hover:not(:disabled) { background: var(--red-dark); box-shadow: 0 6px 18px rgba(211, 32, 39, 0.32); }
.submit:active:not(:disabled) { transform: translateY(1px); }
.submit:disabled { opacity: 0.6; cursor: not-allowed; }
.help-link {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.result {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
  border: 1px solid;
}
.result.show { display: block; }
.result.success { background: #F2F8EE; border-color: #C7DDB5; color: #2F5A18; }
.result.error { background: var(--red-soft); border-color: #F1C5C5; color: var(--red-dark); }
.result .balance-amt {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.result .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* demo sample panel */
.samples {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
}
.samples .head {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.samples table { width: 100%; border-collapse: collapse; }
.samples td { padding: 5px 6px; vertical-align: middle; }
.samples td:first-child { padding-left: 0; }
.sample {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 12px;
  color: var(--ink);
}
.sample:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* info strip */
.info-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.info-strip .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-strip .item { padding: 0 8px; }
.info-strip h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
}
.info-strip p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* inner-page header */
.page-head {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
}
.page-head .eyebrow {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.page-head h1 {
  font-size: 40px;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 720px;
}
.page-head .sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}

/* prose */
.prose {
  max-width: 680px;
  font-size: 16px;
  color: var(--text);
}
.prose h2 {
  font-size: 22px;
  margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 18px; }
.prose ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  border-bottom: 1px solid var(--line-soft);
}
.prose ul li:last-child { border-bottom: 0; }
.prose ul li::before {
  content: "\00D7";
  position: absolute;
  left: 8px;
  top: 5px;
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
}

/* team */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 16px 0 24px;
}
.tcard {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.tcard .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
}
.tcard h3 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
}
.tcard .role {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
}
.tcard p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .page-head h1 { font-size: 30px; }
  .team { grid-template-columns: 1fr; }
}

/* FAQ page */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 24px;
  font-size: 14px;
}
.faq-side h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 700;
}
.faq-side ul { list-style: none; padding: 0; margin: 0; }
.faq-side li { margin-bottom: 8px; }
.faq-side a {
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
  display: block;
}
.faq-side a:hover { color: var(--red); }

.faq-main { max-width: 720px; }
.faq-search-wrap {
  position: relative;
  margin-bottom: 28px;
}
.faq-search {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-search::placeholder { color: #b5b5b5; }
.faq-search:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 32, 39, 0.12);
}
.faq-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.faq-cat { margin-top: 44px; }
.faq-cat:first-of-type { margin-top: 0; }
.faq-cat-title {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 18px 36px 18px 0;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: var(--font);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--red); }
.faq-item .a {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
  padding: 0 32px 22px 0;
}
.faq-item .a p { margin: 0 0 10px; }
.faq-item .a p:last-child { margin-bottom: 0; }

.faq-noresults {
  display: none;
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.faq-noresults.show { display: block; }

.sponsor {
  margin-top: 48px;
  padding: 20px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sponsor .tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  margin-top: 2px;
}
.sponsor .body strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}
.sponsor .body p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text);
}
.sponsor a { font-size: 13px; font-weight: 600; }

.still-stuck {
  margin-top: 48px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.still-stuck h3 { margin: 0 0 6px; font-size: 18px; }
.still-stuck p { margin: 0 0 14px; color: var(--text); font-size: 15px; }

@media (max-width: 820px) {
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-side { position: static; }
  .faq-side ul { display: flex; flex-wrap: wrap; gap: 6px; }
  .faq-side li { margin: 0; }
  .faq-side a {
    padding: 6px 12px;
    background: var(--bg-alt);
    border-radius: 999px;
    font-size: 13px;
  }
}

/* Support page */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.route-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.route-card.urgent {
  border-color: #F1C5C5;
  background: var(--red-soft);
}
.route-card .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.route-card.urgent .tag { color: var(--red); }
.route-card h2 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.route-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.route-card .phone {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.route-card.urgent .phone { color: var(--red); }
.route-card .note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.support-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
}
.support-form-card h2 {
  font-size: 22px;
  margin: 0 0 6px;
}
.support-form-card .lead {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
}
.support-form-card textarea.field {
  min-height: 130px;
  resize: vertical;
  font-family: var(--font);
  line-height: 1.55;
}
.support-form-card select.field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236B6B6B' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.aside-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 16px;
}
.aside-block h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 12px;
}
.aside-block .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.aside-block .item:last-child { border-bottom: 0; }
.aside-block .item .label { color: var(--text); }
.aside-block .item .val { color: var(--ink); font-weight: 600; text-align: right; }

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3FA63F;
  box-shadow: 0 0 0 3px rgba(63, 166, 63, 0.18);
  flex-shrink: 0;
}
.status-line strong { color: var(--ink); }
.status-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.contact-result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
  border: 1px solid;
}
.contact-result.show { display: block; }
.contact-result.success { background: #F2F8EE; border-color: #C7DDB5; color: #2F5A18; }
.contact-result.error { background: var(--red-soft); border-color: #F1C5C5; color: var(--red-dark); }

@media (max-width: 820px) {
  .routes { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Legal / long-form pages */
.legal-meta {
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.legal-meta strong { color: var(--ink); font-weight: 600; }

.legal {
  max-width: 720px;
  font-size: 16px;
  color: var(--text);
}
.legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 16px;
  margin: 24px 0 8px;
  font-weight: 700;
}
.legal p { margin: 0 0 14px; line-height: 1.7; }
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal ul li { margin-bottom: 6px; line-height: 1.6; }
.legal .tldr {
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  border-radius: 6px;
  margin: 0 0 28px;
  font-size: 15px;
}
.legal .tldr strong { color: var(--red-dark); }

/* 404 */
.fourohfour {
  padding: 80px 0 100px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.fourohfour .num {
  font-size: 96px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0 0 8px;
}
.fourohfour h1 {
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.fourohfour p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 26px;
}
.fourohfour .options {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.fourohfour .btn-red {
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.fourohfour .btn-red:hover { background: var(--red-dark); text-decoration: none; }
.fourohfour .btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.fourohfour .btn-ghost:hover { border-color: var(--ink); text-decoration: none; }

/* sections */
.block { padding: 56px 0; background: #fff; }
.block h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.block .lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 28px;
}

/* faq */
.faq { max-width: 720px; }
.faq dt {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 6px;
}
.faq dt:first-of-type { margin-top: 0; }
.faq dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.faq dd:last-child { border-bottom: 0; }

/* footer */
footer {
  background: #1A1A1A;
  color: #BFBFBF;
  padding: 48px 0 24px;
  font-size: 14px;
}
footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
footer h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: #BFBFBF; }
footer a:hover { color: #fff; text-decoration: none; }
footer .brand-foot {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
footer .brand-foot span { color: #BFBFBF; font-weight: 400; }
footer .tag { margin: 0; color: #888; font-size: 13px; max-width: 280px; }
footer .copy {
  border-top: 1px solid #2F2F2F;
  padding-top: 20px;
  font-size: 13px;
  color: #888;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* responsive */
@media (max-width: 820px) {
  .hero { padding: 40px 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 28px; }
  .card-art { height: 230px; }
  .gc { width: 260px; height: 165px; }
  .info-strip .grid { grid-template-columns: 1fr; gap: 22px; }
  footer .cols { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
  .mainnav { gap: 18px; font-size: 14px; }
  .topbar .wrap > div:first-child { display: none; }
}
@media (max-width: 520px) {
  .site-header .wrap { padding: 16px 20px; gap: 12px; flex-wrap: wrap; }
  .mainnav { width: 100%; justify-content: space-between; gap: 12px; font-size: 13px; }
  .hero h1 { font-size: 24px; }
  .row { flex-direction: column; gap: 0; }
  footer .cols { grid-template-columns: 1fr; gap: 28px; }
}
