/* =========================
  NO-X Header (Initial Build / LOCK)
 思想：派手にしない / 売らない / 静かに統制 / BtoB / 情報最小
 仕様：透過黒 + blur / #000は使わない / 下線のみ acc #458A65
 760px以下：ハンバーガー + ドロワー
========================= */

/* --- Minimal base (header stability only) --- */
:root{
  --acc: #458A65;                 /* FIX */
  --hdr-bg: rgba(0,0,0,.42);      /* 透過黒（#000禁止） */
  --hdr-line: rgba(255,255,255,.08);
  --txt: rgba(255,255,255,.92);
}

*{ box-sizing:border-box; }

body{
  margin: 0;
  color: var(--txt);
  background: #0b0d0c;            /* ヘッダー検証用の最低限。世界観を盛らない */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

/* --- Header container --- */
#site-header.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--hdr-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hdr-line);
}

#site-header .header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  transition: padding .18s ease;
}

#site-header.is-compact .header-inner{
  padding: 10px 18px;             /* スクロール時縮小：軽く */
}

/* --- Logo --- */
#site-header .header-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

#site-header .header-logo img{
  display: block;
  height: 28px;                   /* 過大にしない（統制優先） */
  width: auto;
}

/* --- PC Nav --- */
#site-header .header-nav{
  display: flex;
  align-items: center;
  gap: 22px;
}

#site-header .nav-link{
  position: relative;
  display: inline-block;
  padding: 6px 2px;
  text-decoration: none;
  color: inherit;                 /* 色変更しない */
  letter-spacing: .04em;
  font-size: 14px;
}

#site-header .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease;
}

#site-header .nav-link:hover::after{
  transform: scaleX(1);
}

#site-header .nav-link.is-active::after{
  transform: scaleX(1);           /* active：下線ONのみ */
}

/* --- SP Toggle --- */
#site-header .nav-toggle{
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

#site-header .nav-toggle-lines{
  display: inline-block;
  width: 22px;
  height: 14px;
  position: relative;
}

#site-header .nav-toggle-lines::before,
#site-header .nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.85);
}

#site-header .nav-toggle-lines::before{ top: 0; }
#site-header .nav-toggle-lines::after{ bottom: 0; }

/* --- Overlay / Drawer --- */
/* --- Overlay / Drawer (STATE = display, no transform) --- */
#site-header .sp-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;                 /* 初期は必ず非表示 */
}

#site-header .sp-overlay:not([hidden]){
  display: block;                /* hiddenが外れたら表示 */
}

#site-header .sp-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255,255,255,.10);
  display: none;                 /* 初期は必ず非表示 */
}

#site-header .sp-drawer[aria-hidden="false"]{
  display: block;                /* 開いている時だけ表示 */
}


#site-header .sp-close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-size: 26px;
  line-height: 1;
  padding: 8px 10px;
  cursor: pointer;
}

#site-header .sp-nav{
  display: grid;
  gap: 10px;
  padding: 64px 18px 18px;
}

#site-header .sp-link{
  display: block;
  padding: 12px 10px;
  text-decoration: none;
  color: inherit;                 /* 色変更しない */
  border-bottom: 1px solid rgba(255,255,255,.10);
  letter-spacing: .04em;
}

#site-header .sp-link.is-active{
  border-bottom-color: var(--acc); /* SPは下線思想の代替としてボーダー色 */
}

/* --- Responsive --- */
@media (max-width: 760px){
  #site-header .header-nav{ display: none; }
  #site-header .nav-toggle{ display: inline-flex; align-items: center; }
  #site-header .header-logo img{ height: 26px; }
}
/* =========================
  INDEX HERO (PC LOCK Ver.1.1)
  - Center axis only
  - No decoration / no animation
========================= */

.hero{
  min-height: 63vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 100px 20px 24px;

  text-align: center;

  /* ▼ ここを追加（上品な艶グリーン） */
  background:
    radial-gradient(
      900px 420px at 50% -8%,
      rgba(69,138,101,0.16) 0%,
      rgba(69,138,101,0.07) 45%,
      rgba(69,138,101,0.02) 65%,
      rgba(0,0,0,0) 80%
    );
}

.hero-inner{
  width: min(920px, 100%);
  margin: 0 auto;
}

.hero-en{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .08em;
  opacity: .78;
}

.hero-logo{
  margin: 0 auto 18px;
}

.hero-logo img{
  width: 100%;
  max-width: 520px;  /* ★LOCK */
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-jp{
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: .02em;
}

.hero-sub{
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  opacity: .82;
}

.hero-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap; /* PC基準：横並び固定 */
}

/* =========================
  BUTTONS (Index minimal)
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  background: transparent;
}

.btn-primary{
  border-color: var(--acc);
  color: var(--acc);
}

.btn-ghost{
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

/* hover時だけアクセント色 */
.btn:hover{
  border-color: var(--acc);
  color: var(--acc);
}

/* =========================
  ABOUT (NO-X) | LOCK Ver.1.0
  - Center axis
  - Section background: thin NO-X green
  - Text: black
  - No decoration
========================= */
.about-section{
  padding: 84px 20px 64px;
  text-align: center;

  /* ▼ 明るさ調整 */
  background: rgba(69,138,101,0.99);
  color: rgba(0,0,0,.92);
}

.about-inner{
  width: min(920px, 100%);
  margin: 0 auto;
}

.about-headline{
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: .02em;
  color: inherit;
}

.about-copy{
  margin: 0 auto 34px;
}

.about-copy p{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  color: inherit;
}

.about-company{
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.12);
}

.about-company-title{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .10em;
  color: rgba(0,0,0,.80);
}

.about-company-lines p{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: inherit;
}

.about-label{
  font-weight: 700;
}

.about-subhead{
  margin-top: 8px;
  font-weight: 700;
}

.about-spacer{
  margin: 10px 0;
  height: 6px;
}

/* Responsive */
@media (max-width: 760px){
  .about-section{
    padding: 76px 18px 56px;
  }

  .about-headline{
    font-size: 26px;
  }
}

/* =========================
  SERVICE (NO-X) | LOCK Ver.1.2
  - Center axis only
  - 2-level accordion + Q&A accordion
  - Watermark logo behind
  - No over-decoration
========================= */
.service-section{
  position: relative;
  padding: 86px 20px 76px;
  text-align: center;
}

.service-inner{
  width: min(920px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1; /* watermarkより上 */
}

/* Watermark */
.service-watermark{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
}

.service-watermark img{
  width: min(60vw, 680px); /* 画角の約60%目安 */
  height: auto;
  opacity: .05;           /* 0.04〜0.06 */
  filter: none;
}

/* Hero copy */
.service-hero{
  margin: 0 auto 34px;
}

.service-hero-title{
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: .02em;
}

/* ===== SERVICE HERO with mark (Fix ①) ===== */
.service-hero-row{
  display: inline-flex;          /* 中央軸を崩さず横並び */
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;              /* ロゴ横に並ぶので行揃え優先 */
}

/* ロゴマーク：コピー2行と同程度の高さ */
.service-hero-mark{
  height: 90px;                  /* 2行コピー相当（目安） */
  width: auto;
  display: block;
  opacity: .92;                  /* 文字の主役を邪魔しない */
}

/* 既存titleのセンター指定がある場合に備え、row側で整列 */
.service-hero-title{
  text-align: left;
}

/* SP */
@media (max-width: 760px){
  .service-hero-row{
    gap: 12px;
  }
  .service-hero-mark{
    height: 90px;
  }
}

/* ========== Accordion (Level 1) ========== */
.svc-acc{
  margin: 0 auto 44px;
  display: grid;
  gap: 14px;
}

.svc-acc-l1{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.svc-acc-l1-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.svc-acc-l1-title{
  flex: 1;
  font-size: 16px;
  letter-spacing: .04em;
}

.svc-acc-sign{
  width: 22px;
  flex: 0 0 22px;
  text-align: center;
  opacity: .9;
}

.svc-acc-l1-panel{
  padding: 0 16px 16px;
}

/* ========== Accordion (Level 2) ========== */
.svc-acc-l2{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.svc-acc-item{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.14);
}

.svc-acc-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.svc-acc-title{
  flex: 1;
  font-size: 14px;
  letter-spacing: .04em;
}

.svc-acc-panel{
  padding: 0 14px 14px;
}

/* 本文はセンター基準（段落は読みやすく行間だけ確保） */
.svc-acc-body{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: .90;
}

/* ========== Q&A ========== */
.qa-section{
  width: min(860px, 100%);
  margin: 0 auto 38px;
}

.qa-title{
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: .08em;
}

.qa-list{
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* ★1カラムを確定 */
  justify-items: center;                /* ★各行をセンター配置 */
  gap: 12px;
}

.qa-item{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.02);

  width: 100%;          
  max-width: 760px;     
}

.qa-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center; /* Q：センター */
}

.qa-q-text{
  flex: 1;
  font-size: 14px;
  letter-spacing: .02em;
}

.qa-sign{
  width: 22px;
  flex: 0 0 22px;
  text-align: center;
  opacity: .9;
}

/* A：中央ボックス内・左寄せ可 */
.qa-a-wrap{
  padding: 0 16px 16px;
}

.qa-a-box{
  width: min(720px, 100%);   /* 固定幅を持たせる */
  margin: 0 auto;            /* ← 枠を中央配置 */
  padding: 16px 18px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(0,0,0,.18);

  text-align: center;  /* ★中身ブロックを中央に置く基準 */
}

.qa-a{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: .92;
display: inline-block; /* ★この塊自体を中央に置ける */
  text-align: left;      /* ★文字は左頭揃え */
  max-width: 560px;      /* ★“枠内の中央”感を作る（必要なら調整） */
}

/* 最終行 */
.service-final-line{
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.8;
  opacity: .90;
}

/* CTA */
.service-cta{
  display: flex;
  justify-content: center;
}

.svc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--acc); /* #458A65 */
  color: inherit;
  text-decoration: none;
  letter-spacing: .04em;
  background: transparent;
}

.svc-btn:hover{
  background: var(--acc); /* hover時のみ塗り */
  color: rgba(0,0,0,.92);
}

/* Motion minimal */
.svc-acc-l1-panel,
.svc-acc-panel,
.qa-a-wrap{
  transition: opacity .22s ease;
}

/* Responsive */
@media (max-width: 760px){
  .service-section{
    padding: 78px 18px 66px;
  }

  .service-hero-title{
    font-size: 24px;
  }

  .service-watermark img{
    width: min(78vw, 520px);
    opacity: .04; /* SPはさらに薄く */
  }
}

/* =========================
  SERVICE | Visual adjust (B)
  - Bars brighter (no background change)
========================= */

/* L1 bars */
.svc-acc-l1{
  background: rgba(69,138,101,.10);   /* NO-X green thin */
  border-color: rgba(69,138,101,.25);
}

/* L2 bars */
.svc-acc-item{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
}

/* Q&A bars */
.qa-item{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
}

/* hover: only a little lift */
.svc-acc-l1-btn:hover,
.svc-acc-btn:hover,
.qa-q:hover{
  background: rgba(255,255,255,.06);
}

/* =========================
   PRIVACY PAGE
========================= */

.privacy-page {
  background: #ffffff;
  padding: 40px 20px 30px;  /* ← 100 → 40 に */
}

.privacy-section .container {
  max-width: 860px; /* ABOUTと統一 */
  margin: 0 auto;
}

.privacy-page h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.privacy-sub {
  margin-bottom: 6px;
}

.privacy-date {
  margin-bottom: 40px;
  font-size: 14px;
  opacity: 0.7;
}

.privacy-block {
  margin-bottom: 40px;
}

.privacy-block h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.privacy-block h3 {
  font-size: 15px;
  margin: 20px 0 8px;
}

.privacy-block ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-block li {
  margin-bottom: 6px;
}

/* === FIX: PRIVACY text color (white on white prevention) === */
.privacy-page{
  color: rgba(0,0,0,.92);
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3,
.privacy-page p,
.privacy-page li{
  color: inherit;
}

/* =========================
  ACCESS (NO-X) | LOCK Ver.1.0
  - C4構造踏襲
  - 左寄せタイトル
  - 中央カラム固定
  - 装飾最小
========================= */

.access-page{
  padding: 80px 20px 70px;
}

.access-inner{
  width: min(920px, 100%);
  margin: 0 auto;
}

/* --- タイトル --- */
.access-head{
  margin-bottom: 32px;
}

.access-title{
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: .02em;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* --- Map --- */
.access-map{
  margin-bottom: 18px;
}

.access-iframe{
  width: 100%;
  height: 420px;
  border-radius: 14px;
}

/* --- Mapリンク --- */
.access-openlink{
  margin: 0 0 26px;
}

.access-maplink{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding-bottom: 2px;
}

.access-maplink:hover{
  border-bottom-color: var(--acc);
  color: var(--acc);
}

/* --- 会社情報 --- */
.access-company{
  margin-bottom: 36px;
}

.access-company-name{
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.6;
}

.access-company-note{
  font-weight: 400;
  opacity: .8;
}

.access-company-addr{
  margin: 0;
  line-height: 1.8;
  opacity: .9;
}

/* --- 区切り線 --- */
.access-divider{
  border: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 40px 0 34px;
}

/* --- 下段再掲 --- */
.access-recap-title{
  margin: 0 0 14px;
  font-size: 18px;
}

.access-recap-label{
  margin: 0 0 6px;
  font-size: 13px;
  opacity: .8;
}

.access-recap-lines{
  margin: 0;
  line-height: 1.8;
  opacity: .9;
}

/* --- Responsive --- */
@media (max-width: 760px){
  .access-page{
    padding: 70px 18px 60px;
  }

  .access-title{
    font-size: 26px;
  }

  .access-iframe{
    height: 360px;
  }
}

/* =========================
  Footer (NO-X) | LOCK Ver.1.0
========================= */
.site-footer{
  padding: 26px 0 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer .footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer .footer-top{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.site-footer .footer-col{ min-width: 0; }

/* A: Company */
.site-footer .footer-company{
  font-size: 150%;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px;
}

.site-footer .footer-label{
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .75;
  margin: 0 0 8px;
}

.site-footer .footer-subhead{
  font-size: 12px;
  opacity: .85;
  margin: 10px 0 4px;
}

.site-footer .footer-subhead--mt{ margin-top: 12px; }

.site-footer .footer-text{
  font-size: 12px;
  line-height: 1.6;
  opacity: .80;
}

/* B: Access (center) */
.site-footer .footer-col--access{
  text-align: center;
}

.site-footer .footer-title{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 10px;
}

.site-footer .footer-btn{
  display: inline-block;
  font-size: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  text-decoration: none;
}

.site-footer .footer-btn:hover{
  border-color: rgba(255,255,255,.34);
}

.site-footer .footer-note{
  font-size: 12px;
  line-height: 1.6;
  opacity: .75;
  margin-top: 10px;
}

/* C: Group (right) */
.site-footer .footer-col--group{
  text-align: right;
}

.site-footer .footer-group{
  display: grid;
  gap: 6px;
}

.site-footer .footer-group--mt{ margin-top: 14px; }

.site-footer .footer-group-link{
  display: inline-block;
  text-decoration: none;
}

.site-footer .footer-logo{
  height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: .92;
}

.site-footer .footer-group-name{
  font-size: 12px;
  opacity: .88;
}

.site-footer .footer-group-copy{
  font-size: 12px;
  line-height: 1.6;
  opacity: .70;
}

/* Bottom */
.site-footer .footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}

.site-footer .footer-copyright{
  font-size: 11px; /* 最小：微調整はタク判断 */
  opacity: .70;
}

.site-footer .footer-links{
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.site-footer .footer-link{
  font-size: 11px; /* 最小：微調整はタク判断 */
  text-decoration: none;
  opacity: .78;
}

.site-footer .footer-link:hover{
  opacity: .95;
  text-decoration: underline;
}

/* Responsive: SP stacked */
@media (max-width: 760px){
  .site-footer .footer-top{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer .footer-col--access{
    text-align: left;
  }

  .site-footer .footer-col--group{
    text-align: left;
  }

  .site-footer .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer .footer-links{
    justify-content: flex-start;
  }
}

/* =========================
  Page Top Button
========================= */
.page-top{
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.65);
  color: rgba(255,255,255,.85);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;

  transition: opacity .2s ease, transform .2s ease;
  z-index: 999;
}

.page-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover{
  border-color: var(--acc);
  color: var(--acc);
}

/* =========================
  CONTACT (NO-X) | LOCK Ver.1.0
  - Center axis
  - Minimal / no decoration
  - Black base + NO-X green accent
========================= */

.contact-page{
  padding: 0 0 70px;
}

.contact-inner{
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* センター合わせ固定 */
}

/* Hero */
.contact-hero{
  padding: 86px 0 16px;
}

.contact-en{
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .10em;
  opacity: .75;
}

.contact-title{
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: .02em;
}

/* Lead */
.contact-lead{
  padding: 10px 0 26px;
}

.contact-lead-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: .88;
}

/* Form wrapper */
.contact-form-wrap{
  padding: 0;
}

.contact-alert{
  width: min(760px, 100%);
  margin: 0 auto 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
}

.contact-alert--error{
  border-color: rgba(255,255,255,.18);
}

/* Form */
.contact-form{
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  padding: 18px 16px 16px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field{
  text-align: left;
}

.contact-field--full{
  grid-column: 1 / -1;
}

.contact-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .02em;
  opacity: .92;
}

.contact-req,
.contact-opt{
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  opacity: .85;
}

.contact-req{
  border-color: rgba(69,138,101,.55);
  color: rgba(69,138,101,.95);
}

.contact-input,
.contact-select,
.contact-textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.contact-select{
  appearance: none;
}

.contact-textarea{
  resize: vertical;
  min-height: 180px;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus{
  border-color: rgba(69,138,101,.65);
}

.contact-note{
  margin: 8px 0 0;
  font-size: 12px;
  opacity: .75;
}

/* Turnstile */
.contact-turnstile{
  display: flex;
  justify-content: center;
  padding: 8px 0 2px;
}

/* Consent */
.contact-consent{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 2px;
  user-select: none;
  cursor: pointer;
  font-size: 13px;
  opacity: .92;
}

.contact-consent input{
  width: 16px;
  height: 16px;
}

/* Actions */
.contact-actions{
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.contact-submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--acc);
  background: transparent;
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
  cursor: pointer;
}

.contact-submit:hover{
  background: var(--acc);
  color: rgba(0,0,0,.92);
}

/* Complete */
.contact-complete{
  width: min(760px, 100%);
  margin: 18px auto 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  padding: 18px 16px;
}

.contact-complete-title{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: .04em;
}

.contact-complete-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: .88;
}

/* Responsive */
@media (max-width: 760px){
  .contact-inner{
    padding: 0 18px;
  }

  .contact-hero{
    padding: 78px 0 14px;
  }

  .contact-title{
    font-size: 26px;
  }

  .contact-form{
    padding: 16px 14px 14px;
  }

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

