/* ============================================================
   SkyLark Printing & Advertising Hub — stylesheet
   Order: tokens -> base -> typography -> primitives -> sections (page order) -> media queries -> reduced motion
   ============================================================ */

:root {
  --green-900: #0C2E18;
  --green-700: #17542F;
  --green-500: #2A7D49;
  --green-300: #5FA875;
  --green-050: #E8F0E9;

  --red: #D42B1F;
  --red-ink: #A81B12;

  --ink: #111311;
  --ink-70: #4A4F49;
  --paper: #F7F5EF;
  --paper-2: #EFEDE5;
  --grey-300: #C9C8C0;
  --white: #FFFFFF;

  --cmyk-c: #00AEEF;
  --cmyk-m: #EC008C;
  --cmyk-y: #FFD200;
  --cmyk-k: #111311;

  --f-script: "Pacifico", "Brush Script MT", "Segoe Script", cursive;
  --f-display: "Archivo", "Archivo Black", "Helvetica Neue", Arial, sans-serif;
  --f-body: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 14px;

  --sh-1: 0 1px 2px rgba(12,46,24,.06), 0 4px 12px rgba(12,46,24,.06);
  --sh-2: 0 10px 30px rgba(12,46,24,.12);
  --sh-lift: 0 14px 34px rgba(12,46,24,.16);

  --header-h: 68px;
  --progress: 0;
}

@media (min-width: 1024px) {
  :root { --header-h: 76px; }
}

/* ---------- reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--green-700); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}
.hero :focus-visible,
.floor :focus-visible,
.footer :focus-visible,
.visit :focus-visible {
  outline-color: var(--white);
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: var(--r-md);
  z-index: 200;
  transition: top .2s ease;
}
.skip:focus { top: 12px; }

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

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}
@media (min-width: 640px) { .container { width: min(100% - 64px, 1200px); } }
@media (min-width: 1024px) { .container { width: min(100% - 96px, 1200px); } }

.section { padding: 64px 0; }
@media (min-width: 640px) { .section { padding: 84px 0; } }
@media (min-width: 1024px) { .section { padding: 128px 0; } }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 54ch;
}

h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.35rem, 8.2vw, 5.5rem);
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0;
}
h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-variation-settings: "wdth" 92;
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.15;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- primitives ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: var(--r-md);
  min-height: 44px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  border: 2px solid var(--green-700);
}
.btn--primary:hover { background: var(--green-900); border-color: var(--green-900); box-shadow: var(--sh-2); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--on-dark-solid {
  background: var(--white);
  color: var(--green-900);
  border: 2px solid var(--white);
}
.btn--on-dark-solid:hover { background: var(--green-050); box-shadow: var(--sh-2); }

.btn--on-dark-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.75);
}
.btn--on-dark-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 479px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; min-height: 52px; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }

.tear {
  width: 100%;
  height: clamp(48px, 7vw, 110px);
  display: block;
}
@media (max-width: 479px) { .tear { height: 40px; } }
.tear--down { margin-bottom: -1px; color: var(--paper); }
.tear--down.on-floor { color: var(--green-900); }
.tear--up { margin-top: -1px; transform: scaleY(-1); color: var(--green-900); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: var(--green-700);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--sh-1);
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-solid {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--grey-300);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mini-lockup { display: flex; align-items: baseline; gap: 12px; }
.mini-lockup .wordmark { font-size: 1.5rem; }
.mini-lockup .pipe { display: none; color: currentColor; opacity: .4; }
.mini-lockup .sub {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 640px) {
  .mini-lockup .pipe { display: inline; }
  .mini-lockup .sub { display: inline; }
}

.progress-bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,.5);
  transform: scaleX(var(--progress));
  transform-origin: left;
}
.site-header.is-solid .progress-bar { background: var(--green-500); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
}
.nav-desktop a:hover { color: var(--green-500); }
.site-header:not(.is-solid) .nav-desktop a:hover { color: var(--green-300); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-call-btn {
  display: none;
}
@media (min-width: 1024px) {
  .header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 18px;
    border-radius: var(--r-md);
    border: 2px solid currentColor;
  }
  .header-call-btn:hover { background: currentColor; }
  .site-header:not(.is-solid) .header-call-btn:hover { color: var(--green-900); }
  .site-header.is-solid .header-call-btn:hover { color: var(--paper); }
  .header-call-btn svg { width: 16px; height: 16px; }
}

.hamburger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background .2s ease;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .3s ease, top .3s ease, opacity .3s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--green-700);
  transform: translateY(-100%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 32px 40px;
  overflow-y: auto;
}
.nav-mobile.is-open { transform: translateY(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.nav-mobile a {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.nav-mobile.is-open a { opacity: 1; transform: none; }
.nav-mobile li:nth-child(1) a { transition-delay: 60ms; }
.nav-mobile li:nth-child(2) a { transition-delay: 110ms; }
.nav-mobile li:nth-child(3) a { transition-delay: 160ms; }
.nav-mobile li:nth-child(4) a { transition-delay: 210ms; }
.nav-mobile .btn-row { max-width: 320px; }

body.nav-open { overflow: hidden; }

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

.hero { position: relative; }

.hero__green {
  position: relative;
  min-height: 46svh;
  min-height: 46vh;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
@media (min-width: 640px) { .hero__green { min-height: 52svh; min-height: 52vh; } }

.hero__lowpoly {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  animation: heroDrift 24s ease-in-out infinite;
  will-change: transform;
}
.hero__lowpoly svg { width: 100%; height: 100%; display: block; }

@keyframes heroDrift {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.05) translate3d(-1%, -1%, 0); }
}

.hero__cloud-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  text-align: center;
}

.cloud-lockup {
  position: relative;
  width: min(86vw, 520px);
}
.cloud-lockup__float {
  display: grid;
  place-items: center;
  animation: cloudFloat 6s ease-in-out infinite;
}
@keyframes cloudFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-6px); }
}
.cloud-lockup svg {
  width: 100%;
  height: auto;
  grid-area: 1 / 1;
}
.wordmark {
  --wm-stroke: 3px;
  position: relative;
  display: inline-block;
  font-family: var(--f-script);
  color: var(--white);
  line-height: 1;
}
.wordmark::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--green-900);
  -webkit-text-stroke: var(--wm-stroke) var(--green-900);
  text-stroke: var(--wm-stroke) var(--green-900);
  text-shadow: 0 2px 0 var(--green-900);
}
.cloud-lockup .wordmark {
  --wm-stroke: 7px;
  grid-area: 1 / 1;
  font-size: clamp(3rem, 11vw, 7rem);
}
.footer__brand .wordmark { --wm-stroke: 4px; }

.hero__subline {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--white);
  font-size: clamp(.78rem, 2.4vw, 1.5rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  max-width: 90vw;
}

.hero__paper {
  background: var(--paper);
  padding: 28px 0 48px;
}
@media (min-width: 640px) { .hero__paper { padding: 40px 0 64px; } }
@media (min-width: 1024px) { .hero__paper { padding: 56px 0 88px; } }

.hero__paper .container {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__paper .container {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    text-align: left;
    align-items: center;
  }
}

.hero__copy .lead { margin: 20px auto 0; }
@media (min-width: 1024px) { .hero__copy .lead { margin: 20px 0 0; } }

.hero__h1-line { display: block; overflow: hidden; }
.hero__h1-line span { display: block; transform: translateY(110%); transition: transform .7s cubic-bezier(.16,1,.3,1); }
.hero__h1-line.is-in span { transform: none; }
.hero__h1-line--red { color: var(--red); }

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.75rem, 5.2vw, 3rem);
  color: var(--ink);
  margin: 24px auto 0;
  transition: color .2s ease;
}
@media (min-width: 1024px) { .hero__phone { margin: 24px 0 0; } }
.hero__phone:hover { color: var(--green-700); }
.hero__phone svg { width: .8em; height: .8em; }

.hero__copy .btn-row { justify-content: center; margin-top: 28px; }
@media (min-width: 1024px) { .hero__copy .btn-row { justify-content: flex-start; } }

.hero__micro {
  font-size: .875rem;
  color: var(--ink-70);
  margin-top: 18px;
}

.hero__stack {
  display: none;
  position: relative;
  height: 340px;
}
@media (min-width: 1024px) {
  .hero__stack { display: block; }
}
.hero__panel {
  position: absolute;
  border-radius: var(--r-sm);
  will-change: transform;
}
.hero__panel--flex {
  width: 300px; height: 200px;
  left: 10%; top: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--green-700) 42%, transparent 43%) 0 0/12px 12px,
    var(--paper-2);
  background-blend-mode: normal;
  opacity: .97;
  box-shadow: var(--sh-2);
  animation: floatA 7s ease-in-out infinite;
}
.hero__panel--flex::before {
  content: "";
  position: absolute; inset: 0;
  background: inherit;
  opacity: .35;
  border-radius: inherit;
}
.hero__panel--acrylic {
  width: 280px; height: 190px;
  left: 22%; top: 82px;
  background: linear-gradient(160deg, rgba(255,255,255,.55), rgba(255,255,255,.15));
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(1px);
  animation: floatB 8.5s ease-in-out infinite;
  animation-delay: -2.5s;
}
.hero__panel--neon {
  width: 220px; height: 90px;
  left: 8%; top: 220px;
  background: var(--green-900);
  box-shadow: var(--sh-2);
  animation: floatC 6.5s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes floatA {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(2.5deg) translateY(-14px); }
}
@keyframes floatC {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-8px); }
}
.hero__panel--neon::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; top: 50%;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(212,43,31,.65), 0 0 4px rgba(212,43,31,.8);
}

/* ---------- marquee ---------- */

.marquee {
  background: var(--green-700);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--white);
  font-size: clamp(.95rem, 2.2vw, 1.4rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 .6em;
}
.marquee__sep { color: var(--green-300); padding: 0 .3em; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- statement ---------- */

.statement { position: relative; background: var(--paper-2); }
.statement__body {
  position: relative;
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
}
.statement__body p { margin-top: 18px; }
@media (min-width: 640px) {
  .statement__body { text-align: left; margin: 0; }
}

/* ---------- services ---------- */

.services__head { text-align: center; max-width: 60ch; margin: 0 auto 48px; }
.services__head .lead { margin: 12px auto 0; }
@media (min-width: 640px) {
  .services__head { text-align: left; margin: 0 0 48px; }
  .services__head .lead { margin-top: 12px; }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
@media (min-width: 1280px) { .services__grid { gap: 20px; } }

.card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out;
}
@media (hover: hover) {
  .card:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); border-color: var(--green-300); }
  .card:hover .card__texture { opacity: 1; }
}
.card:active { transform: scale(.99); }

.card__texture {
  position: relative;
  height: clamp(64px, 9vw, 104px);
  background: var(--paper-2);
  opacity: .85;
  transition: opacity .2s ease-out;
  overflow: hidden;
}
.card__body { padding: 18px 18px 22px; }
.card__rule { height: 1px; background: var(--grey-300); margin: 10px 0; border: none; }
.card__desc { font-size: .875rem; color: var(--ink-70); }

.tex-panaflex { background-image: radial-gradient(circle at 50% 50%, var(--green-700) 42%, transparent 43%); background-size: 12px 12px; opacity: .35; }
.tex-offset { display: flex; flex-direction: column; gap: 6px; padding: 10px 12px; justify-content: center; }
.tex-offset span { height: 10px; border-radius: 2px; }
.tex-offset span:nth-child(1) { background: var(--cmyk-c); }
.tex-offset span:nth-child(2) { background: var(--cmyk-m); }
.tex-offset span:nth-child(3) { background: var(--cmyk-y); }
.tex-offset span:nth-child(4) { background: var(--cmyk-k); }
.tex-offset .crosshair { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; }
.tex-offset .crosshair::before, .tex-offset .crosshair::after { content: ""; position: absolute; background: var(--ink); }
.tex-offset .crosshair::before { left: 9px; top: 0; width: 1px; height: 20px; }
.tex-offset .crosshair::after { top: 9px; left: 0; height: 1px; width: 20px; }
.tex-uvdtf { background: var(--green-050); background-image: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.95) 46%, rgba(255,255,255,.4) 52%, transparent 60%); }
.tex-laser { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 6px 0; }
.tex-laser span { display: block; height: 1px; background: var(--green-700); box-shadow: 0 1px 4px rgba(212,43,31,.35); }
.tex-plotter { display: grid; place-items: center; }
.tex-plotter i { display: block; width: 70%; height: 70%; border: 2px dashed var(--green-700); border-radius: 40% 12% 40% 12%; opacity: .7; font-style: normal; }
.tex-led { background-image: radial-gradient(circle, var(--green-500) 30%, transparent 31%); background-size: 10px 10px; opacity: .5; position: relative; }
.tex-led::after { content: ""; position: absolute; width: 34px; height: 34px; top: 20%; right: 18%; background-image: radial-gradient(circle, var(--green-500) 30%, transparent 31%); background-size: 8px 8px; opacity: 1; }
.tex-neon { background: var(--green-900); display: grid; place-items: center; }
.tex-neon svg { width: 80%; height: 60%; }
.tex-neon path { fill: none; stroke: var(--red); stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(212,43,31,.9)) drop-shadow(0 0 12px rgba(212,43,31,.55)); }
.tex-acrylic { display: flex; align-items: center; justify-content: center; gap: 8px; }
.tex-acrylic span { width: 22%; height: 60%; background: rgba(255,255,255,.55); border-bottom: 2px solid var(--green-300); }
.tex-acrylic span:nth-child(2) { height: 70%; }
.tex-acrylic span:nth-child(3) { height: 80%; }
.tex-digital { background-image: repeating-linear-gradient(180deg, var(--green-700) 0 1px, transparent 1px 4px); opacity: .22; -webkit-mask-image: linear-gradient(180deg, #000, transparent); mask-image: linear-gradient(180deg, #000, transparent); }
.tex-vinyl { background: var(--green-050); position: relative; }
.tex-vinyl::after {
  content: "";
  position: absolute; right: 0; bottom: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent var(--white) transparent;
  box-shadow: -2px -2px 6px rgba(12,46,24,.1);
}

.services__foot {
  text-align: center;
  margin-top: 44px;
  font-weight: 500;
  color: var(--ink-70);
}

/* ---------- our floor ---------- */

.floor {
  position: relative;
  background: var(--green-900);
  color: var(--white);
}
.floor__stage {
  padding: 64px 0;
}
@media (min-width: 640px) { .floor__stage { padding: 84px 0; } }
@media (min-width: 1024px) { .floor__stage { padding: 128px 0; } }

.floor__col { max-width: 620px; margin: 0 auto; width: 100%; padding-inline: 20px; }
@media (min-width: 640px) { .floor__col { padding-inline: 32px; } }

.floor h2 { color: var(--white); margin-bottom: 8px; }
.floor__sub { color: var(--green-300); max-width: 46ch; }

.floor__roof { display: block; width: 100%; max-width: 480px; margin: 28px auto 8px; }
.floor__roof path { fill: none; stroke: var(--white); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: .85; }

.floor__plates { margin-top: 8px; }
.floor__plate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
@media (max-width: 519px) {
  .floor__plate { flex-direction: column; gap: 4px; }
  .floor__plate .floor__note { text-align: left; }
}
.floor__name { font-family: var(--f-display); font-weight: 700; color: var(--white); font-size: clamp(1rem, 2.2vw, 1.3rem); }
.floor__note { font-size: .85rem; color: rgba(255,255,255,.72); text-align: right; }

.floor__close {
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin-top: 16px;
}

/* ---------- ten years ---------- */

.tenyears.section { padding-bottom: 48px; }
@media (min-width: 640px) { .tenyears.section { padding-bottom: 56px; } }
@media (min-width: 1024px) { .tenyears.section { padding-bottom: 64px; } }

.tenyears .container {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .tenyears .container { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
}

.seal {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}
@media (min-width: 900px) { .seal { width: 220px; height: 220px; margin: 0; } }
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.seal circle {
  fill: none;
  stroke: var(--green-700);
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.seal__inner { position: relative; }
.seal__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 8rem);
  color: var(--green-700);
  line-height: 1;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s cubic-bezier(.16,1,.3,1) .15s, transform .7s cubic-bezier(.16,1,.3,1) .15s;
}
.seal.is-in .seal__num { opacity: 1; transform: none; }
.seal__label {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  color: var(--ink-70);
  margin-top: 4px;
}

.tenyears__list { margin-top: 32px; }
.tenyears__list div {
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-300);
}
.tenyears__list div:first-child { padding-top: 0; }
.tenyears__list dt {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--green-700);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.tenyears__list dd { margin: 0; color: var(--ink-70); }

/* ---------- visit us ---------- */

.visit.section { padding: 48px 0; }
@media (min-width: 640px) { .visit.section { padding: 56px 0; } }
@media (min-width: 1024px) { .visit.section { padding: 64px 0; } }

.visit__card {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  background: var(--green-700);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--sh-2);
  color: var(--white);
  overflow: hidden;
}
.visit__card-tex {
  position: absolute;
  inset: 0;
  opacity: .08;
  z-index: 0;
}
.visit__card-tex svg { width: 100%; height: 100%; }
.visit__card > * { position: relative; z-index: 1; }

.visit h2 { color: var(--white); margin-bottom: 10px; }
.visit .lead { color: var(--green-300); }

.visit__details {
  display: grid;
  gap: 18px;
  margin: 24px 0 20px;
}
@media (min-width: 900px) {
  .visit__details { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.visit__item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
@media (min-width: 900px) {
  .visit__item {
    padding-bottom: 0;
    border-bottom: none;
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,.18);
  }
  .visit__item:first-child { padding-left: 0; border-left: none; }
}
.visit__label {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--green-300);
  margin-bottom: 6px;
}
.visit__value { font-size: 1.05rem; overflow-wrap: anywhere; }
.visit__value--big {
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.4rem;
  overflow-wrap: anywhere;
}
.visit__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
}
.visit__maps-link:hover { border-color: var(--white); }

/* ---------- map ---------- */

.map-section { border-top: 1px solid var(--grey-300); border-bottom: 1px solid var(--grey-300); }
.map-embed {
  aspect-ratio: 21 / 9;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) { .map-embed { aspect-ratio: 4 / 3; } }
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(1.02);
  transition: filter .3s ease;
}
.map-embed:hover iframe { filter: none; }

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

.footer { background: var(--green-900); color: var(--white); }

.footer__top {
  padding: 48px 0 40px;
  display: grid;
  gap: 40px;
}
@media (min-width: 640px) { .footer__top { padding: 64px 0 40px; } }
@media (min-width: 1024px) { .footer__top { padding: 88px 0 40px; } }
@media (min-width: 900px) {
  .footer__top { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
}

.footer__brand .wordmark { font-size: 2.5rem; }
.footer__brand .sub {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-300);
  margin: 6px 0 16px;
}
.footer__brand p { color: rgba(255,255,255,.75); max-width: 34ch; }

.footer__heading {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--green-300);
  margin-bottom: 16px;
}
.footer__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}
.footer__visit { display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.footer__visit a:hover { color: var(--green-300); }
.footer__visit address { font-style: normal; overflow-wrap: anywhere; }

.ribbon {
  position: relative;
  background: var(--green-700);
  padding: 22px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .ribbon { clip-path: polygon(0 0, 100% 0, calc(100% - 38px) 50%, 100% 100%, 0 100%, 38px 50%); }
}
.ribbon::before, .ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 38px;
  background: var(--green-900);
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .ribbon::before, .ribbon::after { display: block; }
  .ribbon::before { left: 0; clip-path: polygon(0 0, 100% 50%, 0 100%); }
  .ribbon::after { right: 0; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
}
.ribbon__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  row-gap: 6px;
  flex-wrap: wrap;
  padding-inline: 20px;
  color: var(--white);
  text-align: center;
}
.ribbon__line {
  display: flex;
  align-items: center;
  gap: inherit;
}
.ribbon__word {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
}
.ribbon__years {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
}
.ribbon__badge {
  width: clamp(52px, 7vw, 76px);
  aspect-ratio: 1;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  color: var(--white);
}

.footer__bottom {
  padding: 18px 0;
  background: var(--green-900);
  font-size: .8rem;
  color: var(--green-300);
  text-align: center;
}

/* ---------- mobile action bar ---------- */

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: flex;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -4px 20px rgba(12,46,24,.14);
}
.mobile-bar.is-visible { transform: translateY(0); }
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  font-family: var(--f-display);
  font-weight: 700;
}
.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar .call { background: var(--green-700); color: var(--white); }
.mobile-bar .wa { background: var(--white); color: var(--green-900); border-top: 1px solid var(--grey-300); }

body.has-mobile-bar { padding-bottom: 56px; }
@media (min-width: 768px) { body.has-mobile-bar { padding-bottom: 0; } }

/* ============================================================
   reduced motion — must stay last
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero__h1-line span, .seal__num, .floor__plate, .floor__close {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track { animation: none !important; transform: none !important; }
}
