/* =====================================================
   Palatium Angelium — style.css
   Black × Royal Blue Theme
   ===================================================== */

@font-face {
  font-family: 'Titulata';
  src: url('../font/Titulata-Fat.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --c-bg:          #07090F;
  --c-surface:     #0C0F1E;
  --c-surface-2:   #111428;
  --c-border:      rgba(75, 123, 255, 0.14);
  --c-border-hi:   rgba(75, 123, 255, 0.28);

  --c-teal:        #6B97FF;
  --c-teal-mid:    #4B7BFF;
  --c-teal-dark:   #3A63E8;
  --c-teal-pale:   rgba(75, 123, 255, 0.08);
  --c-teal-glow:   rgba(75, 123, 255, 0.18);
  --c-teal-shadow: rgba(58, 99, 232, 0.4);

  --c-text:        #E0E6F5;
  --c-text-muted:  #7A8BB0;
  --c-text-dim:    #3A4568;

  --f-logo:      'Rakkas', serif;
  --f-twinange:  'Titulata', sans-serif;
  --f-display:   'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --f-script:    'Great Vibes', cursive;
  --f-body:      'Noto Serif JP', 'Hiragino Mincho ProN', Georgia, serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
  --sp-2xl: 9rem;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  24px;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-mid:  400ms;
  --dur-slow: 700ms;

  --max-width: 1100px;
  --header-h:  72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* --- Utility --- */
.container {
  width: min(var(--max-width), 100% - 3rem);
  margin-inline: auto;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.section__label {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-teal-mid);
  margin-bottom: var(--sp-sm);
}
.section__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 2em;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal-mid));
  color: #fff;
}
.btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--c-teal-shadow);
}
.btn--outline {
  border: 1px solid var(--c-teal);
  color: var(--c-teal);
}
.btn--outline:hover {
  background: var(--c-teal);
  color: #fff;
}
.btn--full { width: 100%; justify-content: center; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}
.header.scrolled {
  box-shadow: 0 1px 0 var(--c-border);
}
.header.scrolled::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7, 9, 15, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}
.header:not(.scrolled)::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7, 9, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* Logo */
.header-logo {
  font-family: var(--f-logo);
  font-size: 1.45rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(75, 123, 255, 0.4);
  transition: color var(--dur-fast) var(--ease);
}
.header.scrolled .header-logo {
  color: var(--c-teal);
  text-shadow: none;
}

/* Nav */
.nav ul {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
}
.nav__link {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__link.active { color: #fff; }

.header.scrolled .nav__link {
  color: var(--c-text-muted);
  text-shadow: none;
}
.header.scrolled .nav__link::after { background: var(--c-teal); }
.header.scrolled .nav__link:hover  { color: var(--c-teal); }
.header.scrolled .nav__link.active { color: var(--c-teal); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 110;
}
.nav-toggle span {
  display: block; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all var(--dur-fast) var(--ease);
}
.header.scrolled .nav-toggle span { background: var(--c-text); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header:not(.scrolled) .nav-toggle.active span { background: var(--c-text); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slideshow { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  background-size: cover;
  background-position: center;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(4, 6, 20, 0.6) 0%,
      rgba(4, 6, 20, 0.25) 40%,
      rgba(4, 6, 20, 0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero__eyebrow {
  font-family: var(--f-display);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--f-logo);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 40px rgba(75, 123, 255, 0.5);
}
.hero__brand {
  font-family: var(--f-twinange);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.08em;
  color: var(--c-teal);
  margin-bottom: 0.6rem;
}
.hero__brand a {
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.hero__brand a:hover { opacity: 0.75; }
.hero__subtitle {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.hero__catch {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
  margin-bottom: 2.5rem;
}
.hero__tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__tag {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.4em 1.2em;
  border: 1px solid rgba(75, 123, 255, 0.35);
  border-radius: 2px;
  color: var(--c-teal);
  background: rgba(75, 123, 255, 0.06);
}

/* Starfield */
.starfield { position: absolute; inset: 0; pointer-events: none; }
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out infinite var(--delay);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.7; }
}

/* Divine Particles (floating angel dust) */
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 170, 255, 0.85) 0%, transparent 70%);
  animation: particle-rise var(--pdur) ease-in var(--pdelay) infinite;
  opacity: 0;
}
@keyframes particle-rise {
  0%   { transform: translateY(0)      translateX(0)      scale(1);   opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-75vh)  translateX(var(--px))  scale(0.2); opacity: 0; }
}

/* Aurora glow behind title */
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 35% at 50% 55%,
    rgba(50, 90, 220, 0.18) 0%,
    transparent 70%);
  animation: aurora-pulse 6s ease-in-out infinite;
}
@keyframes aurora-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-teal), transparent);
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =====================================================
   MAIN SECTION
   ===================================================== */
.srv { padding: 5rem 0; }
.srv--alt { background: var(--c-surface); }
.srv__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.srv__label {
  font-family: var(--f-display); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-teal-mid); margin-bottom: 0.75rem;
}
.srv__title {
  font-family: var(--f-logo);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; color: var(--c-teal);
  line-height: 1.1; margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.srv__title-ja {
  font-family: var(--f-display); font-size: 0.78rem;
  letter-spacing: 0.12em; color: var(--c-text-dim);
  margin-bottom: 1.5rem; display: block;
}
.srv__catch {
  font-family: var(--f-body); font-size: 1.05rem;
  color: var(--c-text); line-height: 1.8;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--c-teal-mid);
  padding-left: 1rem;
}
.srv__body {
  font-family: var(--f-body); font-size: 0.92rem;
  color: var(--c-text-muted); line-height: 1.9;
  margin-bottom: 1.5rem;
}
.info-box {
  background: var(--c-surface-2); border: 1px solid var(--c-border-hi);
  border-radius: var(--r-md); padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.info-row {
  display: flex; gap: 1rem; font-family: var(--f-display);
  font-size: 0.85rem; align-items: baseline;
}
.info-row__label {
  letter-spacing: 0.1em; color: var(--c-teal);
  min-width: 5.5em; white-space: nowrap;
}
.info-row__val { color: var(--c-text-muted); }

/* Visual card */
.srv-visual {
  background: linear-gradient(135deg, rgba(30, 20, 60, 0.8), rgba(10, 20, 60, 0.8));
  border: 1px solid var(--c-border-hi);
  border-radius: var(--r-lg);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.srv-visual__inner { text-align: center; padding: 2.5rem; }
.srv-visual__name {
  font-family: var(--f-logo);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--c-teal); margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.srv-visual__icons {
  display: flex; justify-content: center; gap: 1rem;
  font-size: 2rem; margin-bottom: 1.25rem;
}
.srv-visual__quote {
  font-family: var(--f-display); font-size: 0.78rem;
  letter-spacing: 0.08em; color: var(--c-text-dim);
  line-height: 1.8; font-style: italic;
}

/* Feature list */
.feature-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.feature-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature-list__icon {
  color: var(--c-teal-mid); font-size: 0.9rem; margin-top: 0.2rem;
  flex-shrink: 0;
}
.feature-list__text strong {
  display: block; font-family: var(--f-display);
  font-size: 0.88rem; letter-spacing: 0.05em;
  color: var(--c-text); margin-bottom: 0.2rem;
}
.feature-list__text p {
  font-size: 0.85rem; color: var(--c-text-muted);
  line-height: 1.6; margin: 0;
}

/* =====================================================
   ACCESS
   ===================================================== */
.access-box {
  background: var(--c-surface-2); border: 1px solid var(--c-border-hi);
  border-radius: var(--r-lg); padding: 2rem;
  max-width: 680px; margin-inline: auto;
}
.access-box__title {
  font-family: var(--f-display); font-size: 0.78rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--c-teal); margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--c-border);
}
.access-dl { display: flex; flex-direction: column; gap: 0.6rem; }
.access-dl dt {
  font-family: var(--f-display); font-size: 0.72rem;
  letter-spacing: 0.15em; color: var(--c-teal-mid);
  text-transform: uppercase; margin-top: 0.25rem;
}
.access-dl dd {
  font-family: var(--f-body); font-size: 0.9rem;
  color: var(--c-text-muted); margin: 0; line-height: 1.6;
}
.access-dl dd a { color: var(--c-teal); }

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-section { padding: 5rem 0; background: var(--c-surface); }
.contact-wrap { max-width: 680px; margin-inline: auto; }

.contact-form { display: flex; flex-direction: column; gap: var(--sp-md); }
.form-field { display: flex; flex-direction: column; gap: 0.4em; }
.form-field label {
  font-family: var(--f-display);
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--c-text-muted);
}
.required { color: var(--c-teal-mid); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-family: var(--f-body); font-size: 0.9rem;
  padding: 0.75em 1em; width: 100%;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A8BB0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 16px; background-color: var(--c-surface-2);
  padding-right: 3em; cursor: pointer;
}
.form-field select option { background: var(--c-surface-2); color: var(--c-text); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-teal-mid);
  box-shadow: 0 0 0 3px var(--c-teal-glow);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--c-text-dim); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.75rem; color: var(--c-text-dim);
  text-align: center; margin-top: -0.5rem;
}
.grecaptcha-badge { visibility: hidden !important; }
.form-success {
  padding: var(--sp-lg);
  border: 1px solid var(--c-teal-mid);
  border-radius: var(--r-md);
  background: var(--c-teal-pale);
  text-align: center;
  font-family: var(--f-display);
  font-size: 1rem; color: var(--c-teal); line-height: 1.8;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-xl);
}
.footer__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-md); text-align: center;
}
.footer__logo {
  font-family: var(--f-logo);
  font-size: 1.6rem; font-weight: 400;
  color: var(--c-teal); letter-spacing: 0.02em;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__brand a:hover { opacity: 0.7; }
.footer__copy a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__copy a:hover { color: var(--c-teal); }
.footer__nav {
  display: flex; gap: var(--sp-md);
  flex-wrap: wrap; justify-content: center;
}
.footer__nav a {
  font-family: var(--f-display);
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--c-text-dim);
  transition: color var(--dur-fast) var(--ease);
}
.footer__nav a:hover { color: var(--c-teal); }
.footer__copy {
  font-size: 0.75rem; color: var(--c-text-dim);
  letter-spacing: 0.05em;
}

/* =====================================================
   MODAL (Confirmation)
   ===================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 20, 0.88);
  backdrop-filter: blur(8px);
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal.active .modal__content {
  transform: translateY(0);
}
.modal__title {
  text-align: center;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-teal);
  margin-bottom: 2rem;
}
.modal__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.modal__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modal__label {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--f-display);
}
.modal__value {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.6;
  word-break: break-all;
}
.modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--c-text-dim);
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2em;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  transition: all var(--dur-fast) var(--ease);
}
.btn--ghost:hover {
  border-color: var(--c-text);
  color: var(--c-text);
}

@media (max-width: 480px) {
  .modal__content { padding: 2rem 1.25rem; }
  .modal__actions { grid-template-columns: 1fr; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .srv__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity var(--dur-mid) var(--ease);
    z-index: 105;
  }
  .nav.open { opacity: 1; pointer-events: all; }
  .nav ul { flex-direction: column; align-items: center; gap: var(--sp-lg); }
  .nav__link {
    font-size: 1.4rem; letter-spacing: 0.15em;
    color: var(--c-text) !important;
    text-shadow: none !important;
  }
  .nav__link.active { color: var(--c-teal) !important; }
  .nav__link::after { background: var(--c-teal) !important; }
}
