:root {
  --deep: #174f55;
  --forest: #0b4a3b;
  --mint: #eef5e8;
  --cream: #f7efe3;
  --white: #fffaf2;
  --ink: #2f271f;
  --gold: #c9a35b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: hidden;
  isolation: isolate;
  background: rgba(238,245,232,.58);
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  border-bottom: 1px solid rgba(23,79,85,.20);
  box-shadow: 0 8px 28px rgba(23,79,85,.06);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.82) 0%,
      rgba(220,233,211,.58) 32%,
      rgba(126,161,125,.36) 68%,
      rgba(23,79,85,.52) 100%
    );
  opacity: 0;
  animation: seasonCycle 20s ease-in-out infinite alternate;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.nav {
  max-width: 1180px;
  margin: auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .02em;
}

.brand-sub {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.navlinks {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.navlinks a {
  opacity: .88;
}

.navlinks a:hover {
  opacity: 1;
}

.nav-toggle,
.nav-menu-button {
  display: none;
}

/* ===== hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 56svh;
  height: 56svh;
  display: flex;
  align-items: center;
  padding: 28px 24px 18px;
  color: var(--deep);
}

.hero-bg-breath {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(247,239,227,.66) 0%, rgba(247,239,227,.38) 38%, rgba(247,239,227,.08) 68%, rgba(247,239,227,0) 100%),
    url("../images/hero-awarenest-noto-sunrise.jpg");
  background-size: cover;
  background-position: 74% center;
  background-repeat: no-repeat;
  filter: saturate(1.10) brightness(1.02) contrast(1.00) blur(.8px);
  transform: scale(1.012);
  animation: heroBreathingFocus 8s ease-in-out infinite alternate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.hero::before {
  inset: -18%;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,220,.50) 0 4%, transparent 18%),
    radial-gradient(circle at 42% 28%, rgba(255,255,220,.34) 0 4%, transparent 17%),
    radial-gradient(circle at 72% 20%, rgba(255,255,220,.38) 0 4%, transparent 16%),
    radial-gradient(circle at 30% 76%, rgba(255,255,220,.28) 0 4%, transparent 19%);
  animation: komorebiFloat 9s ease-in-out infinite alternate;
}

.hero::after {
  inset: -26%;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255,255,230,.22) 36%, transparent 52%),
    linear-gradient(68deg, transparent 30%, rgba(255,255,230,.14) 48%, transparent 64%);
  animation: komorebiSweep 12s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  text-align: left;
}

.eyebrow {
  font-family: Georgia, serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .9;
  margin-bottom: 20px;
}

h1 {
  max-width: 620px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: .02em;
  text-shadow: 0 2px 14px rgba(247,239,227,.55);
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 23px);
  margin-bottom: 34px;
  text-shadow: 0 2px 14px rgba(247,239,227,.55);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 10px 26px rgba(23,79,85,.12);
}

.button.secondary {
  background: transparent;
  border-color: rgba(23,79,85,.45);
}

/* ===== shared ===== */
.wrap {
  max-width: 1180px;
  margin: auto;
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.45;
  margin: 0 0 28px;
  color: var(--deep);
}

/* ===== seasonal sections ===== */
.about-triptych,
.services-world {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--deep);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,250,242,.70), transparent 34%),
    linear-gradient(180deg, var(--mint) 0%, var(--cream) 100%);
}

.about-triptych::before,
.services-world::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.82) 0%,
      rgba(220,233,211,.58) 28%,
      rgba(126,161,125,.40) 68%,
      rgba(23,79,85,.58) 100%
    );
  opacity: 0;
  animation: seasonCycle 20s ease-in-out infinite alternate;
}

.about-triptych > *,
.services-world > * {
  position: relative;
  z-index: 1;
}

/* ===== about ===== */
.about-triptych {
  padding: 22px 24px 28px;
  border-top: 1px solid rgba(23,79,85,.16);
  border-bottom: 1px solid rgba(23,79,85,.16);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 34px);
  align-items: center;
}

.about-panel,
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,250,242,.58), transparent 32%),
    linear-gradient(145deg, rgba(255,250,242,.68), rgba(210,226,211,.58));
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    0 12px 30px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.75),
    inset 0 -1px 0 rgba(23,79,85,.12);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
}

.about-panel {
  padding: 24px;
  text-align: center;
}

.about-panel::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.34), transparent 38%),
    radial-gradient(circle at 80% 90%, rgba(23,79,85,.10), transparent 34%);
  mix-blend-mode: screen;
}

.about-panel::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.28) 0%,
      rgba(255,255,255,0) 25%
    );
}

.about-panel .eyebrow {
  color: var(--deep);
}

.about-panel h2 {
  font-size: clamp(22px, 3vw, 42px);
  min-height: 128px;
  text-shadow:
    0 1px 0 rgba(255,255,255,.85),
    0 3px 8px rgba(23,79,85,.12);
}

.about-panel p {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 2.05;
  text-align: left;
  margin: 0 0 16px;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

.about-photo-card {
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: 380px;
  transform: translateY(6px);
}

.about-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.about-ornament {
  display: none;
}

/* ===== services ===== */
.services-world {
  padding: 38px 24px 48px;
}

.services-head {
  text-align: center;
  margin-bottom: 28px;
}

.services-head .eyebrow {
  color: var(--deep);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 420px;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--deep);
  font-size: clamp(24px, 2.2vw, 34px);
  text-align: center;
  line-height: 1.1;
  text-shadow:
    0 1px 0 rgba(255,255,255,.85),
    0 3px 8px rgba(23,79,85,.12);
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 2;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

.service-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

@media (hover:hover) {
  .about-panel,
  .service-card {
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .about-panel:hover,
  .service-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 18px 40px rgba(0,0,0,.16),
      inset 0 1px 0 rgba(255,255,255,.75),
      inset 0 -1px 0 rgba(23,79,85,.12);
  }
}

/* ===== footer ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 42px 24px 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,250,242,.64), transparent 36%),
    linear-gradient(180deg, var(--cream) 0%, #ead8bb 100%);
  color: var(--deep);
  text-align: center;
  border-top: 1px solid rgba(23,79,85,.18);
}

.footer-quote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: .12em;
  line-height: 1.5;
}

.footer-divider {
  position: relative;
  z-index: 2;
  width: min(320px, 70vw);
  height: 1px;
  margin: 20px auto 14px;
  background: rgba(23,79,85,.28);
}

.footer-small {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  opacity: .72;
}

.footer-branches {
  position: absolute;
  top: -34px;
  width: 360px;
  height: 140px;
  opacity: .62;
  background:
    radial-gradient(circle at 18% 36%, #6f8a67 0 8px, transparent 9px),
    radial-gradient(circle at 30% 28%, #6f8a67 0 7px, transparent 8px),
    radial-gradient(circle at 42% 40%, #6f8a67 0 8px, transparent 9px),
    radial-gradient(circle at 54% 30%, #6f8a67 0 7px, transparent 8px),
    linear-gradient(18deg, transparent 0 42%, var(--deep) 43% 47%, transparent 48%),
    linear-gradient(-18deg, transparent 0 45%, var(--deep) 46% 49%, transparent 50%);
}

.footer-branches-left {
  left: -70px;
  transform: rotate(8deg);
}

.footer-branches-right {
  right: -70px;
  transform: scaleX(-1) rotate(8deg);
}

/* ===== back to top ===== */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: rgba(238,245,232,.72);
  border: 1px solid rgba(23,79,85,.22);
  box-shadow: 0 12px 34px rgba(23,79,85,.16);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  font-size: 22px;
  font-weight: 700;
}

/* ===== animations ===== */
@keyframes seasonCycle {
  0%   { opacity: .00; }
  25%  { opacity: .18; }
  50%  { opacity: .36; }
  75%  { opacity: .54; }
  100% { opacity: .72; }
}

@keyframes heroBreathingFocus {
  0% {
    filter: saturate(1.02) brightness(.98) contrast(.96) blur(1.4px);
    transform: scale(1.012);
  }

  50% {
    filter: saturate(1.30) brightness(1.10) contrast(1.10) blur(0);
    transform: scale(1.028);
  }

  100% {
    filter: saturate(1.08) brightness(1.00) contrast(.98) blur(1.8px);
    transform: scale(1.04);
  }
}

@keyframes komorebiFloat {
  0% {
    transform: translate(-4%, -2%) scale(1);
    opacity: .45;
  }
  50% {
    transform: translate(1%, 2%) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate(5%, 1%) scale(1.14);
    opacity: .62;
  }
}

@keyframes komorebiSweep {
  0% {
    transform: translateX(-10%) rotate(1deg);
    opacity: .32;
  }
  100% {
    transform: translateX(10%) rotate(-1deg);
    opacity: .88;
  }
}

/* ===== mobile ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .about-photo-card {
    order: -1;
  }

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

  .about-panel h2 {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .nav {
    position: relative;
    padding: 10px 18px;
  }

  .nav-menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(23,79,85,.24);
    border-radius: 999px;
    background: rgba(255,250,242,.36);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .nav-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--deep);
  }

  .navlinks {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    width: min(260px, calc(100vw - 36px));
    padding: 18px;
    border: 1px solid rgba(23,79,85,.18);
    border-radius: 22px;
    background: rgba(238,245,232,.78);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
    box-shadow: 0 18px 44px rgba(23,79,85,.16);
  }

  .navlinks a {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(23,79,85,.10);
  }

  .navlinks a:last-child {
    border-bottom: 0;
  }

  .nav-toggle:checked ~ .navlinks {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 76svh;
    height: auto;
  }

  .hero-bg-breath {
    background-image:
      linear-gradient(180deg, rgba(247,239,227,.34) 0%, rgba(247,239,227,.58) 52%, rgba(247,239,227,.82) 100%),
      url("../images/hero-awarenest-noto-sunrise.jpg");
    background-position: 82% center;
  }

  .hero-inner {
    max-width: 430px;
    padding: 0;
    text-align: center;
  }

  h1 {
    font-size: clamp(40px, 12vw, 60px);
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 15px;
  }

  .buttons {
    justify-content: center;
  }

  .about-triptych {
    padding: 20px 18px 34px;
  }

  .services-world {
    padding: 32px 18px 48px;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .footer-branches {
    width: 220px;
    opacity: .45;
  }

  .footer-branches-left {
    left: -110px;
  }

  .footer-branches-right {
    right: -110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
  }
}

/* ===== restore visible seasonal header glass ===== */
.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.82) 0%,
      rgba(238,245,232,.56) 48%,
      rgba(23,79,85,.18) 100%
    ) !important;
  backdrop-filter: blur(22px) saturate(1.32);
  -webkit-backdrop-filter: blur(22px) saturate(1.32);
}

.site-header::before {
  z-index: 0 !important;
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.20) 0%,
      rgba(126,161,125,.44) 48%,
      rgba(23,79,85,.78) 100%
    ) !important;
  opacity: 0;
  animation: headerSeasonCycle 10s ease-in-out infinite alternate !important;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

@keyframes headerSeasonCycle {
  0% {
    opacity: 0;
  }

  35% {
    opacity: .28;
  }

  70% {
    opacity: .56;
  }

  100% {
    opacity: .82;
  }
}

/* ===== apply visible seasonal green fade to sections ===== */
.about-triptych,
.services-world,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.82) 0%,
      rgba(238,245,232,.56) 48%,
      rgba(23,79,85,.18) 100%
    ) !important;
}

.about-triptych::before,
.services-world::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0 !important;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.20) 0%,
      rgba(126,161,125,.44) 48%,
      rgba(23,79,85,.78) 100%
    ) !important;
  opacity: 0;
  animation: headerSeasonCycle 10s ease-in-out infinite alternate !important;
}

.about-triptych > *,
.services-world > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

/* ===== fix section green fade, remove gray cast ===== */
.about-triptych,
.services-world {
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.88) 0%,
      rgba(218,235,210,.66) 42%,
      rgba(34,105,82,.32) 100%
    ) !important;
}

.about-triptych::before,
.services-world::before {
  background:
    linear-gradient(
      180deg,
      rgba(238,245,232,.06) 0%,
      rgba(74,128,92,.62) 46%,
      rgba(7,74,58,.90) 100%
    ) !important;
  animation: headerSeasonCycle 10s ease-in-out infinite alternate !important;
}

/* footer should stay poetic, not gray-green */
.site-footer {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,250,242,.64), transparent 36%),
    linear-gradient(180deg, var(--cream) 0%, #ead8bb 100%) !important;
}

.site-footer::before {
  display: none !important;
}

/* ===== mobile menu tap fix ===== */
.nav-toggle {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  display: block !important;
}

@media (max-width: 860px) {
  .nav-menu-button {
    position: relative;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
  }

  .navlinks {
    z-index: 4;
  }

  .nav-toggle:checked ~ .navlinks {
    display: block !important;
  }
}

/* ===== mobile menu overflow fix ===== */
.site-header {
  overflow: visible !important;
}

.nav {
  position: relative;
}

@media (max-width: 860px) {
  .navlinks {
    top: calc(100% + 10px) !important;
    display: none !important;
    z-index: 100 !important;
  }

  .nav-toggle:checked ~ .navlinks {
    display: block !important;
  }

  .nav-menu-button {
    z-index: 101 !important;
  }
}

/* ===== premium mobile menu ===== */
@media (max-width: 860px) {
  .navlinks {
    background: rgba(238,245,232,.94) !important;
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
  }

  .nav-menu-button span {
    transition: .3s ease;
  }

  .nav-toggle:checked ~ .nav-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===== force mobile menu visible ===== */
.site-header {
  overflow: visible !important;
}

.nav-toggle {
  position: fixed !important;
  left: -9999px !important;
  top: -9999px !important;
  display: block !important;
  opacity: 0 !important;
}

@media (max-width: 860px) {
  .navlinks {
    display: none !important;
    position: fixed !important;
    top: 86px !important;
    right: 16px !important;
    width: min(260px, calc(100vw - 32px)) !important;
    z-index: 9999 !important;
    background: rgba(238,245,232,.96) !important;
  }

  .nav-toggle:checked ~ .navlinks {
    display: block !important;
  }

  .nav-menu-button {
    position: relative !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
  }
}

/* ===== reliable JS class mobile menu ===== */
@media (max-width: 860px) {
  .site-header {
    overflow: visible !important;
  }

  .nav {
    position: relative !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-menu-button {
    display: inline-flex !important;
    position: relative !important;
    z-index: 10001 !important;
    cursor: pointer;
    pointer-events: auto !important;
  }

  .navlinks {
    display: none !important;
    position: fixed !important;
    top: 86px !important;
    right: 16px !important;
    width: min(260px, calc(100vw - 32px)) !important;
    z-index: 10000 !important;
    padding: 18px !important;
    border: 1px solid rgba(23,79,85,.18) !important;
    border-radius: 22px !important;
    background: rgba(238,245,232,.96) !important;
    backdrop-filter: blur(28px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.5) !important;
    box-shadow: 0 18px 44px rgba(23,79,85,.16) !important;
  }

  .site-header.menu-open .navlinks {
    display: block !important;
  }

  .site-header.menu-open .nav-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
