/* ============================================================
   DAVE'S FLOOR & MORE — design system
   "Everything from floor to ceiling."
   Palette drawn from the brand mark: steel blue, terracotta
   copper, slate navy — deepened for a high-end finish.
   ============================================================ */

:root {
  /* color */
  --ink:        #0c1520;   /* near-black navy — dark sections */
  --ink-2:      #12202f;   /* raised panels on dark */
  --ink-3:      #1a2c40;   /* hover panels on dark */
  --paper:      #f4efe6;   /* warm plaster — light sections */
  --paper-2:    #ece5d6;   /* cards on light */
  --paper-3:    #e3dac7;   /* deep plaster */
  --blue:       #4173ab;   /* brand steel blue */
  --blue-bright:#7ea9d8;   /* blue on dark backgrounds */
  --copper:     #c96f2e;   /* brand terracotta, deepened */
  --copper-bright: #e08b47;/* copper on dark backgrounds */
  --copper-deep:#a5581f;   /* copper on light backgrounds (contrast) */

  --t-dark:     #f2ede2;   /* text on ink */
  --t-dark-mut: #a9b4c0;   /* muted text on ink */
  --t-light:    #16222f;   /* text on paper */
  --t-light-mut:#54606c;   /* muted text on paper */

  --line-dark:  rgba(242, 237, 226, 0.14);
  --line-light: rgba(12, 21, 32, 0.16);

  /* type */
  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono:  "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* scale */
  --w: min(1220px, 92vw);
  --w-wide: min(1360px, 94vw);
  --gap: clamp(1rem, 2.5vw, 2rem);
  --sec-pad: clamp(4.5rem, 10vw, 8.5rem);
  --r: 2px;                /* drafted corners: nearly sharp */

  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --shadow: 0 24px 60px -24px rgba(12, 21, 32, 0.45);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--t-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.05; font-weight: 420; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

::selection { background: var(--copper); color: var(--paper); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-padding-top: 96px; }
}

/* thin drafted scrollbar */
html { scrollbar-color: var(--copper) var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--copper); border: 2px solid var(--ink); }

/* focus */
:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 3px;
  border-radius: var(--r);
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--copper); color: var(--ink);
  font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.7rem 1.1rem; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible { top: 1rem; }

/* phone links demoted to plain text on desktop (JS removes the href) —
   hover states pinned to the resting appearance */
a.is-static { cursor: text; }
.nav__phone.is-static:hover { border-color: var(--line-dark); color: var(--t-dark); }
.cta__phone.is-static:hover { border-color: rgba(12, 21, 32, 0.35); }
.footer__contact a.is-static:hover,
.ccard a.big.is-static:hover { color: var(--t-dark); }
.menu__contact a.is-static:hover { color: var(--t-dark-mut); }
.arrow-link.is-static:hover svg { transform: none; }

/* ============================================================
   utilities
   ============================================================ */
.container { width: var(--w); margin-inline: auto; }
.container--wide { width: var(--w-wide); margin-inline: auto; }

.sec { padding-block: var(--sec-pad); position: relative; }
.sec--dark { background: var(--ink); color: var(--t-dark); }
.sec--dark ::selection { background: var(--copper-bright); color: var(--ink); }

/* blueprint grid — fine 30px lines with a major line every 150px */
.bp-grid { position: relative; isolation: isolate; }
.bp-grid::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(126, 169, 216, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(126, 169, 216, 0.055) 1px, transparent 1px),
    linear-gradient(to right,  rgba(126, 169, 216, 0.1)  1px, transparent 1px),
    linear-gradient(to bottom, rgba(126, 169, 216, 0.1)  1px, transparent 1px);
  background-size: 30px 30px, 30px 30px, 150px 150px, 150px 150px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 90%);
}
.bp-grid--light::before {
  background-image:
    linear-gradient(to right,  rgba(12, 21, 32, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 21, 32, 0.045) 1px, transparent 1px),
    linear-gradient(to right,  rgba(12, 21, 32, 0.08)  1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 21, 32, 0.08)  1px, transparent 1px);
}

/* tape-measure tick strip between sections */
.ticks {
  height: 18px;
  background-image:
    repeating-linear-gradient(to right,
      var(--line-light) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(to right,
      var(--line-light) 0 1px, transparent 1px 60px);
  background-size: auto 8px, auto 18px;
  background-repeat: repeat-x;
  background-position: bottom left, bottom left;
}
.ticks--dark {
  background-image:
    repeating-linear-gradient(to right,
      var(--line-dark) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(to right,
      var(--line-dark) 0 1px, transparent 1px 60px);
}

/* mono spec kicker:  [ 01 — CAPABILITIES ] */
.kicker {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.sec--dark .kicker { color: var(--copper-bright); }
.kicker::after {
  content: ""; height: 1px; flex: 0 1 220px;
  background: currentColor; opacity: 0.5;
}
.kicker__idx { opacity: 0.55; white-space: nowrap; }

/* display headings */
.display {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  font-weight: 460;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.display em {
  font-style: italic; font-weight: 420;
  color: var(--copper-deep);
}
.sec--dark .display em { color: var(--copper-bright); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--t-light-mut);
  max-width: 56ch;
}
.sec--dark .lede { color: var(--t-dark-mut); }

/* section header row: heading left, lede right */
.sec-head {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--gap); align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
@media (max-width: 860px) {
  .sec-head { grid-template-columns: 1fr; }
}

/* mono microcopy */
.micro {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--t-light-mut);
}
.sec--dark .micro { color: var(--t-dark-mut); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--copper);
  --btn-fg: #10161d;
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--mono); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05rem 1.6rem; border: 1px solid transparent; border-radius: var(--r);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.btn .btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(201, 111, 46, 0.55);
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--t-dark);
  border-color: var(--line-dark);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--copper-bright); color: var(--copper-bright);
  box-shadow: none;
}
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--t-light);
  border-color: var(--line-light);
}
.btn--ghost-light:hover, .btn--ghost-light:focus-visible {
  border-color: var(--copper-deep); color: var(--copper-deep); box-shadow: none;
}
.btn--ink {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
}
.btn--ink:hover { box-shadow: 0 14px 30px -12px rgba(12, 21, 32, 0.6); }

/* text-arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  color: var(--copper-deep); font-weight: 500;
}
.sec--dark .arrow-link { color: var(--copper-bright); }
.arrow-link svg { transition: transform 0.25s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* crop-mark corners (drafting registration marks) */
.crop { position: relative; }
.crop i {
  position: absolute; width: 14px; height: 14px; pointer-events: none;
  border-color: currentColor; border-style: solid; border-width: 0;
  opacity: 0.6; transition: opacity 0.3s var(--ease);
}
.crop i:nth-child(1) { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.crop i:nth-child(2) { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.crop i:nth-child(3) { bottom: -1px; left: -1px; border-bottom-width: 1px; border-left-width: 1px; }
.crop i:nth-child(4) { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }
.crop:hover i { opacity: 1; }

/* scroll reveal — gated on <html class="js"> so no-JS renders fully */
.js .rv { opacity: 0; transform: translateY(26px); }
.js .rv.in-view {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js .rv-d1.in-view { transition-delay: 0.08s; }
.js .rv-d2.in-view { transition-delay: 0.16s; }
.js .rv-d3.in-view { transition-delay: 0.24s; }
.js .rv-d4.in-view { transition-delay: 0.32s; }

/* ============================================================
   navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--t-dark);
}
.nav.is-scrolled,
.nav.is-solid {
  background: rgba(12, 21, 32, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav__inner {
  width: var(--w-wide); margin-inline: auto;
  display: flex; align-items: center; gap: 1.6rem;
  padding-block: 0.9rem;
}

.brand {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; margin-right: auto;
}
.brand__mark { width: auto; height: 46px; flex: none; }
.brand__text { line-height: 1.05; display: grid; }
.brand__script {
  font-family: var(--serif); font-style: italic; font-weight: 560;
  font-size: 1.5rem; color: var(--copper-bright); letter-spacing: 0.01em;
}
.brand__rest {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--t-dark-mut);
  margin-top: 0.18rem;
}

.nav__links {
  display: flex; align-items: center; gap: 1.7rem; list-style: none;
  padding: 0;
}
.nav__links a {
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  color: var(--t-dark-mut); padding-block: 0.4rem; position: relative;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--copper-bright);
  transition: right 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current] { color: var(--t-dark); }
.nav__links a:hover::after, .nav__links a[aria-current]::after { right: 0; }

.nav__phone {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em;
  text-decoration: none; color: var(--t-dark);
  padding: 0.65rem 0.9rem; border: 1px solid var(--line-dark);
  border-radius: var(--r);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__phone:hover { border-color: var(--copper-bright); color: var(--copper-bright); }
.nav__cta { padding: 0.72rem 1.15rem; }

.nav__burger {
  display: none; background: none; border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: 0.72rem 0.66rem; cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--t-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
  .brand__mark { height: 40px; }
}

/* fullscreen menu */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--t-dark);
  display: grid; align-content: center; justify-items: start;
  padding: 6rem clamp(1.5rem, 8vw, 6rem) 3rem;
  visibility: hidden; opacity: 0; transition: opacity 0.35s var(--ease), visibility 0s 0.35s;
}
.menu.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
.menu__link {
  font-family: var(--serif); font-weight: 460;
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  color: var(--t-dark); text-decoration: none; line-height: 1.25;
  display: flex; align-items: baseline; gap: 1.2rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s var(--ease);
}
.menu.is-open .menu__link { opacity: 1; transform: none; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 0.05s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 0.1s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 0.15s; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: 0.2s; }
.menu.is-open .menu__link:nth-child(6) { transition-delay: 0.25s; }
.menu__link:hover { color: var(--copper-bright); }
.menu__link .micro { font-size: 0.72rem; color: var(--copper-bright); }
.menu__contact {
  margin-top: 3rem; display: grid; gap: 0.5rem;
  opacity: 0; transition: opacity 0.5s var(--ease) 0.3s;
}
.menu.is-open .menu__contact { opacity: 1; }
.menu__contact a {
  font-family: var(--mono); font-size: 1rem; letter-spacing: 0.08em;
  color: var(--t-dark-mut); text-decoration: none;
}
.menu__contact a:hover { color: var(--copper-bright); }
body.menu-open { overflow: hidden; }

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-rows: 1fr auto;
  background: var(--ink); color: var(--t-dark);
  overflow: clip; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__media img { animation: heroZoom 16s var(--ease) forwards; }
  @keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
}
.hero__scrim { position: absolute; inset: 0; z-index: -1; }
.hero__scrim::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(12, 21, 32, 0.96) 22%, rgba(12, 21, 32, 0.72) 46%, rgba(12, 21, 32, 0.22) 78%),
    linear-gradient(to top, rgba(12, 21, 32, 0.94) 4%, transparent 38%),
    linear-gradient(to bottom, rgba(12, 21, 32, 0.6) 0%, transparent 24%);
}
.hero__scrim::after {  /* blueprint grid over the scrim */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right,  rgba(126, 169, 216, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(126, 169, 216, 0.07) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(78deg, #000 30%, transparent 75%);
  -webkit-mask-image: linear-gradient(78deg, #000 30%, transparent 75%);
}

.hero__inner {
  width: var(--w-wide); margin-inline: auto;
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  display: grid; align-content: center;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--copper-bright);
  margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
}
.hero__kicker::before { content: ""; width: 42px; height: 1px; background: var(--copper-bright); }

.hero h1 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(2.9rem, 7.6vw, 6.4rem);
  line-height: 0.98; letter-spacing: -0.02em; text-wrap: balance;
  max-width: 12ch;
}
.hero h1 em { font-style: italic; font-weight: 420; color: var(--copper-bright); }

.hero__lede {
  margin-top: clamp(1.4rem, 3vh, 2rem);
  max-width: 52ch; font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65; color: var(--t-dark-mut);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: clamp(1.8rem, 4vh, 2.6rem); }

.hero__scroll {
  position: absolute; right: clamp(1rem, 3vw, 2.6rem); bottom: 9.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--t-dark-mut);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 64px;
  background: linear-gradient(var(--copper-bright), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll::after { animation: drip 2.2s var(--ease) infinite; }
  @keyframes drip {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

.hero__stats {
  border-top: 1px solid var(--line-dark);
  background: rgba(12, 21, 32, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero__stats-grid {
  width: var(--w-wide); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 1.4rem 1.6rem 1.5rem 0; display: grid; gap: 0.3rem;
}
.stat + .stat { padding-left: 1.6rem; border-left: 1px solid var(--line-dark); }
.stat__num {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 480; color: var(--t-dark); line-height: 1;
}
.stat__num sup { font-size: 0.55em; color: var(--copper-bright); }
.stat__label {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--t-dark-mut);
}
@media (max-width: 900px) {
  .hero__stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.1rem 1rem 1.1rem 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
}
@media (max-width: 640px) {
  /* license numbers are unbreakable strings — a 2-col grid overflows,
     so each stat becomes its own slim ledger row */
  .hero__stats-grid { grid-template-columns: 1fr; }
  .stat, .stat + .stat {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 1rem; padding: 0.7rem 0; border-left: 0;
  }
  .stat + .stat { border-top: 1px solid var(--line-dark); }
  .stat__num { font-size: 1.1rem; }
  .stat__label { text-align: right; flex: none; }
}
@media (max-width: 700px) {
  /* bias the crop toward the lit mirror and sconces on narrow screens */
  .hero__media img { object-position: 66% 45%; }
}
@media (max-width: 560px) {
  .hero__kicker { font-size: 0.66rem; letter-spacing: 0.18em; gap: 0.7rem; }
  .hero__kicker::before { width: 26px; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
  .cta__row .btn, .form .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   marquee
   ============================================================ */
.marquee {
  background: var(--copper); color: #131313;
  overflow: hidden; padding-block: 0.95rem;
  border-block: 1px solid rgba(12, 21, 32, 0.35);
}
.marquee__track {
  display: flex; gap: 2.6rem; width: max-content;
  font-family: var(--mono); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 36s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}
.marquee__track span { display: inline-flex; align-items: center; gap: 2.6rem; }
.marquee__track span::after { content: "◆"; font-size: 0.6em; opacity: 0.65; }

/* ============================================================
   services
   ============================================================ */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
@media (max-width: 980px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  min-height: 300px; display: flex; flex-direction: column; gap: 0.9rem;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.card::before {  /* copper hairline that draws itself */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--copper); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { background: var(--paper-2); }

.card__idx {
  position: absolute; top: 0.9rem; right: 1.2rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(3.4rem, 6vw, 4.6rem); font-weight: 460; line-height: 1;
  color: rgba(12, 21, 32, 0.07);
  transition: color 0.35s var(--ease);
}
.card:hover .card__idx { color: rgba(201, 111, 46, 0.22); }

.card__icon { width: 30px; height: 30px; color: var(--copper-deep); }
.card h3 {
  font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 500; letter-spacing: -0.01em;
}
.card p { font-size: 0.95rem; color: var(--t-light-mut); max-width: 34ch; }
.card .arrow-link { margin-top: auto; padding-top: 1rem; }

/* ============================================================
   before / after
   ============================================================ */
.ba-wrap { display: grid; gap: 1.2rem; }
.ba {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--line-dark);
  touch-action: pan-y; cursor: ew-resize; user-select: none;
  --pos: 50%;
}
@media (max-width: 640px) { .ba { aspect-ratio: 4 / 4.4; } }
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--pos)); }
.ba__label {
  position: absolute; top: 1rem; z-index: 3;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  background: rgba(12, 21, 32, 0.78); color: var(--t-dark);
  padding: 0.45rem 0.8rem; border: 1px solid var(--line-dark);
  pointer-events: none;
}
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; background: var(--copper); color: #131313; border-color: transparent; }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 2;
  width: 0; pointer-events: none;
}
.ba__handle::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -1px; width: 2px;
  background: var(--paper);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.55);
}
.ba__bubble {  /* spirit-level vial as the grip */
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 84px; height: 34px; border-radius: 17px;
  background: rgba(12, 21, 32, 0.88);
  border: 1px solid var(--copper-bright);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: grid; place-items: center; overflow: hidden;
}
.ba__bubble::before,   /* vial guide lines */
.ba__bubble::after {
  content: ""; position: absolute; top: 5px; bottom: 5px; width: 1px;
  background: var(--copper-bright); opacity: 0.85;
}
.ba__bubble::before { left: 32px; }
.ba__bubble::after { right: 32px; }
.ba__bubble b {
  width: 15px; height: 15px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #ffe9b0, #e0b23f 58%, #9c6d12);
  transform: translateX(var(--drift, 0px));
  transition: transform 0.18s var(--ease);
}
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba:has(input:focus-visible) { outline: 2px solid var(--copper-bright); outline-offset: 3px; }

.ba-cap {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  align-items: baseline;
}
.ba-cap .micro { color: var(--copper-bright); }

/* ============================================================
   featured work (editorial grid)
   ============================================================ */
.work {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  --work-h: clamp(230px, 23vw, 300px);  /* one tile height for the whole mosaic */
}
.work__item {
  position: relative; display: block; text-decoration: none; color: inherit;
  min-width: 0;
}
.work__frame {
  position: relative; display: block; overflow: hidden; border-radius: var(--r);
  background: var(--paper-3); border: 1px solid var(--line-light);
  height: var(--work-h);
}
.work__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.work__item:hover .work__frame img { transform: scale(1.05); }
.work__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 2.4rem 0.95rem 0.75rem;
  background: linear-gradient(transparent, rgba(12, 21, 32, 0.82));
  color: var(--t-dark);
}
.work__title {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 500;
  letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.work__meta .micro { color: var(--copper-bright); flex: none; }

/* mosaic: one tall accent tile, everything else one unit high.
   The accent frame is absolutely positioned so its image can't inflate
   the spanned rows — the short tiles alone set the row height. */
.work__item--a { grid-column: span 4; grid-row: 1 / span 2; }
.work__item--a .work__frame { position: absolute; inset: 0; height: auto; }
.work__item--a .work__frame img { object-position: 50% 62%; }
.work__item--b { grid-column: span 5; }
.work__item--c { grid-column: span 3; }
.work__item--d { grid-column: span 3; }
.work__item--d .work__frame img { object-position: 50% 35%; }
.work__item--e { grid-column: span 5; }

@media (max-width: 860px) {
  .work { grid-template-columns: 1fr 1fr; gap: 10px; }
  .work__item, .work__item--a { grid-column: auto; grid-row: auto; }
  .work__item--a .work__frame { position: relative; inset: auto; height: var(--work-h); }
}
@media (max-width: 540px) {
  .work { grid-template-columns: 1fr; }
  .work__frame { height: clamp(210px, 56vw, 260px) !important; }
}
.work-cta { display: flex; justify-content: center; margin-top: clamp(2.5rem, 6vw, 4rem); }

/* ============================================================
   process
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line-light);
  padding-top: 2.2rem; position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; display: grid; gap: 0.8rem; align-content: start; }
.step::before {  /* tick on the shared rule */
  content: ""; position: absolute; top: -2.2rem; left: 0;
  width: 1px; height: 14px; background: var(--copper-deep);
}
.step__num {
  font-family: var(--serif); font-style: italic; font-size: 3.2rem;
  font-weight: 420; line-height: 1; color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--copper-deep);
  transition: -webkit-text-fill-color 0.4s var(--ease);
}
.step:hover .step__num { -webkit-text-fill-color: var(--copper-deep); }
.step h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.step p { font-size: 0.95rem; color: var(--t-light-mut); }

/* ============================================================
   about / title block
   ============================================================ */
.about {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about__body p { color: var(--t-dark-mut); max-width: 56ch; }
.about__body p + p { margin-top: 1.1rem; }
.about__body .display { margin-bottom: 1.6rem; }

/* drafting-style title block */
.titleblock {
  font-family: var(--mono); border: 1px solid var(--line-dark);
  background: var(--ink-2); color: var(--t-dark);
  box-shadow: var(--shadow);
}
.titleblock__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--line-dark);
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--copper-bright);
}
.titleblock__head span:last-child { color: var(--t-dark-mut); }
.titleblock__row {
  display: grid; grid-template-columns: 34% 1fr;
  border-bottom: 1px solid var(--line-dark);
}
.titleblock__row:last-child { border-bottom: 0; }
.titleblock__row dt {
  padding: 0.85rem 1.2rem; font-size: 0.64rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--t-dark-mut);
  border-right: 1px solid var(--line-dark);
  display: flex; align-items: center;
}
.titleblock__row dd {
  padding: 0.85rem 1.2rem; font-size: 0.86rem; letter-spacing: 0.04em;
}
.titleblock__row dd .sig {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  color: var(--copper-bright); letter-spacing: 0;
}

/* ============================================================
   service area
   ============================================================ */
.area {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}
@media (max-width: 800px) { .area { grid-template-columns: 1fr; } }
.area__col h3 {
  font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper-bright);
  padding-bottom: 0.9rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: baseline;
}
.area__col h3 span { color: var(--t-dark-mut); font-size: 0.66rem; letter-spacing: 0.1em; }
.area__col ul {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1rem;
}
.area__col li {
  font-size: 0.95rem; color: var(--t-dark-mut);
  display: flex; align-items: center; gap: 0.55rem;
}
.area__col li::before {
  content: ""; width: 4px; height: 4px; background: var(--copper-bright);
  transform: rotate(45deg); flex: none;
}
.area__note { margin-top: 2.4rem; }

/* fine print strip */
.fine {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark);
  margin-top: clamp(3rem, 7vw, 5rem);
}
@media (max-width: 900px) { .fine { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fine { grid-template-columns: 1fr; } }
.fine__item { background: var(--ink); padding: 1.5rem 1.4rem; display: grid; gap: 0.45rem; }
.fine__item strong {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-bright);
}
.fine__item span { font-size: 0.92rem; color: var(--t-dark-mut); }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  background: var(--copper); color: #131313;
  position: relative; overflow: clip;
}
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(12, 21, 32, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 21, 32, 0.07) 1px, transparent 1px);
  background-size: 120px 120px;
}
.cta__inner {
  width: var(--w); margin-inline: auto;
  padding-block: clamp(4rem, 9vw, 7rem);
  display: grid; gap: 2.2rem; position: relative;
}
.cta h2 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  letter-spacing: -0.02em; line-height: 1.02; text-wrap: balance; max-width: 20ch;
}
.cta h2 em { font-style: italic; font-weight: 420; }
.cta__row {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.6rem; align-items: center;
}
.cta__phone {
  font-family: var(--mono); font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 500; letter-spacing: 0.06em; text-decoration: none; color: #131313;
  display: inline-flex; align-items: baseline; gap: 0.7rem;
  border-bottom: 2px solid rgba(12, 21, 32, 0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.25s var(--ease);
}
.cta__phone:hover { border-color: #131313; }
.cta__phone .micro { color: rgba(12, 21, 32, 0.65); }
.cta .micro { color: rgba(12, 21, 32, 0.65); }

/* ============================================================
   footer
   ============================================================ */
.footer {
  background: var(--ink); color: var(--t-dark);
  position: relative; overflow: clip; isolation: isolate;
}
.footer__ghost {
  position: absolute; left: 50%; bottom: -0.14em; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 560; white-space: nowrap;
  font-size: clamp(5rem, 14vw, 13rem); line-height: 1; z-index: -1;
  color: transparent; -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 226, 0.07);
  pointer-events: none; user-select: none;
}
.footer__inner {
  width: var(--w); margin-inline: auto;
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 7rem;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr; padding-bottom: 5rem; } }
.footer h3 {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper-bright);
  margin-bottom: 1.2rem;
}
.footer__brand p { color: var(--t-dark-mut); max-width: 34ch; margin-top: 1.2rem; font-size: 0.95rem; }
.footer__nav ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer__nav a {
  text-decoration: none; color: var(--t-dark-mut); font-size: 0.98rem;
  transition: color 0.25s var(--ease);
}
.footer__nav a:hover { color: var(--copper-bright); }
.footer__contact ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer__contact a {
  font-family: var(--mono); font-size: 0.92rem; letter-spacing: 0.05em;
  color: var(--t-dark); text-decoration: none;
}
.footer__contact a:hover { color: var(--copper-bright); }
.footer__contact .micro { display: block; margin-bottom: 0.15rem; }
.footer__bar { border-top: 1px solid var(--line-dark); }
.footer__bar-inner {
  width: var(--w); margin-inline: auto;
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem;
  justify-content: space-between;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t-dark-mut);
}
.footer__bar-inner a { color: inherit; text-decoration: none; }
.footer__bar-inner a:hover { color: var(--copper-bright); }

/* ============================================================
   interior pages (photos / contact)
   ============================================================ */
.page-hero {
  background: var(--ink); color: var(--t-dark);
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: clamp(2.6rem, 6vw, 4.2rem);
  position: relative; overflow: clip;
}
.page-hero .display { max-width: 16ch; }
.page-hero .lede { margin-top: 1.4rem; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }
.chip {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: var(--t-dark-mut);
  border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 0.6rem 1.1rem; cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
              background 0.25s var(--ease);
}
.chip:hover { color: var(--t-dark); border-color: var(--t-dark-mut); }
.chip[aria-pressed="true"] {
  background: var(--copper); border-color: var(--copper); color: #131313;
}

/* gallery */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
}
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } }
.shot {
  position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line-light); background: var(--paper-3);
  cursor: zoom-in; padding: 0; text-align: left; display: block; width: 100%;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.1;
  transition: transform 0.9s var(--ease);
}
.shot--tall img { aspect-ratio: 3 / 3.9; }
.shot:hover img { transform: scale(1.045); }
.shot figcaption, .shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(12, 21, 32, 0.82));
  color: var(--t-dark);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.shot:hover .shot__cap, .shot:focus-visible .shot__cap { opacity: 1; transform: none; }
.shot__tag { color: var(--copper-bright); }
.js .shot.is-hidden { display: none; }

/* lightbox */
.lightbox {
  border: 0; padding: 0; background: transparent;
  width: min(1200px, 94vw); max-width: none;
  margin: auto; /* the global reset removes the dialog's native centering */
}
.lightbox::backdrop { background: rgba(8, 14, 22, 0.93); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox__inner { display: grid; gap: 0.9rem; }
.lightbox img {
  width: 100%; max-height: 82svh; object-fit: contain;
  border: 1px solid var(--line-dark); background: var(--ink);
}
.lightbox__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--t-dark);
}
.lightbox__cap { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--t-dark-mut); }
.lightbox__btns { display: flex; gap: 0.5rem; }
.lightbox__btns button {
  background: var(--ink-2); border: 1px solid var(--line-dark); color: var(--t-dark);
  width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
  border-radius: var(--r); transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.lightbox__btns button:hover { border-color: var(--copper-bright); color: var(--copper-bright); }

/* ============================================================
   contact page
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cardset { display: grid; gap: 1rem; }
.ccard {
  border: 1px solid var(--line-dark); background: var(--ink-2);
  padding: 1.4rem 1.5rem; display: grid; gap: 0.4rem;
}
.ccard .micro { color: var(--copper-bright); }
.ccard a.big {
  font-family: var(--mono); font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: 0.04em; color: var(--t-dark); text-decoration: none;
}
.ccard a.big:hover { color: var(--copper-bright); }
.ccard p { font-size: 0.9rem; color: var(--t-dark-mut); }

/* form */
.form {
  background: var(--paper); color: var(--t-light);
  border: 1px solid var(--line-light);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  display: grid; gap: 1.3rem;
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-light-mut);
}
.field label b { color: var(--copper-deep); font-weight: 500; }
.field input, .field select, .field textarea {
  background: #fbf8f2; border: 1px solid var(--line-light); border-radius: var(--r);
  padding: 0.85rem 0.95rem; font-size: 1rem; width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper-deep);
  box-shadow: 0 0 0 3px rgba(201, 111, 46, 0.18);
}
.form__foot { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; justify-content: space-between; }
.form__status { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--copper-deep); max-width: 42ch; }

/* ============================================================
   404
   ============================================================ */
.err {
  min-height: 100svh; display: grid; place-content: center; text-align: center;
  background: var(--ink); color: var(--t-dark); padding: 2rem; gap: 1.4rem;
}
.err__code {
  font-family: var(--serif); font-size: clamp(6rem, 22vw, 15rem); line-height: 1;
  color: transparent; -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--copper-bright); font-weight: 560;
}
.err h1 { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 460; }
.err p { color: var(--t-dark-mut); }
.err .btn { justify-self: center; }

/* ============================================================
   motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .rv { opacity: 1; transform: none; }
}
