/* ===================================================================
   WORKZONE — TRENDY variant
   Light, bold, energetic startup brand. Fresh green + electric lime.
   =================================================================== */

:root {
  --green:      #22c55e;
  --green-600:  #16a34a;
  --green-700:  #15803d;
  --lime:       #c6f24e;
  --coral:      #ff7a59;
  --ink:        #0c1411;
  --ink-soft:   #36433d;
  --muted:      #6b7a72;
  --line:       #e6ece8;
  --bg:         #ffffff;
  --bg-soft:    #f4f8f5;
  --bg-mint:    #eafbf0;
  --radius:     28px;
  --radius-sm:  16px;
  --shadow:     0 18px 50px -18px rgba(16,90,50,.28);
  --shadow-sm:  0 8px 24px -10px rgba(16,90,50,.22);
  --maxw:       1180px;
  --ease:       cubic-bezier(.16,1,.3,1);
  --font:       'Pretendard', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }

/* ====================== LOGO ====================== */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  display: inline-flex; flex-direction: column; line-height: 1;
}
.logo-word {
  display: inline-flex; align-items: center;
  font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em;
  color: var(--ink);
}
.logo-word .lo-o {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.18em; height: 1.18em; margin: 0 .02em;
  background: var(--green); border-radius: 50%;
  vertical-align: middle; flex: 0 0 auto;
}
.logo-word .lo-o svg { width: .72em; height: .72em; }
.logo-tag {
  font-size: .66rem; font-style: italic; font-weight: 500;
  color: var(--green-600); letter-spacing: .01em; margin-top: 3px;
}
.logo-light .logo-word { color: #fff; }
.logo-light .logo-tag { color: var(--lime); }

/* ====================== HEADER ====================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 18px;
}
.topnav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 16px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; color: var(--ink-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--green-700); background: var(--bg-mint); }
.nav-link .caret { font-size: .6rem; transition: transform .2s var(--ease); }
.nav-item:hover .nav-link .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 180px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s var(--ease);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 12px;
  font-weight: 600; font-size: .92rem; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--bg-mint); color: var(--green-700); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.hamburger span {
  width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-drawer {
  max-height: 0; overflow: hidden;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: max-height .4s var(--ease);
}
.mobile-drawer.open { max-height: 80vh; overflow-y: auto; }
.mobile-nav { padding: 12px 22px 24px; }
.m-group { border-bottom: 1px solid var(--line); padding: 6px 0; }
.m-group:last-child { border-bottom: none; }
.m-top {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 14px 4px; font-weight: 800; font-size: 1.05rem;
}
.m-sub a {
  display: block; padding: 10px 16px; font-weight: 600; color: var(--ink-soft);
  border-radius: 10px;
}
.m-sub a:active { background: var(--bg-mint); }

/* ====================== PAGES / ROUTER ====================== */
.page { display: none; }
.page.is-active { display: block; animation: pageIn .5s var(--ease); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.page-head { max-width: 760px; margin-bottom: 40px; }
.chip {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--bg-mint); color: var(--green-700);
  font-weight: 800; font-size: .78rem; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 16px;
}
.chip-lime { background: var(--lime); color: #2c3b00; }
.page-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.05;
}
.page-lead { margin-top: 14px; font-size: 1.12rem; color: var(--muted); }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 800; font-size: 1rem; letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 30px -10px rgba(34,197,94,.7); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-3px) scale(1.03); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-3px); }
.btn-lime { background: var(--lime); color: #2c3b00; }
.btn-lime:hover { transform: translateY(-3px) scale(1.03); }

/* ====================== HERO ====================== */
.hero { position: relative; overflow: hidden; padding: 56px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block; font-weight: 800; font-size: .82rem; letter-spacing: .18em;
  color: var(--green-600); text-transform: uppercase; margin-bottom: 18px;
  padding: 7px 16px; border: 2px solid var(--green); border-radius: 999px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800;
  letter-spacing: -.045em; line-height: 1.0;
}
.hero-title .ln { display: block; overflow: hidden; }
.hero-title .ln > span {
  display: inline-block; transform: translateY(110%);
  animation: slideUp .9s var(--ease) forwards;
}
.hero-title .grad {
  background: linear-gradient(100deg, var(--green) 10%, var(--green-700) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes slideUp { to { transform: none; } }
.hero-sub {
  margin: 26px 0 30px; font-size: 1.18rem; color: var(--ink-soft); max-width: 520px;
  opacity: 0; animation: fadeUp .8s .35s var(--ease) forwards;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .5s var(--ease) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-media { position: relative; z-index: 2; opacity: 0; animation: fadeUp .9s .4s var(--ease) forwards; }
.hero-img-frame {
  position: relative; border-radius: 36px; overflow: visible;
}
.hero-img-frame img {
  border-radius: 36px; box-shadow: var(--shadow); width: 100%;
  aspect-ratio: 4/4.4; object-fit: cover;
}
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--lime); color: #2c3b00; font-weight: 800; font-size: .9rem;
  padding: 14px 20px; border-radius: 18px; box-shadow: var(--shadow-sm);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* gradient blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; z-index: 1; pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: var(--green); top: -120px; right: -60px; animation: drift1 16s ease-in-out infinite; }
.blob-2 { width: 360px; height: 360px; background: var(--lime); bottom: -140px; left: -80px; animation: drift2 18s ease-in-out infinite; }
.blob-3 { width: 280px; height: 280px; background: var(--coral); top: 40%; left: 38%; opacity: .25; animation: drift1 22s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,40px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-30px) scale(1.1); } }

/* ====================== MARQUEE ====================== */
.marquee {
  overflow: hidden; white-space: nowrap;
  background: var(--ink); color: #fff; padding: 16px 0;
  margin: 24px 0; transform: rotate(-1.2deg) scale(1.03);
}
.marquee-track { display: inline-flex; gap: 0; animation: scrollx 26s linear infinite; }
.marquee-track .mq {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; padding: 0 14px;
}
.marquee-track .mq .dot { color: var(--lime); margin-left: 28px; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====================== STATS ====================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 40px 0 12px;
}
.stat {
  background: var(--bg-soft); border-radius: var(--radius-sm);
  padding: 28px 22px; text-align: center; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.stat-n {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.03em;
  color: var(--green-700); line-height: 1;
}
.stat-l { margin-top: 8px; font-size: .92rem; color: var(--muted); font-weight: 600; }

/* ====================== SECTION HEAD ====================== */
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-title { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; }
.section-sub { margin-top: 12px; font-size: 1.1rem; color: var(--muted); }

/* ====================== SERVICES ====================== */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card::after {
  content: ""; position: absolute; inset: auto -40% -60% auto; width: 220px; height: 220px;
  background: radial-gradient(circle, var(--bg-mint), transparent 70%); opacity: 0;
  transition: opacity .35s; pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { opacity: 1; }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--bg-mint); color: var(--green-700); margin-bottom: 20px;
}
.service-card:nth-child(2) .service-icon { background: #fff3ec; color: var(--coral); }
.service-card:nth-child(3) .service-icon { background: #f1fbd8; color: #6b8f00; }
.service-icon svg { width: 30px; height: 30px; }
.service-num {
  position: absolute; top: 26px; right: 30px; font-size: 1rem; font-weight: 800; color: var(--line);
}
.service-card h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: .98rem; }
.services-foot { margin-top: 36px; text-align: center; }

/* ====================== SPLIT CTA ====================== */
.split-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  background: linear-gradient(120deg, var(--green-700), var(--green)); color: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.split-cta-img img { height: 100%; min-height: 320px; object-fit: cover; }
.split-cta-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; align-items: flex-start; }
.split-cta-body h3 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.split-cta-body p { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.split-cta-body .btn-primary { background: var(--lime); color: #2c3b00; box-shadow: none; }
.split-cta-body .btn-primary:hover { background: #d4f96a; }

/* ====================== OVERVIEW ====================== */
.ov-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; margin-bottom: 48px; }
.ov-img { border-radius: var(--radius); margin-bottom: 24px; box-shadow: var(--shadow-sm); aspect-ratio: 16/9; object-fit: cover; }
.ov-desc p { font-size: 1.08rem; color: var(--ink-soft); }
.ov-facts { background: var(--bg-soft); border-radius: var(--radius); padding: 14px 28px; align-self: start; }
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table tr { border-bottom: 1px solid var(--line); }
.facts-table tr:last-child { border-bottom: none; }
.facts-table th { text-align: left; padding: 16px 0; font-weight: 800; color: var(--green-700); width: 38%; font-size: .95rem; vertical-align: top; }
.facts-table td { padding: 16px 0; color: var(--ink-soft); font-weight: 600; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s;
}
.value-card:hover { transform: translateY(-6px); border-color: var(--green); }
.value-card .v-num { font-size: 2.4rem; font-weight: 800; color: var(--lime); -webkit-text-stroke: 1px var(--green-600); line-height: 1; }
.value-card h4 { font-size: 1.3rem; font-weight: 800; margin: 14px 0 8px; }
.value-card p { color: var(--muted); }

/* ====================== GREETING ====================== */
.greeting-card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 56px clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden; max-width: 880px;
}
.greeting-card::before {
  content: "\201C"; position: absolute; top: -20px; left: 24px;
  font-size: 9rem; font-weight: 800; color: var(--green); opacity: .14; font-family: Georgia, serif;
}
.greeting-lead { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; color: var(--green-700); margin-bottom: 28px; line-height: 1.3; }
.greeting-body p { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 18px; }
.greeting-sign { margin-top: 24px; font-weight: 800; font-size: 1.1rem; text-align: right; }

/* ====================== CLIENTS ====================== */
.client-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.client-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.client-card h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; color: var(--green-700); }
.client-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.client-chips span {
  padding: 8px 16px; border-radius: 999px; background: var(--bg-mint);
  font-weight: 700; font-size: .92rem; color: var(--ink-soft);
}
.client-note { margin-top: 26px; color: var(--muted); font-size: .9rem; }

/* ====================== LOCATION ====================== */
.location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 360px; }
.location-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.info-table { width: 100%; border-collapse: collapse; background: var(--bg-soft); border-radius: var(--radius); padding: 8px 28px; align-self: start; height: fit-content; }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table tr:last-child { border-bottom: none; }
.info-table th { text-align: left; padding: 18px 0; font-weight: 800; color: var(--green-700); width: 32%; vertical-align: top; }
.info-table td { padding: 18px 0; color: var(--ink-soft); font-weight: 600; }

/* ====================== CAREERS ====================== */
.career-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 48px; }
.career-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.career-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.career-card .c-tag {
  display: inline-block; padding: 5px 14px; border-radius: 999px; font-weight: 800; font-size: .8rem;
  background: var(--lime); color: #2c3b00; margin-bottom: 16px;
}
.career-card h4 { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.career-card p { color: var(--ink-soft); margin-bottom: 16px; }
.career-card .c-meta { font-weight: 700; color: var(--green-700); font-size: .92rem; }

.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
.perk {
  background: var(--bg-soft); border-radius: var(--radius-sm); padding: 26px 22px; text-align: center;
  border: 1px solid var(--line); transition: transform .3s var(--ease);
}
.perk:hover { transform: translateY(-6px); background: var(--bg-mint); }
.perk h5 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.perk p { color: var(--muted); font-size: .92rem; }

.career-cta {
  background: linear-gradient(120deg, var(--green-700), var(--green)); color: #fff;
  border-radius: var(--radius); padding: 48px 44px; text-align: center; box-shadow: var(--shadow);
}
.career-cta h3 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.career-cta p { color: rgba(255,255,255,.92); margin-bottom: 24px; font-size: 1.05rem; }
.career-cta .btn { background: var(--lime); color: #2c3b00; }

/* ====================== NOTICES ====================== */
.notice-list { border-top: 2px solid var(--ink); }
.notice-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center;
  width: 100%; text-align: left; padding: 22px 14px; border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .25s var(--ease);
}
.notice-row:hover { background: var(--bg-mint); padding-left: 24px; }
.notice-row .n-title { font-weight: 700; font-size: 1.08rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pin-badge { background: var(--coral); color: #fff; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.notice-row .n-date { color: var(--muted); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.notice-row .n-views { color: var(--muted); font-size: .85rem; white-space: nowrap; }

.notice-detail { border-top: 2px solid var(--ink); padding-top: 30px; }
.notice-detail h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.notice-detail .nd-meta { color: var(--muted); font-weight: 600; margin: 14px 0 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); display: flex; gap: 18px; flex-wrap: wrap; }
.notice-detail .nd-body { font-size: 1.05rem; color: var(--ink-soft); white-space: pre-wrap; line-height: 1.8; margin-bottom: 32px; }

.state {
  text-align: center; padding: 60px 20px; color: var(--muted); font-weight: 600; font-size: 1.05rem;
}
.spinner {
  width: 38px; height: 38px; border: 4px solid var(--bg-mint); border-top-color: var(--green);
  border-radius: 50%; margin: 0 auto 16px; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ====================== INQUIRY FORM ====================== */
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .95rem; }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 14px 16px;
  border: 2px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,.14);
}
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid textarea { border-color: var(--coral); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.form-msg { font-weight: 700; }
.form-msg.ok { color: var(--green-700); }
.form-msg.err { color: var(--coral); }

/* ====================== STICKY CTA ====================== */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px; font-weight: 800; font-size: 1rem;
  background: var(--green); color: #fff; box-shadow: 0 16px 36px -10px rgba(34,197,94,.7);
  transition: transform .25s var(--ease), background .25s; will-change: transform;
}
.sticky-cta:hover { transform: translateY(-4px) scale(1.05); background: var(--green-600); }
.sticky-cta-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .5; } }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--ink); color: #cfe0d6; margin-top: 80px; padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 40px; padding-bottom: 40px; }
.footer-tagline { margin-top: 16px; font-style: italic; color: var(--lime); font-weight: 500; }
.footer-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; align-content: start; }
.footer-info .fi { font-size: .92rem; }
.footer-info .fi b { color: #fff; font-weight: 700; display: block; margin-bottom: 3px; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; opacity: .7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; padding-bottom: 28px;
  font-size: .85rem; color: #8aa093;
}
.admin-link { color: #8aa093; font-weight: 700; padding: 6px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; transition: all .2s; }
.admin-link:hover { color: var(--lime); border-color: var(--lime); }

/* ====================== REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }

/* magnetic baseline */
.magnetic { transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s; }

/* page transition overlay */
.page-overlay { position: fixed; inset: 0; background: var(--green); z-index: 200; transform: scaleY(0); transform-origin: bottom; pointer-events: none; }
.page-overlay.flash { animation: wipe .6s var(--ease); }
@keyframes wipe {
  0% { transform: scaleY(0); transform-origin: bottom; }
  45% { transform: scaleY(1); transform-origin: bottom; }
  46% { transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .hero-grid, .ov-grid, .location-grid, .split-cta { grid-template-columns: 1fr; }
  .split-cta-img img { min-height: 240px; }
  .hero-media { max-width: 460px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .perk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .topnav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 52px 0; }
  .service-grid, .value-grid, .client-grid, .career-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; }
  .greeting-card { padding: 40px 26px; }
  .career-cta, .split-cta-body { padding: 36px 26px; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 14px 20px; font-size: .92rem; }
}
@media (max-width: 400px) {
  .value-grid, .footer-info { grid-template-columns: 1fr; }
  .stat { padding: 22px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
  .hero-title .ln > span { transform: none !important; }
}
