:root {
  --bg: #0e0e0e;
  --panel: #181818;
  --panel-soft: #202020;
  --text: #f4f1ea;
  --muted: #b7b1a8;
  --accent: #c96f32;
  --accent-soft: rgba(201, 111, 50, 0.18);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, var(--accent-soft), transparent 28%),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.04),
      transparent 26%
    ),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(100% - 32px, 1180px);
  margin: 16px auto 0;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #101010;
  letter-spacing: -0.08em;
}

.brand-name {
  letter-spacing: 0.14em;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.language-button.active {
  background: var(--accent);
  color: #101010;
}

.section {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}

.hero-content {
  width: min(100%, 980px);
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 24px 80px var(--shadow);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 16px;
}

.hero .eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1.05;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.heart {
  display: inline-block;
  font-size: 0.72em;
  transform: translateY(-0.04em);
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(201, 111, 50, 0.16);
}

.button:focus-visible,
.language-button:focus-visible,
.back-to-top:focus-visible,
.footer-top-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.button.primary {
  background: var(--accent);
  color: #121212;
  border-color: var(--accent);
}

.ghost-button {
  color: var(--text);
}

.about-section {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-intro {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 111, 50, 0.16),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.045);
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(201, 111, 50, 0.18);
  border-radius: 50%;
  opacity: 0.55;
}

.pillar-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.pillar-card h3 {
  font-size: 34px;
  text-transform: uppercase;
  color: var(--text);
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-note {
  max-width: 820px;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.about-note p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.reviews-section {
  border-top: 1px solid var(--border);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.reviews-heading {
  margin-bottom: 0;
}

.reviews-cta {
  margin-top: 28px;
}

.review-proof-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 111, 50, 0.18),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.045);
}

.review-proof-panel::after {
  content: "R2R";
  position: absolute;
  right: 24px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.proof-label {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.16);
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(201, 111, 50, 0.1), transparent 42%);
  opacity: 0.7;
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.review-card h3 {
  font-size: 25px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-section {
  border-top: 1px solid var(--border);
}

.portfolio-heading {
  max-width: 940px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.portfolio-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(201, 111, 50, 0.35),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
}

.portfolio-visual::before {
  content: "R2R";
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.portfolio-visual::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(201, 111, 50, 0.22);
  border-radius: 50%;
}

.portfolio-visual span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.portfolio-content {
  padding: 26px;
}

.portfolio-category {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-content h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.portfolio-content p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.sponsors-section {
  border-top: 1px solid var(--border);
}

.sponsors-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.sponsors-heading {
  margin-bottom: 0;
}

.sponsors-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 111, 50, 0.2),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.045);
}

.sponsors-cta-panel::after {
  content: "R2R";
  position: absolute;
  right: 22px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.sponsors-cta-panel h3,
.sponsors-cta-panel p,
.sponsors-cta-panel a {
  position: relative;
  z-index: 1;
}

.sponsors-cta-panel h3 {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.05;
}

.sponsors-cta-panel p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.sponsor-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(201, 111, 50, 0.18),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.sponsor-card-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.sponsor-logo-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 34px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(201, 111, 50, 0.22),
      transparent 38%
    ),
    rgba(0, 0, 0, 0.18);
}

.sponsor-logo-box::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 111, 50, 0.22);
  border-radius: 50%;
}

.sponsor-logo-image {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(220px, 100%);
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.38));
}

.sponsor-logo-fallback {
  position: relative;
  z-index: 1;
  display: none;
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.sponsor-card-content {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.sponsor-card-content h3 {
  font-size: 34px;
}

.sponsor-card-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.sponsor-code-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(201, 111, 50, 0.28);
  border-radius: 18px;
  background: rgba(201, 111, 50, 0.1);
}

.sponsor-code-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sponsor-code-box strong {
  color: var(--text);
  font-size: 16px;
}

.sponsor-mini-mark {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 30px 30px 0;
  border: 1px solid rgba(201, 111, 50, 0.28);
  border-radius: 50%;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
  background: rgba(0, 0, 0, 0.2);
}

.request-section {
  border-top: 1px solid var(--border);
  scroll-margin-top: 120px;
}

.request-section.is-hidden {
  display: none;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.request-heading {
  margin-bottom: 0;
}

.form-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 111, 50, 0.14),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.045);
}

.review-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.consent-row label {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow: 0 0 0 1000px #151515 inset;
  transition: background-color 9999s ease-in-out 0s;
}

textarea {
  resize: vertical;
}

select {
  cursor: pointer;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.character-counter.is-warning {
  color: var(--accent);
  font-weight: 900;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.cards-section {
  border-top: 1px solid var(--border);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.contact-actions {
  margin-top: 32px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 111, 50, 0.16),
      transparent 36%
    ),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.contact-card::after {
  content: "R2R";
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-label {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: 27px;
  line-height: 1.08;
}

.contact-card h3 a {
  display: inline-block;
  max-width: 100%;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-card h3 a:hover {
  color: var(--accent);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 54px 0 44px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.75fr));
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 111, 50, 0.16),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-decoration: none;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.13em;
}

.footer-brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-brand-block p {
  max-width: 430px;
  margin: 0;
  line-height: 1.7;
}

.footer-location {
  color: var(--text);
  font-weight: 800;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 2px 0;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-top-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.footer-top-button:hover {
  border-color: var(--accent);
  background: rgba(201, 111, 50, 0.16);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1180px) {
  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 13px;
  }
}

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

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

  .sponsors-layout {
    grid-template-columns: 1fr;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card-featured {
    grid-template-columns: 1fr;
  }

  .sponsor-logo-box {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    position: static;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  .site-header {
    border-radius: 26px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .language-switch {
    margin-left: auto;
  }

  .reviews-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .hero-content {
    padding: 32px;
    border-radius: 24px;
  }

  .hero .eyebrow {
    font-size: 20px;
    letter-spacing: 0.18em;
    margin: 0 0 18px;
  }

  .subtitle,
  .section-intro {
    font-size: 17px;
  }

  .hero-meta {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .button-grid {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .pillar-grid,
  .card-grid,
  .review-grid,
  .portfolio-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .pillar-number,
  .review-number {
    margin-bottom: 34px;
  }

  .about-note p {
    font-size: 16px;
  }

  .review-card,
  .card {
    min-height: auto;
  }

  .portfolio-card {
    grid-template-rows: 180px 1fr;
  }

  .portfolio-content {
    padding: 24px;
  }

  .sponsors-cta-panel,
  .sponsor-card-content {
    padding: 24px;
  }

  .sponsor-card-content h3,
  .sponsors-cta-panel h3 {
    font-size: 28px;
  }

  .sponsor-logo-box {
    min-height: 190px;
    padding: 28px;
  }

  .contact-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-card-label {
    margin-bottom: 28px;
  }

  .contact-card h3 {
    font-size: 24px;
  }

  .contact-card h3 a {
    font-size: 24px;
  }

  .form-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer {
    width: min(100% - 28px, 1180px);
    padding: 36px 0 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 24px;
  }

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

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 22px, 1180px);
    margin-top: 10px;
    padding: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 12px;
  }

  .nav {
    gap: 12px 14px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero-content {
    padding: 28px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .contact-card h3 a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 22px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand strong {
    font-size: 13px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
