:root {
  --navy: #0f2f4f;
  --navy2: #163f66;
  --blue: #1e6fc0;
  --blue-br: #2f8ae0;
  --green: #46b178;
  --green-dk: #3a9866;
  --ink: #16222e;
  --gray: #6a7884;
  --line: #e2e7ec;
  --bg: #ffffff;
  --soft: #eef2f6;
  --rail: 66px;
  --go: "Zen Kaku Gothic New", sans-serif;
  --cond: "Barlow Condensed", sans-serif;
  --anton: "Anton", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--go);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01em;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.cond {
  font-family: var(--cond);
  letter-spacing: .04em;
}

.ph {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #dde4ea 0 15px, #e6ebf0 15px 30px);
  display: grid;
  place-items: center;
}

.ph::after {
  content: attr(data-label);
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: .08em;
  color: #8b98a4;
  background: rgba(255, 255, 255, .82);
  padding: 5px 13px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 56px);
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: .3s;
}

header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: .3s;
}

header.scrolled {
  background: var(--navy);
}

header.scrolled .bar {
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: .3s;
}

header.top-light .brand {
  color: #fff;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand b {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .22em;
  color: #8fc0ea;
}

nav.main {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav.main a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}

nav.main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: .3s;
}

nav.main a:hover::after,
nav.main a.active::after {
  width: 100%;
}

nav.main a.active {
  color: var(--green);
}

.hcta {
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 26px;
  transition: .25s;
  white-space: nowrap;
}

.hcta:hover {
  background: var(--green-dk);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 10px;
  justify-content: center;
}

.burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
}

/* right SNS rail */
.rail {
  position: fixed;
  right: 0;
  top: 0;
  width: var(--rail);
  height: 100vh;
  z-index: 58;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.rail .fl {
  position: absolute;
  top: 64px;
  writing-mode: vertical-rl;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--gray);
}

.rail a {
  color: var(--navy);
  opacity: .85;
  transition: .25s;
  padding: 10px;
}

.rail a:hover {
  color: var(--green);
  opacity: 1;
  transform: translateY(-2px);
}

.rail svg {
  width: 21px;
  height: 21px;
}

.rail .scrollc {
  position: absolute;
  bottom: 64px;
  writing-mode: vertical-rl;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: color .25s, opacity .25s;
}

.rail .scrollc:hover {
  color: var(--green);
  opacity: 1;
}

.rail .scrollc::after {
  content: "";
  writing-mode: horizontal-tb;
  width: 2px;
  height: 50px;
  background: linear-gradient(var(--green), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  45% {
    clip-path: inset(0 0 0% 0);
  }

  90%,
  100% {
    clip-path: inset(100% 0 0 0);
  }
}

/* hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
}

.hero .bg {
  position: absolute;
  inset: 0;
}

.hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 47, 79, .94) 0%, rgba(15, 47, 79, .72) 38%, rgba(15, 47, 79, .34) 72%, rgba(15, 47, 79, .5) 100%);
}

.hero .inner {
  position: absolute;
  left: 0;
  bottom: 14vh;
  z-index: 2;
  padding: 0 clamp(22px, 4vw, 56px);
  max-width: 1040px;
}

.hero .tag {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .18em;
  color: #7fe0a8;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(40px, 6.6vw, 90px);
  line-height: 1.16;
  letter-spacing: .01em;
  text-shadow: 0 4px 36px rgba(6, 24, 42, .45);
}

.hero h1 .o {
  color: var(--blue-br);
}

.hero p {
  margin-top: 26px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #d8e6f2;
  max-width: 440px;
}

.statbar {
  background: var(--navy2);
  color: #fff;
}

.statbar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.statbar .st {
  padding: 30px 10px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.statbar .st:first-child {
  border-left: none;
}

.statbar .st .big {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  color: #fff;
  line-height: 1;
}

.statbar .st .big em {
  font-style: normal;
  color: var(--green);
}

.statbar .st .lb {
  font-size: 12px;
  color: #9fb6cc;
  margin-top: 8px;
}

/* section heads */
section {
  padding: clamp(80px, 10vw, 130px) 0;
}

.shead {
  margin-bottom: clamp(44px, 5vw, 70px);
}

.shead .e {
  font-family: var(--anton);
  font-size: clamp(48px, 8vw, 110px);
  color: var(--soft);
  line-height: .9;
  letter-spacing: .01em;
  display: block;
}

.shead h2 {
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: .04em;
  margin-top: -22px;
  position: relative;
}

.shead h2::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 5px;
  background: var(--blue);
  vertical-align: middle;
  margin-right: 16px;
}

/* strengths */
.str {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.scol {
  padding: clamp(28px, 3vw, 44px);
  border-left: 1px solid var(--line);
  transition: .3s;
}

.scol:first-child {
  border-left: none;
}

.scol:hover {
  background: var(--navy);
  color: #fff;
}

.scol .num {
  font-family: var(--anton);
  font-size: 46px;
  color: var(--blue);
  line-height: 1;
}

.scol:hover .num {
  color: var(--green);
}

.scol .pic {
  aspect-ratio: 16/10;
  margin: 20px 0;
}

.scol h3 {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.scol p {
  font-size: 14px;
  color: var(--gray);
}

.scol:hover p {
  color: #b8cadb;
}

/* services dark */
.services {
  background: var(--navy);
  color: #fff;
}

.services .shead .e {
  color: rgba(255, 255, 255, .07);
}

.services .shead h2 {
  color: #fff;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}

.svc {
  background: var(--navy);
  padding: 0;
  transition: .3s;
  position: relative;
}

.svc:hover {
  background: var(--navy2);
}

.svc .pic {
  aspect-ratio: 1/1;
}

.svc .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .3s;
}

.svc:hover .pic img {
  transform: scale(1.05);
}

.svc .t {
  padding: 18px 20px;
}

.svc-cat {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 12px;
  color: var(--green);
  letter-spacing: .1em;
}

.svc .t b {
  display: block;
  font-weight: 700;
  font-size: 17px;
  margin-top: 2px;
}

/* cta */
.cta {
  background: var(--blue);
  color: #fff;
}

.cta .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.cta .e {
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 16px;
  color: #bfe0ff;
}

.cta h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.3;
  letter-spacing: .03em;
  margin: 14px 0 18px;
}

.cta p {
  color: #d4e7fa;
  font-size: 15px;
  margin-bottom: 0;
}

.cta .act {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta .bw {
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  font-size: 18px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .25s;
}

.cta .bw:hover {
  background: var(--navy);
  color: #fff;
}

.cta .bg {
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .25s;
}

.cta .bg:hover {
  background: var(--green-dk);
}

/* flow */
.flow .steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.fstep {
  border-top: 5px solid var(--navy);
  padding-top: 22px;
}

.fstep .n {
  font-family: var(--anton);
  font-size: 42px;
  color: var(--blue);
  line-height: 1;
}

.fstep h4 {
  font-weight: 900;
  font-size: 17px;
  margin: 8px 0 8px;
  letter-spacing: .03em;
}

.fstep p {
  font-size: 13px;
  color: var(--gray);
}

.flow-note {
  margin-top: 48px;
  background: var(--soft);
  padding: 26px 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 19px);
}

.flow-note b {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.7em;
  color: var(--blue);
}

/* qa */
.qa {
  background: var(--soft);
}

.qa .shead .e {
  color: rgba(0, 0, 0, .05);
}

.qitem {
  background: #fff;
  border-left: 5px solid var(--blue);
  margin-bottom: 12px;
}

.qq {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  font-weight: 900;
  font-size: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--ink);
}

.qq .q {
  font-family: var(--anton);
  color: var(--blue);
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.qq .ic {
  margin-left: auto;
  font-family: var(--cond);
  font-weight: 700;
  color: var(--blue);
  font-size: 30px;
  transition: .3s;
}

.qitem.open {
  border-left-color: var(--green);
}

.qitem.open .ic {
  transform: rotate(45deg);
  color: var(--green);
}

.qbody {
  max-height: 0;
  overflow: hidden;
  transition: .4s;
}

.qbody .in {
  display: flex;
  gap: 18px;
  padding: 0 28px 26px 28px;
  color: var(--gray);
  font-size: 14.5px;
  align-items: flex-start;
}

.qbody .a {
  font-family: var(--anton);
  font-weight: 900;
  color: var(--green);
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.morebtn {
  margin-top: 50px;
}

.morebtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--navy);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 17px;
  padding: 22px;
  transition: .25s;
}

.morebtn a:hover {
  background: var(--blue);
}

/* company */
.company {
  background: var(--navy);
  color: #fff;
}

.company .shead .e {
  color: rgba(255, 255, 255, .07);
}

.company .shead h2 {
  color: #fff;
}

.company a {
  color: #cfe0f0;
}

.cgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .14);
}

.crow {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.crow:nth-child(-n+2) {
  border-top: none;
}

.crow:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.crow-full {
  grid-column: 1/-1;
}

.crow-full:first-child,
.crow-full+.crow {
  border-top: none;
}

.crow dt {
  padding: 20px 22px;
  background: rgba(255, 255, 255, .05);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .04em;
}

.crow dd {
  padding: 20px 22px;
  font-size: 14px;
  color: #cfe0f0;
}

.map-wrap {
  margin-top: clamp(48px, 6vw, 80px);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* contact */
.contact {
  text-align: center;
  background: #fff;
}

.contact .shead {
  text-align: center;
}

.contact .shead .e {
  text-align: center;
}

.contact p.lead {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 15px;
}

.cbtns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 60px;
}

.cbig {
  border: 2px solid var(--navy);
  padding: 32px 22px;
  transition: .25s;
}

.cbig:hover {
  background: var(--navy);
  color: #fff;
}

.cbig .t {
  font-weight: 700;
  font-size: 13px;
  color: var(--gray);
}

.cbig:hover .t {
  color: #9fb6cc;
}

.cbig .big {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  margin-top: 6px;
}

.cbig:hover .big {
  color: #fff;
}

.cbig .hours {
  font-size: 12px;
  color: var(--gray);
}

.cbig.g {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cbig.g .t {
  color: #dff0e6;
}

.cbig.g .big {
  color: #fff;
  font-family: var(--go);
  font-weight: 900;
  font-size: 18px;
}

.cbig.g:hover {
  background: var(--green-dk);
}

.cbig.l {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cbig.l .t {
  color: #d7f5e3;
}

.cbig.l .big {
  color: #fff;
  font-family: var(--go);
  font-weight: 900;
  font-size: 18px;
}

.cbig.l:hover {
  background: #05a847;
}

/* contact form */
.cform {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.cform .frow {
  margin-bottom: 22px;
}

.cform label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.cform .req {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: .04em;
}

.cform input:not([type="checkbox"]),
.cform textarea,
.cform select {
  width: 100%;
  border: 2px solid var(--line);
  padding: 14px 16px;
  font-family: var(--go);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: .25s;
  outline: none;
  -webkit-appearance: none;
}

.cform input:not([type="checkbox"]):focus,
.cform textarea:focus,
.cform select:focus {
  border-color: var(--blue);
}

.cform textarea {
  min-height: 160px;
  resize: vertical;
}

.cform .check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}

.cform .check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--blue);
}

.cform .check-row a {
  color: var(--blue);
  text-decoration: underline;
}

.cform .privacy-note {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin: 28px 0 0;
}

.form-error {
  color: #d32f2f;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}

.cform input.input-error,
.cform textarea.input-error {
  border-color: #d32f2f;
}

.cform .fsub {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--go);
  font-weight: 900;
  font-size: 17px;
  padding: 22px;
  border: none;
  transition: .25s;
  letter-spacing: .06em;
  margin-top: 28px;
}

.cform .fsub:hover {
  background: var(--navy);
}

.cform .fsub:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-success {
  background: #f0fdf4;
  border: 2px solid var(--green);
  padding: 32px;
  text-align: center;
  margin-top: 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.form-success .fs-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.form-success h3 {
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
  font-size: 14px;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.gitem {
  background: #fff;
  overflow: hidden;
}

.gitem .pic {
  aspect-ratio: 4/3;
  transition: .4s;
}

.gitem .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s;
}

.gitem:hover .pic img {
  transform: scale(1.05);
}

.gitem:hover .pic {
  transform: scale(1.04);
}

.gitem .gt {
  padding: 16px 18px;
}

.gitem .gt .cat {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 12px;
  color: var(--green);
  letter-spacing: .1em;
}

.gitem .gt b {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-top: 2px;
  color: var(--ink);
}

/* privacy policy */
.privacy-section {
  background: #fff;
}

.privacy-body {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-body h3 {
  font-weight: 900;
  font-size: 18px;
  margin: 44px 0 12px;
  letter-spacing: .03em;
  color: var(--navy);
}

.privacy-body p,
.privacy-body li {
  font-size: 15px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 10px;
}

.privacy-body ul {
  padding-left: 1.4em;
  margin-bottom: 10px;
}

.privacy-body .contact-box {
  background: var(--soft);
  padding: 28px 32px;
  margin-top: 44px;
  border-left: 5px solid var(--blue);
}

.privacy-body .contact-box p {
  margin: 0;
  color: var(--ink);
}

.privacy-body .contact-box a {
  color: var(--blue);
  text-decoration: underline;
}

/* footer */
footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(58px, 7vw, 88px) 0 28px;
}

footer .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

footer .fb {
  display: flex;
  align-items: center;
  gap: 14px;
}

footer .fb img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

footer .fb b {
  font-weight: 900;
  font-size: 22px;
}

footer .fb small {
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  color: #8fc0ea;
}

footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 13px;
}

footer nav a {
  color: #cdd6df;
}

footer nav a:hover {
  color: #fff;
}

footer .bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: .08em;
  color: #8896a3;
}

footer .bot a {
  color: #8896a3;
  text-decoration: underline;
}

footer .bot a:hover {
  color: #cdd6df;
}

/* mobile menu */
.mmenu-bd {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(10, 24, 40, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s, visibility 0s .4s;
}

.mmenu-bd.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .4s, visibility 0s;
}

.mmenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(360px, 90vw);
  background: linear-gradient(160deg, #0a1e35 0%, #0f2f4f 45%, #163f66 72%, #1e6fc0 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 36px 50px;
  gap: 0;
  transform: translateX(100%);
  transition: .45s cubic-bezier(.7, 0, .2, 1);
  box-shadow: none;
  overflow: hidden;
}

.mmenu::after {
  content: "GROWTH";
  position: absolute;
  right: -32px;
  bottom: -16px;
  font-family: var(--anton);
  font-size: clamp(80px, 22vw, 140px);
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.02em;
}

.mmenu.open {
  transform: none;
  box-shadow: -16px 0 56px rgba(0, 0, 0, .35);
}

.mmenu .m-tag {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--green);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mmenu .m-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green);
}

.mmenu a {
  font-weight: 900;
  font-size: clamp(18px, 5vw, 24px);
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  letter-spacing: .02em;
  transition: .25s;
  position: relative;
}

.mmenu a:hover {
  color: var(--green);
  padding-left: 10px;
}

.mmenu a .n {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 13px;
  color: var(--green);
  min-width: 26px;
  letter-spacing: .06em;
  flex-shrink: 0;
}

.mmenu .m-cta {
  border-bottom: none;
  margin-top: 22px;
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  justify-content: center;
  font-size: 14px;
  letter-spacing: .06em;
  transition: .2s;
}

.mmenu .m-cta:hover {
  background: var(--green-dk);
  padding-left: 20px;
  color: #fff;
}

.mmenu .m-cta .n {
  display: none;
}

.mclose {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.mclose:hover {
  color: #fff;
}

/* scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s cubic-bezier(.2, .7, .2, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

@media(prefers-reduced-motion:reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* page hero */
.pagehero {
  position: relative;
  height: 42vh;
  min-height: 280px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.pagehero .bg {
  position: absolute;
  inset: 0;
}

.pagehero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pagehero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 47, 79, .8) 0%, rgba(15, 47, 79, .4) 100%);
}

.pagehero .inner {
  position: relative;
  z-index: 2;
  padding: 0 clamp(22px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 58px);
  width: 100%;
}

.pagehero .tag {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2em;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagehero .tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--green);
}

.pagehero h1 {
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 58px);
  letter-spacing: .03em;
  line-height: 1.18;
  color: #fff;
}

/* inner-page */
.inner-page #hd {
  background: var(--navy);
}

.inner-page #hd .brand {
  color: #fff;
}

/* blog */
.blog-section {
  padding: clamp(80px, 10vw, 130px) 0;
}

.blog-lead {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.instagram-feed {
  width: 100%;
}

.snapwidget-widget {
  border: none;
  overflow: hidden;
  width: 100%;
  height: 510px;
  display: block;
}

.blog-ig-link {
  margin-top: clamp(36px, 4vw, 52px);
  text-align: center;
}

.blog-ig-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .1em;
  color: var(--navy);
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
  transition: .25s;
}

.blog-ig-link a:hover {
  color: var(--blue);
}

/* responsive */
@media(min-width:981px) {
  body {
    padding-right: var(--rail);
  }

  header {
    right: var(--rail);
  }

  .mmenu,
  .mmenu-bd {
    display: none;
  }
}

@media(max-width:980px) {

  nav.main,
  .hcta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .rail {
    display: none;
  }

  .hero .inner {
    bottom: 12vh;
  }

  .hero p {
    max-width: none;
  }

  .str,
  .cta .wrap,
  .cgrid {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scol {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .scol:first-child {
    border-top: none;
  }

  .flow .steps {
    grid-template-columns: 1fr 1fr;
  }

  .crow:nth-child(even) {
    border-left: none;
  }

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

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

  .pagehero {
    height: 36vh;
    min-height: 240px;
  }
}

@media(max-width:600px) {

  .svc-grid,
  .flow .steps {
    grid-template-columns: 1fr 1fr;
  }

  .statbar .wrap {
    grid-template-columns: 1fr;
  }

  .statbar .st {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .statbar .st:first-child {
    border-top: none;
  }

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

  .cta .wrap {
    grid-template-columns: 1fr;
  }
}