/* ==========================================================================
   shiokuri 本番サイト 追加スタイル（base.css = ティザーCSS の上に読み込む）
   ========================================================================== */

/* --------------------------------- tokens --------------------------------- */

/* CTAのキーカラー：送る＝青（海へ送り出す）／受け取る＝封蝋の赤（届いた手紙の封を切る） */
:root {
  --color-send: #102a5e;
  --color-send-deep: #1b3d78;
  --color-receive: #b02f27;
  --color-receive-deep: #96261f;
}

/* ベージュ（ティザー由来の --color-bg）はやめ、白と海の青系に統一する */
html,
body {
  background: #ffffff;
}

/* テーマ〜フォームはひと続きの青の帯として見せる */
.theme-section {
  background: #e8f0fa;
}

.form-section {
  background: #e8f0fa;
}

/* ------------------------------- utilities ------------------------------- */

.sp-only {
  display: none;
}

@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

.section-title.centered {
  text-align: center;
}

/* --------------------------- section head / kicker --------------------------- */

.section-head {
  display: grid;
  gap: 14px;
}

.section-head.centered {
  justify-items: center;
  text-align: center;
}

.section-kicker {
  color: var(--color-sea-green);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  line-height: 1;
}

/* ------------------------------ key sentence ------------------------------ */

.em-line {
  font-style: normal;
  font-weight: 600;
  color: var(--color-ink);
  /* 鮮やかな海の青のまま、透明度で強さを抑える */
  background: linear-gradient(transparent 82%, rgba(63, 127, 219, 0.55) 82%);
  padding-bottom: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* -------------------------------- hero -------------------------------- */

/* リードコピーをKV上に重ねない構成のため、KVは通常フローでスクロールさせる */
.teaser-hero {
  position: relative;
}

/* タイプライターのカーソル：
   次の1文字分のセル（1em角）を確保し、その中央に文字幅ピッタリの線を描く */
.typewriter-line.is-active::after {
  display: inline-block;
  width: 1em;   /* fallback（lh非対応ブラウザ用） */
  height: 1em;  /* 次の文字セル分の高さを確保 */
  margin-inline-start: 0;
  content: "";
  /* 線の長さ＝全角1文字の幅（1em）。箱の中央に描く */
  background: linear-gradient(rgba(253, 251, 245, 0.78), rgba(253, 251, 245, 0.78))
    center / 1em 1px no-repeat;
  vertical-align: text-bottom;
  /* タイピング中に消えないよう、点滅はさせない */
  animation: none;
}

/* ベースライン計算（フォント依存でずれる）を使わず、
   箱を行ボックスと同じ幅にして端揃え＝線が常に行の真ん中に来る */
@supports (width: 1lh) {
  .typewriter-line.is-active::after {
    width: 1lh;
    vertical-align: top;
  }
}

/* ------------------------------- hero brand ------------------------------- */

.hero-brand {
  position: absolute;
  top: clamp(20px, 4vw, 34px);
  left: clamp(20px, 4vw, 38px);
  z-index: 2;
  width: clamp(128px, 15vw, 172px);
}

.hero-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(16, 42, 94, 0.5));
}

.footer-brand img {
  width: 220px;
  height: auto;
  opacity: 0.95;
}

/* ------------------------------- hero CTA ------------------------------- */

.hero-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(74px, 14svh, 118px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(calc(100% - 40px), 560px);
  margin-inline: auto;
}

.hero-cta .button {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 260px;
}

/* hero-sequence は初期状態で pointer-events:none のため、
   出現後に必ずクリック可能へ戻す（ティザーではスクロールキューのみ戻していた） */
.teaser-hero.is-typewriter-complete .hero-cta {
  pointer-events: auto;
}

@media (max-width: 640px) {
  .hero-cta {
    bottom: clamp(64px, 12svh, 96px);
    gap: 10px;
  }

  .hero-cta .button {
    flex-basis: 100%;
    max-width: 320px;
    min-height: 48px;
  }
}

/* ------------------------ lead（セクション②） ------------------------ */

/* KV直後は白で静かに開ける */
.lead-section {
  background: #ffffff;
}

.lead-illustration {
  width: min(460px, 84%);
  margin: 48px auto 0;
}

.lead-illustration img {
  width: 100%;
  height: auto;
}

.lead-illustration-media {
  position: relative;
}

.lead-illustration-credit {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: var(--color-deep-sea);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.lead-illustration-logo {
  display: block;
  width: 220px !important;
  height: auto !important;
  margin: 24px auto 0;
}

.about-photo {
  width: min(640px, 92%);
  margin: 40px auto 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-copy .inline-link {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.faq-link {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.join-lead .inline-link {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.lead-title {
  color: var(--color-deep-sea);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 5.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
}

.lead-text {
  margin-top: 36px;
  color: var(--color-sub-ink);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-align: center;
}

.lead-text p + p {
  margin-top: 26px;
}

.lead-section .ph-illustration {
  margin-top: 44px;
}

@media (max-width: 640px) {
  .lead-text {
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    line-height: 2.1;
    text-align: left;
  }
}

/* ----------------------------- placeholders ----------------------------- */

/* 「準備中」でも紙の面として意図的に見せる（破線＝ワイヤーフレーム感を避ける） */
.ph-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 150px;
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--color-paper);
  color: var(--color-sub-ink);
}

.ph-media::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(43, 39, 35, 0.08);
  pointer-events: none;
}

.ph-media figcaption {
  display: grid;
  gap: 6px;
  justify-items: center;
  font-family: var(--font-serif);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1.6;
  text-align: center;
}

.ph-media figcaption span {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.ph-illustration {
  min-height: 120px;
  aspect-ratio: 16 / 7;
}

/* ------------------------ about（セクション③） ------------------------ */

/* サービスの核心には、うっすら海の青をひいた紙色 */
.about-section {
  background: #e8f0fa;
}

.about-copy {
  max-width: 39em;
  margin-top: 40px;
  margin-inline: auto;
}

.about-copy p + p {
  margin-top: 22px;
}

/* ------------------------- join（セクション④） ------------------------- */

/* Aboutの青から一段深い同系トーンへ（色相の衝突を避け、章の深まりとして見せる） */
.join-section {
  background: #dbe8f6;
}

.join-lead {
  margin-top: 28px;
  text-align: center;
}

.join-grid {
  display: grid;
  gap: 26px;
  margin-top: 44px;
}

.join-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--color-border);
  background: #ffffff;
  scroll-margin-top: 28px;
}

.join-card > .reveal,
.join-card > div {
  display: grid;
  gap: 18px;
}

.join-kicker {
  justify-self: center;
  padding: 4px 18px;
  border: 1px solid var(--color-deep-sea);
  color: var(--color-deep-sea);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  line-height: 1.7;
}

.join-card-title {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
}

.join-card-copy {
  color: var(--color-sub-ink);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}

.join-card .requirements-list {
  margin-top: 4px;
}

.join-card .button {
  margin-top: 8px;
}

.join-card-note {
  color: var(--color-sub-ink);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-align: center;
  opacity: 0.78;
}

/* 送る側は深海色に反転し、「青＝送る」「白地に赤＝受け取る」の対比をつくる */
.join-card--deep {
  position: relative;
  border-color: var(--color-deep-sea);
  background: var(--color-deep-sea);
}

.join-card--deep::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(253, 251, 245, 0.16);
  pointer-events: none;
}

.join-card--deep .join-kicker {
  border-color: rgba(253, 251, 245, 0.6);
  color: var(--color-paper);
}

.join-card--deep .join-card-title {
  color: var(--color-paper);
}

.join-card--deep .join-card-copy {
  color: rgba(253, 251, 245, 0.8);
}

.join-card--deep .requirements-list {
  border-color: rgba(253, 251, 245, 0.24);
}

.join-card--deep .requirements-list li {
  color: rgba(253, 251, 245, 0.84);
}

.join-card--deep .requirements-list li::before {
  background: rgba(253, 251, 245, 0.7);
}

/* 紺カード内の白ベースボタンは枠線なしで紙面として浮かせる */
.join-card--deep .button-send-outline {
  position: relative;
  z-index: 1;
  border-color: var(--color-paper);
}

/* このボタンは色反転させず、定期便を申し込むボタンと同じ「少し動く」だけの挙動にする */
.join-card--deep .button-send-outline:hover {
  color: var(--color-send);
  background: #ffffff;
  border-color: var(--color-paper);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.join-card--deep .join-card-note {
  color: rgba(253, 251, 245, 0.62);
}

@media (min-width: 900px) {
  .join-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 44px);
  }
}

/* ----------------------- product（セクション⑤） ----------------------- */

.product-section {
  background: #ffffff;
}

.product-layout {
  display: grid;
  gap: 36px;
  margin-top: 40px;
}

.product-copy {
  text-align: center;
}

.product-note {
  font-size: 0.8rem;
  opacity: 0.85;
}

.product-gallery {
  display: grid;
  gap: 22px;
}

.product-item {
  display: grid;
  gap: 12px;
  margin: 0;
}

.product-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(43, 39, 35, 0.1);
}

.product-item-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.product-note {
  margin-top: 18px;
  font-size: 0.74rem;
  color: var(--color-sub-ink);
  opacity: 0.75;
  text-align: center;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 18, 16, 0.9);
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.product-item figcaption {
  color: var(--color-sub-ink);
  font-family: var(--font-serif);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 640px) {
  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ------------------------- FAQ（セクション⑧） ------------------------- */

.faq-section {
  background: #ffffff;
  padding-bottom: 44px;
}

#sns.section {
  padding-top: 44px;
}

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item .accordion-trigger {
  padding: 20px 0;
  font-size: 0.98rem;
  transition: color 180ms ease;
}

.faq-item .accordion-trigger:hover {
  color: var(--color-sea-green);
}

.faq-item .accordion-trigger > span:first-child {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.faq-num {
  flex: 0 0 auto;
  color: var(--color-sea-green);
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.faq-item .accordion-panel {
  padding: 0 0 22px;
}

.faq-item .accordion-panel p {
  padding-left: calc(0.85rem * 1.1 + 16px);
}

@media (max-width: 640px) {
  .faq-item .accordion-panel p {
    padding-left: 0;
  }
}

/* ---------------------- closing CTA（首尾照応の締め） ---------------------- */

.line-callout {
  padding: clamp(28px, 5vw, 44px) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.line-callout .line-lead p {
  color: var(--color-sub-ink);
  font-size: 0.96rem;
  line-height: 1.85;
}

.line-callout .callout-note {
  margin-top: 2px;
  font-size: 0.73rem !important;
  color: var(--color-sub-ink);
  opacity: 0.75;
  line-height: 1.5;
}

.line-callout p {
  color: var(--color-sub-ink);
  font-size: 0.96rem;
  line-height: 1.85;
}

.line-callout .button {
  width: auto;
  min-width: 240px;
}

#sns .line-callout .button-instagram,
#sns .line-callout .button-x,
#sns .line-callout .button-line {
  width: 280px;
}

.closing-section {
  padding: clamp(88px, 12vw, 150px) 0;
  color: var(--color-paper);
  background: var(--color-deep-sea);
}

.closing-inner {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  justify-items: center;
}

.closing-copy {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 2.1;
  text-align: center;
}

.closing-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(100%, 560px);
}

.closing-cta .button {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 260px;
}

@media (max-width: 640px) {
  .closing-cta .button {
    flex-basis: 100%;
    max-width: 320px;
  }
}

/* -------------------- 追従ヘッダー（PC / 769px以上） -------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 320ms ease;
}

.site-header.is-visible {
  transform: none;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 72px), 1080px);
  margin-inline: auto;
  padding: 10px 0;
}

.site-header-brand {
  display: inline-flex;
  align-items: center;
}

.site-header-brand img {
  width: 264px;
  height: auto;
}

.site-header-cta {
  display: flex;
  gap: 10px;
}

.site-header .button {
  width: auto;
  min-width: 0;
  min-height: 40px;
  padding: 8px 22px;
  font-size: 0.8rem;
}

/* ヘッダー内の白ベースボタンは背景に沈まないよう白地を明示 */
.site-header .button-send-outline,
.site-header .button-receive-outline {
  background: #ffffff;
}

/* SPボトムバー内も同様に白地を明示 */
.floating-cta .button-send-outline,
.floating-cta .button-receive-outline {
  background: #ffffff;
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }
}

/* ---------------- 追従CTA（SP / 768px以下のボトムバー） ---------------- */

.floating-cta {
  position: fixed;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* PCではヘッダーに役割を譲る */
@media (min-width: 769px) {
  .floating-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    right: 0;
    left: 0;
    bottom: 0;
    gap: 10px;
    padding: 10px max(12px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
  }

  .floating-cta .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.84rem;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta {
    transition: none;
  }
}

/* ------------------------------- footer ------------------------------- */

.site-footer {
  border-top: 1px solid rgba(253, 251, 245, 0.16);
}

.footer-social a {
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   interaction states（hover / active / focus の状態設計）
   ========================================================================== */

/* ボタン共通：フェードで薄くせず、色・影・わずかな浮きで応答する */
.button {
  cursor: pointer;
  transition: opacity 240ms ease, background-color 240ms ease, border-color 240ms ease,
    color 240ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  opacity: 1;
}

.button:active {
  transform: translateY(1px);
  box-shadow: none;
  transition-duration: 80ms;
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 42, 94, 0.24);
}

.button-primary:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* 紙色→紺への反転で、hoverの変化をはっきり見せる */
.button-hero-primary:hover {
  color: var(--color-paper);
  background: var(--color-receive);
  border-color: rgba(253, 251, 245, 0.76);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(16, 42, 94, 0.35);
}

.button-hero-secondary:hover {
  border-color: rgba(253, 251, 245, 0.9);
  background: rgba(253, 251, 245, 0.14);
}

/* 送る＝青の塗り */
.button-send {
  color: var(--color-paper);
  border: 1px solid var(--color-send);
  background: var(--color-send);
}

.button-send:hover {
  opacity: 1;
  border-color: var(--color-send-deep);
  background: var(--color-send-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 42, 94, 0.24);
}

.button-send:disabled,
.button-send[disabled] {
  opacity: 0.38;
  border-color: var(--color-send);
  background: var(--color-send);
}

.button-send:disabled:hover {
  opacity: 0.38;
  transform: none;
  box-shadow: none;
  border-color: var(--color-send);
  background: var(--color-send);
}

/* 受け取る＝封蝋の赤の塗り */
.button-receive {
  color: var(--color-paper);
  border: 1px solid var(--color-receive);
  background: var(--color-receive);
}

.button-receive:hover {
  opacity: 1;
  border-color: var(--color-receive-deep);
  background: var(--color-receive-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(176, 47, 39, 0.28);
}

/* 白ベース＋色文字。ホバーで色地に反転する（FV・クロージング・カード内で使用） */
.button-send-outline {
  color: var(--color-send);
  border: 1px solid rgba(16, 42, 94, 0.35);
  background: #ffffff;
}

.button-send-outline:hover {
  opacity: 1;
  color: var(--color-paper);
  border-color: var(--color-send);
  background: var(--color-send);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 42, 94, 0.24);
}

.button-receive-outline {
  color: var(--color-receive);
  border: 1px solid rgba(176, 47, 39, 0.45);
  background: #ffffff;
}

.button-receive-outline:hover {
  opacity: 1;
  color: var(--color-paper);
  border-color: var(--color-receive);
  background: var(--color-receive);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(176, 47, 39, 0.28);
}

/* 受け取るカード（白ベース）のチップは赤 */
.join-card--receive .join-kicker {
  border-color: var(--color-receive);
  color: var(--color-receive);
}

/* アウトラインは反転で明確に応答する */
.button-outline:hover {
  color: var(--color-paper);
  border-color: var(--color-deep-sea);
  background: var(--color-deep-sea);
}

.floating-cta .button-outline:hover {
  background: var(--color-deep-sea);
}

.button-line:hover,
.button-instagram:hover {
  transform: translateY(-1px);
}

/* 入力欄：focus前のhoverにも小さく応える */
input:hover:not(:focus),
textarea:hover:not(:focus),
select:hover:not(:focus) {
  border-color: rgba(43, 39, 35, 0.34);
}

.consent-check input {
  cursor: pointer;
}

.preview-toggle:hover {
  background: rgba(43, 80, 129, 0.06);
}

/* アコーディオン：文字色と＋アイコンが同時に応答する */
.accordion-trigger {
  transition: color 180ms ease;
}

.accordion-trigger:hover {
  color: var(--color-sea-green);
}

.accordion-icon::before,
.accordion-icon::after {
  transition: transform 180ms ease, background-color 180ms ease;
}

.accordion-trigger:hover .accordion-icon::before,
.accordion-trigger:hover .accordion-icon::after {
  background: var(--color-sea-green);
}

/* ヒーローのスクロールキュー */
.hero-scroll {
  transition: color 200ms ease;
}

.hero-scroll:hover {
  color: rgba(253, 251, 245, 1);
}

.hero-scroll:hover .hero-scroll-line {
  background: rgba(253, 251, 245, 0.5);
}

.footer-cta {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.footer-cta a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(253, 251, 245, 0.32);
  color: var(--color-paper);
  transition: border-color 180ms ease;
}

.footer-cta a:hover {
  border-color: rgba(253, 251, 245, 0.8);
}
