/* ============================
   EZ Maintenance Styles (Cobalt/Charcoal)
   ============================ */
:root {
  --bg: #0c0f14; /* charcoal with blue hint */
  --surface: rgba(20, 24, 31, 0.6); /* glassy overlay */
  --text: #e9edf3; /* off-white */
  --muted: #b3bdc9; /* cool gray */
  --brand: #4ea3ff; /* cobalt/azure (primary) */
  --brand-ink: #0a1b2e; /* dark navy for text on brand */
  --accent: #f59e0b; /* warm amber accent for script */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --container-pad: clamp(12px, 2.5vw, 24px);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: calc(var(--header-offset, 80px) + 8px);
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    Helvetica, sans-serif;
  color: var(--text);
  background: #0b0f15; /* deeper charcoal */
  line-height: 1.5;
}


/* =========================
   Global Buttons (Gold + Black Outline on Hover)
   ========================= */

/* Theme tokens (tweak as needed) */
:root{
  --btn-gold: #ffd166;
  --btn-ink:  #2f2310;
}

/* Base: covers <button>, <a class="btn">, <input type="submit">, etc. */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a.btn,
.btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;

  padding: .65rem 1rem;
  border-radius: 999px;
  border: 2px solid transparent;

  background: var(--btn-gold);
  color: var(--btn-ink);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;

  transition: border-color .15s ease, transform .08s ease;
  min-height: 40px; /* comfy target */
}

/* Hover: only add a black outline; keep gold fill */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
a.btn:hover,
.btn:hover {
  border-color: #000;           /* black outline */
}

/* Focus: accessible, clear ring */
button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
a.btn:focus-visible,
.btn:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Active: tiny press feedback */
button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
a.btn:active,
.btn:active {
  transform: translateY(1px);
}

/* Disabled */
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
.btn[aria-disabled="true"],
a.btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Size helpers (optional) */
.btn-sm,
a.btn.btn-sm {
  padding: .5rem .8rem;
  min-height: 36px;
  font-weight: 600;
}

.btn-lg,
a.btn.btn-lg {
  padding: .8rem 1.2rem;
  min-height: 46px;
  font-weight: 800;
}

/* Block (full width) */
.btn-block,
a.btn.btn-block {
  width: 100%;
}

/* Ghost variant (transparent by default; hover gets same black outline) */
.btn-ghost,
a.btn.btn-ghost {
  background: transparent;
  color: var(--btn-ink);
  border-color: transparent;
}
.btn-ghost:hover,
a.btn.btn-ghost:hover {
  border-color: #000;  /* black outline on hover */
}


/* Visible Secondary (light button with strong contrast) */
.btn-secondary,
a.btn.btn-secondary {
  background: #ffffff;
  color: #0b1219;
  border: 2px solid #000;     /* clearly visible at rest */
}
.btn-secondary:hover,
a.btn.btn-secondary:hover {
  /* keep it clean—no fill change, outline already visible via border */
  filter: brightness(1.02);
}


img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1200px, 94%);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  z-index: 9999;
}

/* ========= Header (light, compact, 150px logo without negative margins) ========= */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:40;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
  color:#0b1219;
  backdrop-filter:saturate(120%) blur(8px);
  transition:background .25s ease, box-shadow .25s ease, transform .25s ease;
  padding-top: env(safe-area-inset-top);
  overflow:visible; /* allow visual overhang of the logo */
}
.site-header.scrolled{
  background:rgba(255,255,255,.98);
  box-shadow:0 6px 24px rgba(0,0,0,.08);
}

/* Compact row */
.nav-row{
  --navH: 82px;                 /* compact bar height */
  display:flex; align-items:center; gap:.6rem;
  padding:.2rem 0;
  min-height:var(--navH);
}

/* Brand: reserve width, keep height to nav height, absolutely place logo */
.brand{
  position:relative;
  display:flex; align-items:center;
  gap:.6rem;
  height:var(--navH);          /* keeps header compact */
  min-width:190px;             /* space so nav doesn’t collide with logo */
}

/* Logo: full 150px centered vertically; does not grow header */
.brand-logo{
  position:absolute; left:0; top:50%;
  transform:translateY(-50%);
  height:150px; width:auto; display:block;
}

/* Desktop nav tighter to fit beside the big logo */
.nav-desktop{ margin-left:auto; }
.nav-list{
  display:flex; gap:.85rem; list-style:none; padding:0; margin:0;
}
.nav-list a{
  font-size:1rem; line-height:1;
  color:#0e1620; opacity:.9;
  transition:opacity .15s ease, color .15s ease;
}
.nav-list a:hover{ opacity:1; color:#000; }

/* Desktop CTA (compact) */
.nav-cta{ margin-left:.5rem; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.44rem .75rem; border-radius:999px; border:1px solid transparent;
  font-weight:600; min-height:36px;
  transition:transform .12s ease, background .2s ease, border-color .2s ease, filter .2s ease;
}
.btn-cta{ background:#ffd166; color:#2f2310; }

/* Subtle divider under white header */
.site-header::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(0,0,0,.06), transparent);
}

/* ========================
   Mobile pill toggle (clean)
   ======================== */
#navToggle.hamburger{
  display:none !important;                 /* shown below ≤1024px */
  background:transparent !important;
  border:2px solid var(--cta, #ffd166);    /* yellow outline */
  border-radius:999px;
  min-height:42px; min-width:60px;
  padding:8px 14px;
  box-shadow:none !important;
  position:relative; z-index:65;
  line-height:0; cursor:pointer;
  -webkit-appearance:none; appearance:none;

  display:inline-flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
}
#navToggle.hamburger .bar{
  width:22px; height:2px;
  background:#0b1219;                      /* dark bars vs light header */
  border-radius:2px; opacity:1 !important; transform:none !important;
}
#navToggle.hamburger:hover{ background:rgba(255,209,102,.08) !important; }
#navToggle.hamburger:active{ transform:translateY(1px); }
#navToggle.hamburger:focus-visible{
  outline:3px solid rgba(255,209,102,.6); outline-offset:2px;
}
#navToggle[aria-expanded="true"] .bar{ transform:none !important; opacity:1 !important; }

/* ========================
   Drawer / Scrim
   ======================== */
.scrim{
  position:fixed; inset:0; background:rgba(0,0,0,.75); backdrop-filter:blur(2px);
  z-index:80; opacity:0; visibility:hidden; transition:opacity .2s ease;
}
.scrim.active{ opacity:1; visibility:visible; }

.drawer{
  position:fixed; top:0; right:0; left:0; width:100vw; height:auto; max-height:100vh; overflow-y:auto;
  background:#0a0f17 !important; color:var(--text, #e8eef6); z-index:90;
  transform:translateX(100%); transition:transform .25s ease;
  display:flex; flex-direction:column; padding-bottom: env(safe-area-inset-bottom);
}
.drawer.open{ transform:translateX(0); }

/* Drawer header: sticky, readable, no logo */
.drawer-header{
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: max(1rem, env(safe-area-inset-top)) 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0a0f17; /* matches drawer bg for seamless stickiness */
  color: #fff;
}

/* Title styling */
.drawer-title{
  font-size: 1rem; font-weight: 700; letter-spacing: .01em;
  line-height: 1; user-select: none;
}

/* Close button: big target, clean focus, hover */
.icon-btn{
  background: transparent; border: 0; color: #fff; cursor: pointer;
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px; /* 44px min touch target */
  transition: background .15s ease, transform .12s ease;
}
.icon-btn:hover{ background: rgba(255,255,255,.08); }
.icon-btn:active{ transform: translateY(1px); }
.icon-btn:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255,209,102,.6); /* yellow focus ring to match brand CTA */
}

/* Slightly bolder “X” for legibility on dark bg */
.icon-btn--close span{ font-size: 1.15rem; line-height: 1; }

/* Keep footer logo nicely separated */
.drawer-footer{
  padding: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}
.drawer-footer .drawer-brand{
  display: grid; place-items: center; padding-top: .75rem; opacity: .9;
}
.drawer-footer .drawer-brand .brand-logo--drawer{ height: 40px; }

/* Motion sensitivity */
@media (prefers-reduced-motion: reduce){
  .icon-btn{ transition: none !important; }
}


/* Links stack and scroll if needed */
.drawer-body{
  display:flex; flex-direction:column; padding:1rem; gap:.25rem;
  background:transparent !important; flex:1 1 auto; /* pushes footer to bottom */
}
.drawer-link{ padding:.9rem 1rem; border-radius:.8rem; opacity:.95; color:#e8eef6; min-height:44px; }
.drawer-link:hover{ background:rgba(255,255,255,.08); opacity:1; }

/* Footer stays at bottom; contains CTA + small logo */
.drawer-footer{
  padding:1rem; border-top:1px solid rgba(255,255,255,.08);
}
.drawer-footer .drawer-brand{
  display:grid; place-items:center; padding-top:.75rem; opacity:.9;
}
.brand-logo--drawer{ height:40px; width:auto; display:block; }

/* ========================
   Responsive
   ======================== */
@media (max-width:1024px){
  #navToggle.hamburger{ display:inline-flex !important; }
  .nav-desktop{ display:none !important; }
  .nav-cta{ display:none !important; }
  .nav-row > #navToggle{ margin-left:auto; } /* push toggle to right on mobile */
}

@media (max-width:560px){
  .nav-row{ --navH: 54px; }
  .brand{ min-width:160px; }
  /* keep 150px; if it crowds, set 130–140px here instead */
  .brand-logo{ height:150px; }
}

/* Screen-reader helper */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
/* Slightly smaller logo on small phones */
@media (max-width: 560px){
  .brand-logo{
    height: 106px;      /* was 150px */
    max-height: 140px;  /* gentle cap */
  }
  .brand{ min-width: 150px; } /* keep nav from colliding */
}


/* =========================
   HERO — Showcase (filmstrip)
   ========================= */
.hero-showcase {
  position: relative;
  min-height: clamp(560px, 70vh, 740px);
  display: grid;
  align-content: end;
  overflow: hidden;
  background: #0a0f17; /* fallback behind image */
}

/* Background image + gradients */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(105%) contrast(1.05) brightness(0.92);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0) 70%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: 1rem;
  padding: clamp(16px, 3vw, 24px) 0;
}

.hero-left {
  padding: 0 0 clamp(16px, 2.5vw, 22px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* Big condensed title look */
.hero-title {
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 1.3rem + 4vw, 4rem);
  margin: 0 0 0.6rem;
}
.hero-title span {
  display: inline-block;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent, #f2592a);
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.2rem;
}
.hero-link:hover {
  filter: brightness(1.08);
}

/* Right arrows */
.hero-arrows {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
  padding: 0 clamp(8px, 1vw, 12px) clamp(10px, 1.2vw, 16px) 0;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.12s ease, background 0.2s ease;
}
.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

/* ===== HERO Filmstrip — larger, touching thumbnails ===== */

/* Container: no gap, soft radius, hidden scrollbar */
.hero-strip {
  position: relative;
  z-index: 2;
  display: flex; /* row */
  gap: 0; /* NO spacing between items */
  overflow-x: auto;
  padding: 0; /* edge-to-edge thumbs */
  background: rgba(0, 0, 0, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  scrollbar-width: none;
}
.hero-strip::-webkit-scrollbar {
  display: none;
}

/* Thumbnails: larger, “touching”, subtle divider between */
.strip-item {
  --w: 176px; /* bigger desktop thumbs */
  --h: 108px;
  flex: 0 0 auto;
  width: var(--w);
  height: var(--h);
  position: relative;
  border: 0; /* no card border */
  border-radius: 0; /* tiles meet flush */
  overflow: hidden;
  background: #0f1115;
  cursor: pointer;
}

/* thin separator line only between neighbors (keeps “touching” feel) */
.strip-item + .strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* image fill + tiny zoom on hover/focus */
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: brightness(0.96);
}
.strip-item:is(:hover, :focus) img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* active state: brand outline glow without changing layout */
.strip-item.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px var(--brand, #4ea3ff),
    0 0 0 1px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  pointer-events: none;
}

/* Arrows row can stay as-is; if you want tighter alignment: */
.hero-arrows {
  padding: 8px clamp(12px, 2vw, 18px);
}

/* Responsive sizes: still large on phones */
@media (max-width: 1024px) {
  .strip-item {
    --w: 152px;
    --h: 94px;
  }
}
@media (max-width: 720px) {
  .strip-item {
    --w: 132px;
    --h: 82px;
  }
}

/* ===== HERO Zoom-out (kept) ===== */
.hero-showcase {
  --hero-zoom: 0.92;
}
@media (max-width: 720px) {
  .hero-showcase {
    --hero-zoom: 0.88;
  }
}
.hero-bg img {
  transform: scale(var(--hero-zoom));
  transform-origin: center;
}
/* ===== Gallery (editorial grid like screenshot) ===== */
.gallery-page {
  padding-top: 3rem;
}

/* Chip bar with small counts */
.chipbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
}
.chip .count {
  font-weight: 700;
  font-size: 0.82rem;
  color: #666;
  background: #f1f1f1;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
}
.chip:hover {
  transform: translateY(-1px);
}
.chip.is-active {
  background: var(--brand);
  color: var(--brand-ink);
  border-color: transparent;
}
.section:not(.cream) .chip {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}
.section:not(.cream) .chip .count {
  background: rgba(255, 255, 255, 0.1);
  color: #d9dee6;
}

/* Uniform 3-column grid with generous gutters */
.gallery-grid.grid-uniform {
  --g: 18px;
  --rows: 320px; /* image height target like screenshot */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--g);
}

/* Tiles: no captions; strong crop */
.grid-uniform .tile {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  height: var(--rows);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.grid-uniform .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.25s ease;
  filter: brightness(0.98);
}
.grid-uniform .tile:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Responsive: 2 columns tablet, 1 column phone with taller rows */
@media (max-width: 1024px) {
  .gallery-grid.grid-uniform {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid.grid-uniform {
    --rows: 280px;
    --g: 14px;
  }
}
@media (max-width: 720px) {
  .gallery-grid.grid-uniform {
    grid-template-columns: 1fr;
  }
  .gallery-grid.grid-uniform {
    --rows: 260px;
    --g: 12px;
  }
}

/* =========================================================
   LIGHTBOX (shared styles for #lightbox and #lightboxSolo)
   ========================================================= */

/* Hidden state */
.lightbox[hidden] { display: none !important; }

/* Overlay container */
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 24px);
  background: color-mix(in oklab, #000 70%, transparent);
  z-index: 9999;

  /* entry animation */
  opacity: 0;
  transform: scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}

/* Visible state (JS toggles .is-open) */
.lightbox.is-open {
  opacity: 1;
  transform: scale(1);
}

/* Figure/card */
.lb-figure {
  max-width: min(96vw, 1200px);
  max-height: min(92vh, 1200px);
  display: grid;
  gap: .75rem;
  background: #fff;
  border-radius: 14px;
  padding: clamp(.75rem, 1.6vw, 1rem);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Image scales inside the card */
#lbImg,
#lbSoloImg {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Caption */
#lbCaption,
#lbSoloCaption {
  font: 600 0.95rem/1.3 var(--font, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto);
  color: #1b1f2a;
  text-align: center;
  word-break: break-word;
}

/* Buttons (close / prev / next) */
.lb-btn {
  position: absolute;
  top: clamp(10px, 3vh, 20px);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.92);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .12s ease, background .15s ease;
  outline: none;
}

.lb-btn:hover { transform: translateY(-1px); background: #fff; }
.lb-btn:focus-visible { box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand, #5aa8ff) 40%, #fff 60%); }

/* Specific placements */
.lb-close { right: clamp(10px, 3vw, 24px); }
.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
}
.lb-prev { left: clamp(10px, 3vw, 18px); }
.lb-next { right: clamp(10px, 3vw, 18px); }

/* Solo lightbox hides prev/next */
.lightbox--solo .lb-prev,
.lightbox--solo .lb-next {
  display: none !important;
}

/* Prevent page scroll when JS adds .no-scroll to <html> */
html.no-scroll { overflow: hidden; }

/* Respect iOS safe areas (so buttons don’t hug edges) */
@supports (padding: max(0px)) {
  .lightbox {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
  .lb-close { right: max(10px, env(safe-area-inset-right)); }
  .lb-prev  { left:  max(10px, env(safe-area-inset-left)); }
  .lb-next  { right: max(10px, env(safe-area-inset-right)); }
}

/* Small screens: tighten card spacing */
@media (max-width: 600px) {
  .lb-figure {
    gap: .6rem;
    border-radius: 12px;
  }
  #lbImg, #lbSoloImg { max-height: 70vh; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none !important; }
  .lb-btn { transition: none !important; }
}

/* If your site has dark mode */
@media (prefers-color-scheme: dark) {
  .lb-figure { background: #0b0f14; }
  #lbCaption, #lbSoloCaption { color: #e8edf6; }
  .lb-btn { background: rgba(24,26,32,.9); color: #f5f7fb; }
  .lb-btn:hover { background: #1d2027; }
}
