
/* shell */
.c_7d0d7{ padding:var(--section-gap, 40px) 0; }
.c_4369c{ padding:var(--section-gap-dense, 16px) 0; }
.c_47c34{ width:min(var(--container-w, 1100px), calc(100% - var(--space-5))); margin:0 auto; }
.c_7d0d7:not(.c_4369c) > .c_47c34{ background:var(--skin-bg); border-radius:var(--skin-r); box-shadow:var(--skin-shadow); backdrop-filter:blur(var(--skin-blur)); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }

/* header D */
/* Header D — minimal text-only brand, nav+CTA inline right */

.c_d4328 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 52px);
  background: transparent;
  transition: background .3s, height .25s;
}

.c_d4328.hd-scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  height: calc(var(--hd-height, 52px) - 4px);
}

.c_11bdb {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.c_5d4f4 {
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.c_d6e38 { height: 34px; width: auto; display: block; }

.c_9e77f {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.c_6c08c {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.c_6c08c:hover { color: var(--fg); }

.c_bd34a {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.c_bd34a:hover { opacity: .88; }

.c_1553a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  margin-left: auto;
}

.c_71af9 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.c_71af9 span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.c_71af9.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c_71af9.hd-open span:nth-child(2) { opacity: 0; }
.c_71af9.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.c_534d4 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--bg);
  gap: var(--space-2);
}

.c_534d4[hidden] { display: none !important; }
.c_534d4 .c_6c08c { font-size: 15px; padding: 10px 0; color: var(--fg); border-bottom: 1px solid var(--border); }
.c_534d4 .c_bd34a { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .c_9e77f { display: none; }
  .c_71af9 { display: flex; }
}


/* faq A */
.c_72d3f {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.c_72d3f>* {
  position: relative;
}

.c_62c89 {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.c_42ec8 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.c_27f5f {
  border-bottom: 1px solid var(--border);
}

.c_27f5f:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.c_383c5 {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.c_383c5:hover {
  color: var(--brand);
}

.c_383c5::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.c_383c5[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

.c_bb753 {
  padding: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* footer D */
/* Footer D — minimal: nav top row, brand + copyright bottom */

.c_d8020 {
  width: 100%;
  background: var(--bg);
  padding: var(--space-4) 0 var(--space-3);
}

.c_dbfb2 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.c_1d325 {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

.c_1d325:hover { color: var(--fg); }

.c_fedf2 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.c_6e7d4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.c_bc119 {
  height: 28px;
  width: auto;
  display: block;
}

.c_ed92e {
  font-size: 12px;
  color: var(--muted);
}

.c_1eb7b {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

