@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #4b68f0;
  --black: #0a0a0a;
  --paper: #f9f7f4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
}

.logo-mark {
  display: flex;
  gap: 4px;
  align-items: center;
}

.logo-mark span {
  width: 13px;
  height: 13px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.top-nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.top-nav .is-active {
  outline: 1px solid #fff;
  padding: 4px 6px;
}

.cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border: 1px solid #fff;
}

/* ===== FAQ ===== */
.faq-page {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 110px clamp(22px, 4vw, 56px) 80px;
  min-height: 80vh;
  align-items: start;
}

.faq-he {
  position: sticky;
  top: 88px;
}

.faq-he h1 {
  margin: 0 0 22px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.faq-intro {
  margin: 0;
  max-width: 18ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  color: #eee9e6;
}

.faq-main {
  border-top: 1px solid rgba(238, 233, 230, 0.28);
}

.faq-item {
  border-bottom: 1px solid rgba(238, 233, 230, 0.28);
}

.faq-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
}

.faq-btn span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.25;
  color: var(--blue);
  transition: color 0.2s ease;
}

.faq-btn:hover span {
  color: #6b84ff;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #eee9e6;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.faq-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel-inner > *:first-child {
  margin-top: 0;
}

.faq-panel-inner > *:last-child {
  margin-bottom: 0;
  padding-bottom: 26px;
}

.faq-panel-inner p,
.faq-panel-inner li {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #d8d4d0;
}

.faq-panel-inner ul {
  margin: 0 0 16px;
  padding-left: 1.15em;
}

.faq-panel-inner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Talk */
.talk-section {
  background: var(--paper);
  color: #111;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: min(70vh, 620px);
  align-items: stretch;
}

.talk-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 48px 40px;
}

.talk-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
}

.talk-arrow {
  width: 48px;
  height: 48px;
  border: 1.5px solid #111;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}

.talk-arrow:hover {
  background: #111;
  color: #fff;
}

.talk-visual {
  position: relative;
  overflow: hidden;
  min-height: min(70vh, 620px);
  height: 100%;
  background: #111;
}

.talk-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 56px clamp(22px, 4vw, 48px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.7fr;
  gap: 28px;
}

.footer-brand h6,
.newsletter-title {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.footer-tag {
  margin: 0 0 14px !important;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px !important;
  color: #bbb !important;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: #cfcfd4;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-title {
  margin-top: 34px !important;
  font-size: clamp(28px, 3vw, 40px) !important;
}

.newsletter-input {
  margin-top: 16px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4a4f;
}

.footer-grid > div:not(.footer-brand) h6 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  display: block;
  color: #d0d0d5;
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #2c2c30;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #9f9fa5;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .faq-page,
  .talk-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-he {
    position: relative;
    top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-icon::before,
  .faq-icon::after {
    transition: none;
  }
}
