/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.65rem;
}
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover {
  color: var(--brand-strong);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::selection {
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--ink);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5.5rem 0;
}
.section--tight {
  padding: 3.5rem 0;
}
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section--dark {
  background: var(--night);
  color: var(--surface);
}
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section__head {
  max-width: 46rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.section__head--left {
  margin-left: 0;
  text-align: left;
}
.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 0.8rem 0 0.6rem;
}
.section__lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}
.mt-3 {
  margin-top: 1.5rem !important;
}

/* ── Eyebrow (editorial label) ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}

/* ── Divider ornament ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--line);
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.ornament span {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.3);
}
.btn--primary:hover {
  color: #fff;
  background: var(--brand-strong);
  box-shadow: 0 12px 30px rgba(var(--brand-rgb), 0.38);
}
.btn--ghost {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  border-color: var(--brand-soft);
  color: var(--brand);
}
.btn--accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.28);
}
.btn--accent:hover {
  color: #fff;
}
.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}
.btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Topbar — editorial masthead ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(253, 249, 243, 0.97);
  backdrop-filter: blur(12px);
}
.topbar__accent-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent) 45%,
    var(--brand) 100%
  );
}
.topbar__masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}
.topbar__side {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Brand — centred, vertical stack */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--ink);
  text-decoration: none;
  flex: 1;
  text-align: center;
}
.brand:hover {
  color: var(--ink);
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name b {
  color: var(--brand);
}
.brand__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1;
}
.brand__mark {
  display: none;
}

/* Nav — strip bawah masthead, uppercase links */
.topbar__nav-bar {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1.15rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 0.18s,
    background 0.18s;
  border-right: 1px solid var(--line-soft);
  white-space: nowrap;
}
.nav__link:first-child {
  border-left: 1px solid var(--line-soft);
}
.nav__link:hover {
  color: var(--brand);
  background: var(--brand-tint);
}
.nav__link.is-active {
  color: var(--brand);
  font-weight: 700;
}
.nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
}
.nav__cta {
  display: none;
}

/* Burger — mobile only */
.burger {
  display: none;
}
.burger span {
  width: 1.2rem;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.22s,
    opacity 0.22s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Desktop: hide extra side slots */
@media (min-width: 721px) {
  .topbar__side--burger {
    display: none;
  }
}

/* Mobile */
@media (max-width: 720px) {
  /* Burger visible */
  .burger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
  }
  /* Nav-bar hidden, opens only on click */
  .topbar__nav-bar {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 90;
    border-top: none;
    border-bottom: 3px solid var(--brand);
    box-shadow: var(--shadow);
  }
  .topbar__nav-bar.is-open {
    display: block;
  }
  .nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav__link {
    text-align: center;
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  .nav__link:first-child {
    border-left: none;
  }
  .nav__link.is-active::after {
    bottom: 0;
    height: 3px;
  }
  .nav__cta {
    display: block;
    margin: 0.75rem 1.5rem 1rem;
    text-align: center;
  }
  .brand__tagline {
    display: none;
  }
  .brand__name {
    font-size: 1.3rem;
  }
}

/* ── Hero (editorial) ── */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  font-family: var(--font-head);
  font-size: clamp(14rem, 28vw, 22rem);
  line-height: 1;
  color: rgba(var(--brand-rgb), 0.045);
  pointer-events: none;
  user-select: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.hero__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  border-left: 3px solid var(--accent);
  padding-left: 0.65rem;
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
}
.hero__title em {
  font-style: italic;
  color: var(--brand);
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}
.hero__note {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__note i {
  color: var(--accent);
}
.hero__aside {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.hero__quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  position: relative;
  padding-left: 1.4rem;
}
.hero__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
}
.hero__quote-author {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__quote-author::before {
  content: "—";
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}
.hero__stat {
  text-align: center;
  padding: 1rem;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

@media (max-width: 820px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__aside {
    display: none;
  }
}

/* ── Stat strip ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-strip__item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--line-soft);
}
.stat-strip__item:last-child {
  border-right: none;
}
.stat-strip__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
}
.stat-strip__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stat-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
}

/* ── Feature grid ── */
.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .grid--3,
  .grid--2,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.card__icon--accent {
  background: var(--accent-tint);
  color: var(--accent);
}
.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse {
  direction: rtl;
}
.split--reverse > * {
  direction: ltr;
}
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split--reverse {
    direction: ltr;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.4rem 0;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.feature-list li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 1rem;
}

/* ── Pullquote ── */
.pullquote {
  position: relative;
  padding: 2.5rem 2rem 2.5rem 3rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--brand);
  box-shadow: var(--shadow-sm);
}
.pullquote p {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}

/* ── Blog / post cards ── */
.post-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.post-card__body {
  padding: 1.5rem;
}
.post-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.15rem;
  margin-bottom: 0.75rem;
}
.post-card__title {
  font-size: 1.05rem;
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}
.post-card__title a {
  color: var(--ink);
}
.post-card__title a:hover {
  color: var(--brand);
}
.post-card__excerpt {
  font-size: 0.93rem;
  color: var(--muted);
}
.post-card__meta {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}
.post-card__more:hover {
  gap: 0.65rem;
}
.post-card__cover {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  background: var(--surface-3);
}
.post-cover-placeholder {
  width: 100%;
  height: 12rem;
  background: linear-gradient(
    135deg,
    var(--brand-tint) 0%,
    var(--accent-tint) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--brand);
  opacity: 0.5;
}

/* ── Topic / step items ── */
.topic {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.topic:last-child {
  border-bottom: none;
}
.topic__icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 1.15rem;
}
.topic h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.topic p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ── Chapter (workshop) ── */
.chapter {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.chapter__header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chapter__num {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-head);
}
.chapter__header h3 {
  margin: 0;
  font-size: 1.05rem;
}
.chapter__body {
  padding: 1.5rem 1.75rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.chapter__body p {
  margin-bottom: 0.75rem;
}
.chapter__body ul {
  list-style: disc;
  padding-left: 1.4rem;
}
.chapter__body li {
  margin-bottom: 0.4rem;
}

/* ── Glossary ── */
.glossary-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.glossary-entry {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.glossary-entry dt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.glossary-entry dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.glossary-letter {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--brand);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* ── CTA band ── */
.cta-band {
  background: var(--night);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}
.cta-band .btn--primary {
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.35);
}
.cta-band .btn--primary:hover {
  color: #fff;
}

/* ── About / contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item i {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-item p {
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: border-color 0.18s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
}
.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}
.form-captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.form-captcha label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.form-captcha input {
  width: 6rem;
}
.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.form-consent input {
  margin-top: 0.18rem;
  flex-shrink: 0;
  accent-color: var(--brand);
}
.form-consent a {
  color: var(--brand);
}

/* ── Footer — editorial centred style ── */
.footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-top: 4px solid var(--brand);
}
.footer__brand-block {
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand-block .brand {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
}
.footer__brand-block .brand__name {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #fff;
}
.footer__brand-block .brand__name b {
  color: var(--accent);
}
.footer__brand-block .brand__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.3rem;
  display: block;
}
.footer__ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.15);
}
.footer__ornament::before,
.footer__ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.footer__ornament span {
  color: var(--accent);
  font-size: 1rem;
}
.footer__tagline-text {
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.footer__links-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
}
.footer__links-band a {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.18s;
}
.footer__links-band a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__links-band a:hover {
  color: #fff;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all 0.18s;
}
.footer__socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}
.footer__contact-strip li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__contact-strip li i {
  color: var(--accent);
}
.footer__contact-strip a {
  color: rgba(255, 255, 255, 0.5);
}
.footer__contact-strip a:hover {
  color: #fff;
}

.footer__bottom {
  text-align: center;
  padding: 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.18s;
}
.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 560px) {
  .footer__bottom {
    justify-content: center;
  }
  .footer__links-band a {
    font-size: 0.76rem;
    padding: 0.8rem 0.85rem;
  }
}

/* ── FAQ ── */
.faq__item {
  border-bottom: 1px solid var(--line-soft);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq__q i {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--brand);
  transition: transform 0.22s;
}
.faq__item.is-open .faq__q i {
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a p {
  padding-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ── Cookie ── */
.cookie {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 9000;
  background: var(--night-2);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}
.cookie[hidden] {
  display: none;
}
.cookie__text strong {
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}
.cookie__text p {
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.cookie__text a {
  color: var(--accent);
}
.cookie__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-left: auto;
}
.cookie__btn {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.cookie__btn--accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cookie__btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(28, 18, 8, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  place-items: center;
  padding: 1rem;
}
.modal.is-open {
  display: grid;
}
.modal__dialog {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal__dialog h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.modal__opt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.modal__opt:last-of-type {
  border-bottom: none;
}
.modal__opt input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--brand);
  flex-shrink: 0;
}
.modal__footer {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.thanks-modal {
  display: none;
}
.thanks-modal.is-open {
  display: grid;
}

/* ── Legal ── */
.prose h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.prose h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.prose p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--ink-soft);
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose a {
  color: var(--brand);
}

/* ── About team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  text-align: center;
}
.team-card__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-tint), var(--accent-tint));
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--brand);
  font-size: 2rem;
}
.team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--muted);
}
@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Blog post single ── */
.article-header {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 40rem;
}
.article-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.article-meta i {
  color: var(--accent);
}
.article-body {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 0;
}
.article-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}
.article-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.article-body blockquote p {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--ink);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  border-left: 3px solid var(--accent);
  padding-left: 0.65rem;
  display: block;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
}

/* ── Utilities ── */
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 2rem !important;
}
