@charset "UTF-8";
/* ==========================================================================
   PEOVER LANDSCAPES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   >>> TO RE-BRAND THE SITE, EDIT ONLY THE :root BLOCK BELOW. <<<
   Every colour in the site is derived from these variables.
   ========================================================================== */

:root {
  /* --- BRAND ORANGE ------------------------------------------------------
     --brand-500 (#fe7234) is taken directly from the existing Peover site
     and is the main "action" colour used on buttons, links and highlights.
     The shades either side are tints/shades of it for hovers and washes.    */
  --brand-700: #b8420f;
  --brand-600: #e05a1d;
  --brand-500: #fe7234;   /* <-- THE brand orange */
  --brand-400: #ff8d5a;
  --brand-300: #ffb694;
  --brand-100: #ffece2;
  --brand-50:  #fff6f1;

  /* --- BRAND CHARCOAL ---------------------------------------------------- */
  --ink-950: #060606;
  --ink-900: #0c0c0c;   /* <-- the near-black from the existing site */
  --ink-800: #171717;
  --ink-700: #242424;
  --ink-600: #3a3a3a;

  /* --- ACCENT ------------------------------------------------------------
     A single warm secondary note, used sparingly on underlines + rules.     */
  --accent:      #fe7234;
  --accent-dark: #e05a1d;

  /* --- NEUTRALS ---------------------------------------------------------- */
  --sand-50:  #fafafa;
  --sand-100: #f6f6f6;   /* the light grey panel colour from the current site */
  --sand-200: #ececec;
  --sand-300: #dcdcdc;
  --sand-400: #b4b4b4;

  --ink:      #0d0d0d;
  --ink-soft: #3a3a3a;
  --muted:    #6b6b6b;
  --white:    #ffffff;

  /* Aliases so deep/dark sections read clearly in the rules below. */
  --brand-950: var(--ink-950);
  --brand-900: var(--ink-900);
  --brand-800: var(--ink-800);

  /* --- SEMANTIC ROLES (derived — usually no need to change) -------------- */
  --bg:            var(--white);
  --bg-alt:        var(--sand-100);
  --bg-deep:       var(--ink-900);
  --text:          var(--ink);
  --text-muted:    var(--muted);
  --border:        rgba(12, 12, 12, .10);
  --border-strong: rgba(12, 12, 12, .17);

  --success-bg: #e9f6ec;  --success-fg: #14532d;
  --error-bg:   #fdeceb;  --error-fg:   #8c1d18;

  /* --- TYPOGRAPHY -------------------------------------------------------- */
  /* Poppins is the typeface used on the current Peover site — kept for brand
     continuity, but set much tighter and heavier here for a modern look.    */
  --font-display: "Poppins", ui-sans-serif, system-ui, -apple-system,
                  "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, -apple-system,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale — grows smoothly between 360px and 1400px viewports.  */
  --step--1: clamp(.82rem, .79rem + .12vw, .89rem);
  --step-0:  clamp(1rem, .96rem + .18vw, 1.09rem);
  --step-1:  clamp(1.18rem, 1.1rem + .35vw, 1.4rem);
  --step-2:  clamp(1.42rem, 1.28rem + .62vw, 1.85rem);
  --step-3:  clamp(1.72rem, 1.47rem + 1.05vw, 2.5rem);
  --step-4:  clamp(2.05rem, 1.65rem + 1.75vw, 3.35rem);
  --step-5:  clamp(2.45rem, 1.78rem + 2.9vw, 4.5rem);

  /* --- SPACE / SHAPE / MOTION -------------------------------------------- */
  --gutter:  clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --maxw:    1240px;
  --maxw-narrow: 720px;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(6, 6, 6, .05), 0 2px 6px rgba(6, 6, 6, .04);
  --shadow:    0 4px 12px rgba(6, 6, 6, .07), 0 12px 32px rgba(6, 6, 6, .07);
  --shadow-lg: 0 12px 28px rgba(6, 6, 6, .10), 0 32px 64px rgba(6, 6, 6, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* ==========================================================================
   RESET
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);

  /* The closed mobile nav drawer is parked just off the right-hand edge.
     Without clipping at the root it widens the page and phones zoom out to
     fit it. `clip` is used rather than `hidden` because `hidden` would turn
     the root into a scroll container and break position:sticky.            */
  overflow-x: hidden;   /* fallback for browsers without `clip` */
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-synthesis-weight: none;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }

button { cursor: pointer; background: none; border: 0; }

a { color: var(--brand-600); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--brand-500); }

ul, ol { padding: 0; }

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-500); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink-900);
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow--center { justify-content: center; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt  { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: var(--sand-100); }
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep .lead { color: rgba(255, 255, 255, .72); }
.section--deep .eyebrow { color: var(--accent); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--brand-500);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  --btn-bg: var(--brand-500);
  --btn-fg: #fff;
  --btn-bd: var(--brand-500);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  border: 1px solid var(--btn-bd);
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active { transform: translateY(0); }

.btn .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

.btn--primary:hover { --btn-bg: var(--brand-600); --btn-bd: var(--brand-600); }

.btn--accent {
  --btn-bg: var(--accent);
  --btn-bd: var(--accent);
  --btn-fg: #fff;
}
.btn--accent:hover { --btn-bg: var(--accent-dark); --btn-bd: var(--accent-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink-900);
  --btn-bd: var(--border-strong);
}
.btn--ghost:hover { --btn-bd: var(--brand-500); --btn-fg: var(--brand-600); }

.btn--light {
  --btn-bg: rgba(255, 255, 255, .1);
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--ink-900); --btn-bd: #fff; }

.btn--lg { padding: 1.1rem 2.1rem; font-size: var(--step-0); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
  color: var(--brand-600);
}
.link-arrow .icon { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              backdrop-filter .35s var(--ease);
}

/* Transparent over the hero, solid once scrolled. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 6, 6, .6), rgba(6, 6, 6, 0));
  opacity: 1;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.site-header.is-stuck {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 6px 24px rgba(6, 6, 6, .07);
}
.site-header.is-stuck::before { opacity: 0; }

/* Pages without a hero image start in the solid state. */
.site-header.is-solid {
  position: sticky;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-solid::before { opacity: 0; }

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* --- Logo --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-500);
  color: #fff;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__mark .icon { width: 24px; height: 24px; }

/* When assets/img/logo.png exists, the wordmark replaces the mark + text. */
.logo--image img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

/* The supplied wordmark is orange on transparent, which reads fine on the dark
   hero but needs no change when the header turns white — orange works on both. */
@media (max-width: 480px) {
  .logo--image img { height: 34px; }
}

.site-footer .logo--image img { height: 44px; }

.logo__text { display: flex; flex-direction: column; line-height: 1.05; }

.logo__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  transition: color .3s var(--ease);
}

.logo__sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  transition: color .3s var(--ease);
}

.site-header.is-stuck .logo__name,
.site-header.is-solid .logo__name { color: var(--brand-900); }
.site-header.is-stuck .logo__sub,
.site-header.is-solid .logo__sub  { color: var(--muted); }

/* --- Desktop nav --- */
.nav { display: flex; align-items: center; gap: clamp(.25rem, 1.4vw, 1.6rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.1rem, 1vw, .6rem);
  list-style: none;
  margin: 0;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: .55rem .85rem;
  font-size: .93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  border-radius: 8px;
  transition: color .2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav__link:hover { color: #fff; }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.site-header.is-stuck .nav__link,
.site-header.is-solid .nav__link { color: var(--ink-soft); }
.site-header.is-stuck .nav__link:hover,
.site-header.is-solid .nav__link:hover,
.site-header.is-stuck .nav__link.is-active,
.site-header.is-solid .nav__link.is-active { color: var(--brand-600); }

.nav__cta { margin-left: .5rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .93rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone .icon { width: 17px; height: 17px; color: var(--accent); }
.site-header.is-stuck .header-phone,
.site-header.is-solid .header-phone { color: var(--ink-900); }

/* --- Mobile toggle --- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 130;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}

.site-header.is-stuck .nav-toggle,
.site-header.is-solid .nav-toggle { border-color: var(--border-strong); }
.site-header.is-stuck .nav-toggle span,
.site-header.is-solid .nav-toggle span { background: var(--ink-900); }

.nav-toggle[aria-expanded="true"] { border-color: var(--border-strong); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink-900); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(400px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s var(--ease), visibility .4s;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav.is-open { transform: translateX(0); visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }

  .nav__list li { border-bottom: 1px solid var(--border); }

  .nav__link,
  .site-header.is-stuck .nav__link,
  .site-header.is-solid .nav__link {
    display: block;
    padding: 1.05rem .25rem;
    font-size: 1.18rem;
    font-family: var(--font-display);
    color: var(--ink-900);
    border-radius: 0;
  }

  .nav__link::after { left: .25rem; right: auto; width: 24px; bottom: .7rem; }

  .nav__cta { margin: 1.75rem 0 0; }
  .nav__cta .btn { width: 100%; }

  .header-phone,
  .site-header.is-stuck .header-phone,
  .site-header.is-solid .header-phone {
    order: 3;
    margin-top: 1rem;
    justify-content: center;
    padding: .9rem;
    border-radius: 100px;
    border: 1px solid var(--border-strong);
    color: var(--ink-900);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(6, 6, 6, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  body.nav-open { overflow: hidden; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(100svh, 940px);
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--ink-950);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 6, 6, .94) 0%, rgba(6, 6, 6, .6) 45%, rgba(6, 6, 6, .3) 100%),
    linear-gradient(to right, rgba(6, 6, 6, .6), transparent 65%);
}

.hero__inner { position: relative; width: 100%; }

.hero__content { max-width: 46rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem 1rem .45rem .55rem;
  margin-bottom: 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.hero__badge .icon {
  width: 16px; height: 16px;
  padding: 3px;
  box-sizing: content-box;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  stroke-width: 3;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.035em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero__text {
  font-size: var(--step-1);
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vw, 6rem);
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll .icon { width: 20px; height: 20px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* --- Compact page hero (interior pages) --- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem));
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--ink-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.page-hero__media { position: absolute; inset: 0; z-index: -2; opacity: .38; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 100% at 15% 0%, rgba(254, 114, 52, .35), transparent 62%);
}

.page-hero h1 { color: #fff; max-width: 18ch; margin-bottom: 1.1rem; }
.page-hero .lead { color: rgba(255, 255, 255, .78); max-width: 55ch; }
.page-hero .eyebrow { color: var(--accent); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin-top: 2rem;
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
}
.breadcrumb a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trustbar {
  background: var(--ink-900);
  color: rgba(255, 255, 255, .9);
  padding-block: 1.5rem;
}

.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 3.5rem);
  list-style: none;
  margin: 0;
}

.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.trustbar__item .icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ==========================================================================
   CARDS — SERVICES
   ========================================================================== */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-200);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.card:hover .card__media img { transform: scale(1.06); }

.card__icon {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--brand-600);
  box-shadow: var(--shadow-sm);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.card__icon .icon { width: 26px; height: 26px; }
.card:hover .card__icon { background: var(--accent); color: #fff; transform: translateY(-3px); }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .7rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.card__title { font-size: var(--step-1); }

.card__text { color: var(--text-muted); font-size: .95rem; flex: 1; }

.card__link { margin-top: .5rem; }

/* Stretched link keeps the whole card clickable without nesting <a> tags. */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ==========================================================================
   FEATURE / SPLIT SECTIONS
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--reverse .split__media { order: 2; }
@media (max-width: 820px) { .split--reverse .split__media { order: 0; } }

.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: var(--sand-200);
  box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Small stat card floating over the image */
.split__float {
  position: absolute;
  right: -1px;
  bottom: -1px;
  padding: 1.35rem 1.75rem;
  background: var(--white);
  border-top-left-radius: var(--radius-lg);
  max-width: 62%;
}
.split__float strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--brand-600);
  margin-bottom: .2rem;
}
.split__float span { font-size: .82rem; color: var(--text-muted); }

.tick-list { list-style: none; display: grid; gap: .85rem; margin-top: 1.75rem; }

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .97rem;
}

.tick-list .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  padding: 3px;
  box-sizing: border-box;
  margin-top: .18rem;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-600);
  stroke-width: 2.5;
}

.section--deep .tick-list .icon { background: rgba(254, 114, 52, .2); color: var(--brand-400); }

/* ==========================================================================
   VALUES / STATS
   ========================================================================== */

.value {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.value__icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--brand-100);
  color: var(--brand-600);
  margin-bottom: .3rem;
}
.value__icon .icon { width: 24px; height: 24px; }

.value h3 { font-size: var(--step-1); }
.value p { font-size: .93rem; color: var(--text-muted); }

.section--deep .value {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .1);
}
.section--deep .value p { color: rgba(255, 255, 255, .68); }
.section--deep .value__icon { background: rgba(254, 114, 52, .16); color: var(--brand-400); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stat { text-align: center; }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--brand-600);
  margin-bottom: .4rem;
}
.stat__label { font-size: .85rem; color: var(--text-muted); }
.section--deep .stat__value { color: var(--accent); }
.section--deep .stat__label { color: rgba(255, 255, 255, .65); }

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}

.process__item { position: relative; padding-top: 2.25rem; }

.process__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-strong);
}

.process__item::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.process__step {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--brand-400);
  margin-bottom: .5rem;
}

.process__item h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.process__item p { font-size: .93rem; color: var(--text-muted); }

.section--deep .process__item::before { background: rgba(255, 255, 255, .18); }
.section--deep .process__item p { color: rgba(255, 255, 255, .68); }

/* ==========================================================================
   GALLERY + LIGHTBOX
   ========================================================================== */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.filter {
  padding: .6rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.filter:hover { border-color: var(--brand-500); color: var(--brand-600); background: var(--brand-50); }
.filter.is-active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(.85rem, 1.6vw, 1.35rem);
}

.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-200);
  border: 0;
  padding: 0;
  width: 100%;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

/* Make every third tile taller for an editorial, non-uniform rhythm. */
@media (min-width: 900px) {
  .gallery__item:nth-child(6n + 1),
  .gallery__item:nth-child(6n + 4) { aspect-ratio: 4 / 5; }
}

.gallery__item.is-hidden {
  display: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.35rem 1.25rem;
  text-align: left;
  background: linear-gradient(to top, rgba(6, 6, 6, .9), transparent);
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.gallery__item:hover .gallery__overlay,
.gallery__item:focus-visible .gallery__overlay { transform: translateY(0); opacity: 1; }

.gallery__title { display: block; font-weight: 600; font-size: 1rem; }
.gallery__loc { display: block; font-size: .82rem; color: rgba(255, 255, 255, .72); }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 6, 6, .95);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__figure {
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: scale(.96);
  transition: transform .35s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }

.lightbox__img {
  max-height: 76vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__caption { text-align: center; color: rgba(255, 255, 255, .85); font-size: .92rem; }
.lightbox__caption strong { display: block; color: #fff; font-size: 1.05rem; }

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .2); transform: scale(1.06); }
.lightbox__btn .icon { width: 22px; height: 22px; }

.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev  { left: clamp(.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%) rotate(180deg); }
.lightbox__next  { right: clamp(.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) rotate(180deg) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 620px) {
  .lightbox__prev { left: .5rem; }
  .lightbox__next { right: .5rem; }
  .lightbox__btn { width: 44px; height: 44px; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-900);
  flex: 1;
}
.testimonial__quote::before { content: "\201C"; }
.testimonial__quote::after  { content: "\201D"; }

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-600);
  font-weight: 600;
  font-size: .95rem;
  flex-shrink: 0;
}

.testimonial__name { display: block; font-weight: 600; font-size: .95rem; }
.testimonial__detail { display: block; font-size: .83rem; color: var(--text-muted); }

.stars { display: flex; gap: .15rem; color: var(--accent); }
.stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.section--deep .testimonial {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}
.section--deep .testimonial__quote { color: #fff; }
.section--deep .testimonial__meta { border-color: rgba(255, 255, 255, .12); }
.section--deep .testimonial__detail { color: rgba(255, 255, 255, .6); }
.section--deep .testimonial__avatar { background: rgba(254, 114, 52, .18); color: var(--brand-400); }

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-card {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}

.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field label .req { color: #b4463f; }

.field .hint { font-size: .79rem; color: var(--text-muted); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--sand-50);
  font-size: .97rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.field textarea { min-height: 150px; resize: vertical; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364726a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 20px;
  padding-right: 2.75rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(254, 114, 52, .18);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c2564e; background: var(--error-bg); }

.field__error { font-size: .8rem; color: var(--error-fg); font-weight: 500; }

/* File input */
.filedrop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1.75rem 1rem;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--sand-50);
  text-align: center;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.filedrop:hover, .filedrop.is-dragover { border-color: var(--brand-500); background: var(--brand-100); }
.filedrop input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
}
.filedrop__title { font-weight: 600; font-size: .93rem; }
.filedrop__hint  { font-size: .8rem; color: var(--text-muted); }
.filedrop__files { font-size: .82rem; color: var(--brand-600); font-weight: 500; }

/* Honeypot — must stay invisible to humans but present in the DOM. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox input { margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--brand-600); flex-shrink: 0; }

.alert {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  font-size: .93rem;
}
.alert .icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: .15rem; }
.alert strong { display: block; margin-bottom: .15rem; }
.alert--success { background: var(--success-bg); color: var(--success-fg); }
.alert--error   { background: var(--error-bg);   color: var(--error-fg); }
.alert ul { margin: .4rem 0 0 1.1rem; }

/* Contact detail rows */
.contact-list { list-style: none; display: grid; gap: 1.5rem; }

.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }

.contact-list .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  padding: 11px;
  box-sizing: border-box;
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--brand-600);
}

.contact-list dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .15rem; }
.contact-list dd { margin: 0; font-weight: 600; font-size: 1.02rem; }
.contact-list a { text-decoration: none; }

/* ==========================================================================
   ACCORDION (FAQs)
   ========================================================================== */

.accordion { border-top: 1px solid var(--border); }

.accordion__item { border-bottom: 1px solid var(--border); }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--ink-900);
  font-weight: 600;
  transition: color .2s var(--ease);
}
.accordion__trigger:hover { color: var(--brand-600); }

.accordion__trigger .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--brand-500);
  transition: transform .3s var(--ease);
}
.accordion__trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p { padding-bottom: 1.5rem; color: var(--text-muted); max-width: 68ch; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-900);
  color: #fff;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 120% at 85% 10%, rgba(254, 114, 52, .5), transparent 62%),
    radial-gradient(70% 100% at 5% 90%, rgba(254, 114, 52, .16), transparent 58%);
}

.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

.cta h2 { color: #fff; max-width: 18ch; margin-bottom: .75rem; }
.cta p { color: rgba(255, 255, 255, .8); max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink-950);
  color: rgba(255, 255, 255, .66);
  font-size: .93rem;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.site-footer .logo__name { color: #fff; }
.site-footer .logo__sub { color: rgba(255, 255, 255, .5); }

.footer-about { max-width: 34ch; margin-top: 1.35rem; line-height: 1.7; }

.footer-heading {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}

.footer-list { list-style: none; display: grid; gap: .7rem; }
.footer-list a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-list a:hover { color: var(--accent); padding-left: 4px; }

.socials { display: flex; gap: .6rem; margin-top: 1.75rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .8);
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.socials .icon { width: 19px; height: 19px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: rgba(255, 255, 255, .65); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie {
  position: fixed;
  left: var(--gutter);
  bottom: var(--gutter);
  z-index: 150;
  width: min(420px, calc(100vw - var(--gutter) * 2));
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: translateY(calc(100% + var(--gutter)));
  transition: transform .45s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }

.cookie h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.cookie p { font-size: .86rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__actions .btn { padding: .7rem 1.35rem; font-size: .85rem; flex: 1; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mx-auto { margin-inline: auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose { max-width: 68ch; }

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
  .site-header, .site-footer, .cookie, .cta, .hero__scroll, .nav-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
