:root {
  --bg: #f5efe3;
  --bg-deep: #2b2e34;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #fffdfa;
  --text: #2b2e34;
  --muted: #6f6759;
  --line: rgba(43, 46, 52, 0.12);
  --accent: #c6a75e;
  --accent-deep: #8d7440;
  --accent-soft: #ecdfbd;
  --accent-blue: #2b2e34;
  --shadow: 0 28px 70px rgba(43, 46, 52, 0.12);
  --shadow-strong: 0 35px 110px rgba(43, 46, 52, 0.22);
  --shadow-soft: 0 18px 40px rgba(106, 89, 52, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 8%, rgba(198, 167, 94, 0.2), transparent 18%),
    radial-gradient(circle at 90% 12%, rgba(43, 46, 52, 0.12), transparent 16%),
    radial-gradient(circle at 25% 55%, rgba(198, 167, 94, 0.12), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(43, 46, 52, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(245, 238, 225, 0.95)),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 48%, #efe4cf 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
}

body::before {
  top: 5%;
  left: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(198, 167, 94, 0.28), transparent 70%);
}

body::after {
  right: -90px;
  bottom: 12%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(43, 46, 52, 0.16), transparent 72%);
}

main {
  position: relative;
  overflow: hidden;
}

main::before,
main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

main::before {
  background:
    linear-gradient(120deg, rgba(198, 167, 94, 0.18), transparent 22%, rgba(255, 248, 236, 0.22) 52%, rgba(43, 46, 52, 0.08) 70%, transparent 100%);
  background-size: 220% 220%;
  animation: pageFlow 18s ease-in-out infinite;
}

main::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(198, 167, 94, 0.18), transparent 19%),
    radial-gradient(circle at 82% 28%, rgba(43, 46, 52, 0.12), transparent 17%),
    radial-gradient(circle at 48% 62%, rgba(198, 167, 94, 0.12), transparent 19%),
    radial-gradient(circle at 78% 86%, rgba(43, 46, 52, 0.08), transparent 18%);
  background-attachment: fixed;
  opacity: 1;
}

.scroll-arcs {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-arc {
  position: absolute;
  left: 50%;
  width: 120vw;
  height: 60vw;
  max-width: 1800px;
  max-height: 900px;
  min-width: 900px;
  min-height: 450px;
  transform: translate3d(-50%, 0, 0);
  border-radius: 999px 999px 0 0;
  opacity: 0.78;
  filter: blur(2px);
  will-change: transform;
}

.bg-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05));
}

.bg-arc-one {
  top: 18vh;
  background:
    radial-gradient(circle at 50% 16%, rgba(198, 167, 94, 0.48), transparent 42%),
    linear-gradient(180deg, rgba(198, 167, 94, 0.8), rgba(198, 167, 94, 0.08));
}

.bg-arc-two {
  top: 145vh;
  background:
    radial-gradient(circle at 50% 16%, rgba(43, 46, 52, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(66, 70, 77, 0.74), rgba(66, 70, 77, 0.08));
}

.bg-arc-three {
  top: 280vh;
  background:
    radial-gradient(circle at 50% 16%, rgba(198, 167, 94, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(224, 193, 126, 0.74), rgba(224, 193, 126, 0.08));
}

.bg-arc-four {
  top: 420vh;
  background:
    radial-gradient(circle at 50% 16%, rgba(43, 46, 52, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(87, 91, 99, 0.68), rgba(87, 91, 99, 0.08));
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(43, 46, 52, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.gt-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(198, 167, 94, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 239, 227, 0.98));
  backdrop-filter: blur(12px);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.gt-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gt-loader__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.gt-loader__logo-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  padding: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98), rgba(245, 234, 206, 0.98));
  box-shadow: 0 24px 60px rgba(43, 46, 52, 0.16);
  animation: gt-loader-float 1.6s ease-in-out infinite;
}

.gt-loader__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(198, 167, 94, 0.2), rgba(43, 46, 52, 0.75), rgba(198, 167, 94, 0.22));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 4px;
  animation: gt-loader-ring 1.15s linear infinite;
}

.gt-loader__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: gt-loader-glow 1.8s ease-in-out infinite;
}

.gt-loader__text {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--bg-deep);
  text-transform: uppercase;
}

.gt-loader__bar {
  width: min(280px, 72vw);
  height: 10px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(43, 46, 52, 0.12);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(43, 46, 52, 0.08);
}

.gt-loader__progress {
  display: block;
  width: 55%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e7d2a1, #c6a75e, #8d7440);
  box-shadow: 0 0 18px rgba(198, 167, 94, 0.28);
  animation: gt-loader-progress 1.4s ease-in-out infinite;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 14px 40px rgba(43, 46, 52, 0.12);
  border-bottom-color: rgba(198, 167, 94, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 249, 240, 0.96);
  box-shadow: 0 10px 24px rgba(43, 46, 52, 0.08);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}

.brand span,
.eyebrow,
.card-label {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.73rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 0.96rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 6px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transition: transform 0.28s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.hero,
.page-hero,
.section {
  position: relative;
  overflow: clip;
}

.hero,
.section {
  padding: 96px 0;
}

.page-hero {
  padding: 74px 0 24px;
}

.hero-grid,
.contact-grid,
.footer-grid,
.cards.three-up,
.cards.four-up,
.cards.two-up,
.split-layout,
.manifesto-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: calc(100vh - 92px);
}

.hero h1,
.page-hero-card h1,
.section-head h2,
.hero-card h2 {
  margin: 0 0 16px;
  line-height: 1.04;
}

.hero h1,
.page-hero-card h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.hero h1 {
  max-width: 11ch;
}

.hero-text,
.page-hero-card p,
.section-head p,
.info-card p,
.service-card p,
.contact-card p,
.faq-list p,
.hero-card p,
.feature-strip span,
.social-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy,
.hero-card,
.page-hero-card,
.info-card,
.service-card,
.contact-card,
.contact-form,
.faq-list details,
.feature-strip,
.social-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(223, 229, 235, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.hero-copy {
  padding: 10px 6px 10px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-card,
.page-hero-card,
.info-card,
.service-card,
.contact-card,
.contact-form,
.faq-list details,
.feature-strip,
.social-card {
  padding: 30px;
  overflow: hidden;
}

.hero-card::before,
.page-hero-card::before,
.info-card::before,
.service-card::before,
.contact-card::before,
.contact-form::before,
.faq-list details::before,
.feature-strip::before,
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(220, 228, 236, 0.4), transparent 32%);
  pointer-events: none;
}

.cards.four-up .info-card:nth-child(1)::before {
  background:
    linear-gradient(135deg, rgba(224, 234, 245, 0.9), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(172, 195, 216, 0.3), transparent 34%);
}

.cards.four-up .info-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(234, 239, 246, 0.92), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(188, 173, 210, 0.22), transparent 34%);
}

.cards.four-up .info-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(235, 243, 240, 0.92), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(158, 198, 187, 0.24), transparent 34%);
}

.cards.four-up .info-card:nth-child(4)::before {
  background:
    linear-gradient(135deg, rgba(244, 239, 234, 0.92), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(208, 187, 164, 0.28), transparent 34%);
}

.manifesto-grid .chapter-card::before {
  background:
    linear-gradient(135deg, rgba(228, 235, 245, 0.78), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(163, 184, 210, 0.25), transparent 34%);
}

.manifesto-grid .quote-panel::before {
  background:
    linear-gradient(135deg, rgba(236, 239, 246, 0.84), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(191, 178, 212, 0.22), transparent 34%);
}

.collection-pillars .service-card:nth-child(1)::before,
.feature-stack .feature-strip:nth-child(1)::before {
  background:
    linear-gradient(135deg, rgba(227, 236, 246, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(160, 187, 213, 0.24), transparent 34%);
}

.collection-pillars .service-card:nth-child(2)::before,
.feature-stack .feature-strip:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(239, 235, 245, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(182, 169, 208, 0.22), transparent 34%);
}

.collection-pillars .service-card:nth-child(3)::before,
.feature-stack .feature-strip:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(232, 243, 239, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(162, 198, 184, 0.22), transparent 34%);
}

.collection-pillars .service-card:nth-child(4)::before {
  background:
    linear-gradient(135deg, rgba(246, 239, 233, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(214, 191, 171, 0.24), transparent 34%);
}

.cards.three-up .info-card:nth-child(1)::before {
  background:
    linear-gradient(135deg, rgba(228, 236, 246, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(167, 187, 212, 0.24), transparent 34%);
}

.cards.three-up .info-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(238, 243, 235, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(181, 202, 171, 0.22), transparent 34%);
}

.cards.three-up .info-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(244, 238, 232, 0.82), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(210, 189, 170, 0.22), transparent 34%);
}

.ethics-grid .chapter-card::before,
.finale-panel::before {
  background:
    linear-gradient(135deg, rgba(233, 239, 246, 0.84), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(173, 191, 208, 0.24), transparent 34%);
}

.ethics-grid .quote-panel::before {
  background:
    linear-gradient(135deg, rgba(242, 240, 247, 0.84), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(190, 176, 211, 0.22), transparent 34%);
}

.hero-card > *,
.page-hero-card > *,
.info-card > *,
.service-card > *,
.contact-card > *,
.contact-form > *,
.faq-list details > *,
.feature-strip > *,
.social-card > * {
  position: relative;
  z-index: 1;
}

.hero-card:hover,
.page-hero-card:hover,
.info-card:hover,
.service-card:hover,
.contact-card:hover,
.contact-form:hover,
.faq-list details:hover,
.feature-strip:hover,
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(177, 191, 205, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
  filter: saturate(1.08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d5ba7a, #c6a75e 60%, #8d7440 100%);
  box-shadow: 0 18px 36px rgba(198, 167, 94, 0.3);
}

.btn-secondary {
  background: linear-gradient(180deg, #fffdfa, #f5ead2);
  border-color: rgba(198, 167, 94, 0.34);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 22px rgba(198, 167, 94, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, #f8efd9, #dcc383 58%, #c6a75e);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(198, 167, 94, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(198, 167, 94, 0.3);
  background: linear-gradient(135deg, #fdf6e7, #e2ca89 58%, #c6a75e);
}

.hero-points,
.footer-grid ul,
.social-pills {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: grid;
  gap: 10px;
  font-family: Arial, sans-serif;
}

.hero-points li::before {
  content: "+";
  margin-right: 10px;
  color: var(--accent);
  font-weight: 700;
}

.hero-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}

.hero-orb-left {
  top: 90px;
  left: -80px;
  background: radial-gradient(circle, rgba(207, 215, 223, 0.8), transparent 65%);
}

.hero-orb-right {
  right: -100px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(189, 199, 209, 0.55), transparent 68%);
  animation-delay: -6s;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stats div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: transform 0.25s ease;
}

.hero-card:hover .stats div {
  transform: translateY(-2px);
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.section-alt {
  background: rgba(198, 167, 94, 0.08);
}

.section::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1100px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(198, 167, 94, 0.38), transparent);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head-left {
  margin-left: 0;
  text-align: left;
}

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

.cards.four-up {
  grid-template-columns: repeat(4, 1fr);
}

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

.manifesto-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.info-card h3,
.service-card h3,
.footer-grid h3,
.footer-grid h4,
.contact-card h2,
.social-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.chapter-card,
.quote-panel,
.finale-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(245, 236, 220, 0.9));
  border: 1px solid rgba(223, 229, 235, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.chapter-card,
.quote-panel,
.finale-panel {
  padding: 34px;
}

.chapter-card::before,
.quote-panel::before,
.finale-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 40%),
    radial-gradient(circle at top right, rgba(198, 167, 94, 0.18), transparent 30%);
  pointer-events: none;
}

.chapter-card > *,
.quote-panel > *,
.finale-panel > * {
  position: relative;
  z-index: 1;
}

.chapter-card h3,
.quote-panel blockquote,
.finale-panel h2 {
  margin-top: 0;
}

.chapter-index,
.quote-kicker,
.feature-lead {
  font-family: Arial, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-deep);
}

.quote-panel blockquote {
  margin: 18px 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.feature-lead {
  margin-bottom: 8px;
}

.split-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.split-layout-wide {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-stack,
.faq-list {
  display: grid;
  gap: 16px;
}

.heritage-manifesto {
  background:
    radial-gradient(circle at top center, rgba(221, 229, 237, 0.4), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(241, 245, 248, 0.7));
}

.heritage-values .feature-strip,
.collection-pillars .service-card,
.ethics-grid .chapter-card,
.ethics-grid .quote-panel,
.finale-panel {
  min-height: 100%;
}

.finale-panel {
  text-align: center;
  padding: 44px 36px;
}

.finale-actions {
  justify-content: center;
}

.cards.four-up .info-card:nth-child(1) {
  transform: translateY(0);
}

.cards.four-up .info-card:nth-child(2) {
  transform: translateY(18px);
}

.cards.four-up .info-card:nth-child(3) {
  transform: translateY(-10px);
}

.cards.four-up .info-card:nth-child(4) {
  transform: translateY(12px);
}

.feature-strip {
  display: grid;
  gap: 6px;
}

.feature-strip strong {
  font-size: 1.08rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-list summary::after {
  content: "\2193";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3f6f9, #d9e1e8);
  color: #56616d;
  font-size: 1rem;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(145, 159, 172, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
  box-shadow: 0 14px 26px rgba(132, 146, 159, 0.24);
}

.faq-list p {
  margin-bottom: 0;
}

.faq-list-wide {
  max-width: 920px;
}

.contact-grid {
  grid-template-columns: 0.94fr 1.06fr;
  align-items: start;
}

.contact-column {
  display: grid;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--surface-strong);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(132, 148, 164, 0.8);
  box-shadow: 0 0 0 4px rgba(198, 211, 223, 0.35);
  transform: translateY(-1px);
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fdfefe, #eef3f7);
  border: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(161, 174, 187, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-pills a:hover,
.social-pills a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(145, 160, 173, 0.2);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0 20px;
  color: #f3f5f7;
  background:
    radial-gradient(circle at top left, rgba(198, 167, 94, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(135deg, #21242a 0%, #2b2e34 52%, #1f2228 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 26px 0;
}

.footer-grid p,
.footer-grid li,
.footer-bottom p {
  color: rgba(243, 245, 247, 0.82);
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(243, 245, 247, 0.12);
  text-align: center;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 38px;
  --float-x: 0px;
  --float-y: 0px;
  opacity: 0;
  transform: translate3d(calc(var(--reveal-x) + var(--float-x)), calc(var(--reveal-y) + var(--float-y)), 0) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.85s ease, transform 0.85s ease, filter 0.85s ease;
}

.reveal-from-left {
  --reveal-x: -76px;
  --reveal-y: 10px;
}

.reveal-from-right {
  --reveal-x: 76px;
  --reveal-y: 10px;
}

.reveal-from-up {
  --reveal-x: 0px;
  --reveal-y: -56px;
}

.reveal-from-down {
  --reveal-x: 0px;
  --reveal-y: 52px;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(var(--float-x), var(--float-y), 0) scale(1);
  filter: blur(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(24px, -18px, 0) scale(1.06);
  }
}

@keyframes gt-loader-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes gt-loader-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(198, 167, 94, 0));
  }

  50% {
    filter: drop-shadow(0 0 16px rgba(198, 167, 94, 0.38));
  }
}

@keyframes gt-loader-ring {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gt-loader-progress {
  0% {
    transform: translateX(-80%);
  }

  50% {
    transform: translateX(90%);
  }

  100% {
    transform: translateX(-80%);
  }
}

@keyframes pageFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

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

  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .btn,
  .main-nav a::after,
  .hero-orb,
  .text-link,
  .social-pills a,
  main::before {
    transition: none;
  }

  main::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .bg-arc {
    transform: translate3d(-50%, 0, 0) !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .manifesto-grid,
  .split-layout,
  .contact-grid,
  .cards.four-up,
  .cards.three-up,
  .cards.two-up,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 70px 0;
  }

  .cards.four-up .info-card:nth-child(1),
  .cards.four-up .info-card:nth-child(2),
  .cards.four-up .info-card:nth-child(3),
  .cards.four-up .info-card:nth-child(4) {
    transform: none;
  }

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

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

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 14px;
  }

  .hero h1,
  .page-hero-card h1 {
    font-size: clamp(2.35rem, 9vw, 4rem);
  }

  .hero-card,
  .page-hero-card,
  .info-card,
  .service-card,
  .contact-card,
  .contact-form,
  .faq-list details,
  .feature-strip,
  .social-card,
  .chapter-card,
  .quote-panel,
  .finale-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .container {
    width: min(100% - 24px, 1140px);
  }

  body::before,
  body::after {
    display: none;
  }

  main::before,
  main::after,
  .scroll-arcs {
    display: none;
  }
}
