


:root {
  
  --canvas:        #EEF1F4;  
  --canvas-deep:   #E4E9ED;  
  --surface:       #FFFFFF;  
  --surface-quiet: #F7F9FB;  
  --tint:          #DFE9F0;  

  
  --ink:      #0F1A21;  
  --ink-body: #3C4A54;  
  --ink-mute: #55646F;  

  
  --anchor:      #0E3F5C;  
  --anchor-deep: #0A2E44;  
  --link:        #0A5478;  
  --focus:       #0E6BA8;  

  
  --hairline:        #DDE3E9;  
  --hairline-strong: #D6DEE5;  
  --border-ui:       #768695;  
  --border-quiet:    #CFD8E0;  

  
  --on-dark:      #FFFFFF;              
  --on-dark-soft: #F2F6F8;              
  --on-dark-mute: #B9CBD8;              
  --on-dark-line: rgba(255, 255, 255, 0.18);

  
  --error:      #B3261E;  
  --error-tint: #FBEBEA;

  
  --r-xs: 6px;    
  --r-sm: 10px;   
  --r-md: 12px;   
  --r-lg: 16px;   
  --r-xl: clamp(14px, 1.8vw, 20px);  

  
  --shadow-panel: 0 1px 2px rgba(15, 26, 33, 0.04), 0 12px 28px -14px rgba(15, 26, 33, 0.10);
  --shadow-media: 0 18px 44px -26px rgba(14, 63, 92, 0.22);  
  --shadow-chrome: 0 1px 2px rgba(15, 26, 33, 0.05), 0 10px 26px -16px rgba(15, 26, 33, 0.14);

  
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-7:  32px;
  --s-8:  40px;
  --s-9:  56px;
  --s-10: 72px;
  --s-11: 96px;
  --s-12: 128px;

  
  --wrap:      1240px;
  --gutter:    clamp(16px, 4vw, 40px);
  --section:   clamp(64px, 8vw, 112px);
  --pad:       clamp(24px, 4vw, 52px);
  --header-h:  68px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}


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

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: 1.0625rem;      
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(14, 63, 92, 0.12);
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }


h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 1.6rem + 3.6vw, 4rem);   
  line-height: 1.06;
  letter-spacing: -0.028em;
  max-width: 17ch;
}

h2 {
  font-size: clamp(1.875rem, 1.35rem + 2vw, 2.75rem); 
  line-height: 1.10;
  letter-spacing: -0.024em;
  max-width: 20ch;
}

.h2--sm {
  font-size: clamp(1.625rem, 1.4rem + 1.1vw, 2.125rem); 
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

h3 {
  font-size: clamp(1.25rem, 1.16rem + 0.4vw, 1.4375rem); 
  line-height: 1.24;
  letter-spacing: -0.016em;
}


.h3--sm {
  font-size: 1.0625rem;   
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.008em;
}

p { margin: 0; }
p + p { margin-top: 1.15em; }

.lede {
  font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);  
  line-height: 1.55;
  letter-spacing: -0.006em;
  color: var(--ink-body);
  max-width: 54ch;
}

.meta {
  font-size: 0.875rem;   
  line-height: 1.5;
  color: var(--ink-mute);
}

strong, b { font-weight: 600; color: var(--ink); }
em { font-style: italic; }


.num { font-variant-numeric: tabular-nums; }


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

.section { margin-top: var(--section); }
.section--tight { margin-top: clamp(40px, 5vw, 64px); }


.panel {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-panel);
  padding: var(--pad);
}

.panel--quiet { background: var(--surface-quiet); box-shadow: none; }


.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--tint);
  box-shadow: var(--shadow-media);
}

.frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame--wide    { aspect-ratio: 16 / 9; }   
.frame--tall    { aspect-ratio: 3 / 4; }    
.frame--port    { aspect-ratio: 4 / 5; }    
.frame--ultra   { aspect-ratio: 21 / 9; }   
.frame--square  { aspect-ratio: 1 / 1; }    
.frame--xl      { border-radius: var(--r-xl); }


.head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-8);
  align-items: flex-end;
  justify-content: space-between;
}

.head__title { max-width: 30ch; }
.head h2 { margin-top: 14px; }
.head .lede { margin-top: var(--s-4); }
.head__aside { max-width: 34ch; }

.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }


.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 30px;
  padding: 4px 13px;
  border-radius: var(--r-md);
  background: var(--tint);
  color: var(--anchor);
  font-size: 0.8125rem;   
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.chip::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.chip--dark {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.96875rem;   
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease),
              color 0.16s var(--ease), transform 0.16s var(--ease);
}

.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--anchor); color: #fff; }
.btn--primary:hover { background: var(--anchor-deep); transform: translateY(-1px); }


.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-ui);
}
.btn--ghost:hover { border-color: var(--anchor); color: var(--anchor); transform: translateY(-1px); }

.btn--light { background: #fff; color: var(--anchor); }
.btn--light:hover { background: var(--on-dark-soft); transform: translateY(-1px); }

.btn--sm { min-height: 42px; padding: 0 18px; font-size: 0.90625rem; }
.btn--block { width: 100%; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

a { color: var(--link); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--link);
  font-size: 0.9375rem;   
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(10, 84, 120, 0.35);
  transition: text-decoration-color 0.16s var(--ease), color 0.16s var(--ease);
}
.tlink:hover { text-decoration-color: currentColor; }
.tlink svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.tlink:hover svg { transform: translateX(3px); }


:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.on-dark :focus-visible { outline-color: #fff; }


#main:focus, #main:focus-visible { outline: none; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  
  transform: translateY(-160%);
  transition: transform 0.18s var(--ease);
}
.skip-link:focus-visible {
  transform: none;
  outline-offset: 3px;
  box-shadow: var(--shadow-chrome);
}


.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 8px;
}


.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: var(--canvas);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.site-header.is-stuck::before { opacity: 1; }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: var(--header-h);
  padding: 0 var(--s-4) 0 var(--s-5);
  border-radius: var(--r-xl);
  background: transparent;
  transition: background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.site-header.is-stuck .site-header__inner {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: var(--shadow-chrome);
}


body.nav-open .site-header__inner {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-end-start-radius: 0;
  border-end-end-radius: 0;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header.is-stuck .site-header__inner,
  body.nav-open .site-header__inner { background: #fff; }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--ink);
}

.brand__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.016em;
  white-space: nowrap;
}

.brand__rule {
  width: 1px;
  height: 15px;
  background: var(--border-quiet);
}

.brand__tag {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  
  gap: var(--s-5);
  flex: none;   
}

.nav__link {
  position: relative;
  padding: 6px 0;
  color: var(--ink-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  
  white-space: nowrap;
  transition: color 0.16s var(--ease);
}
.nav__link:hover { color: var(--anchor); }


.nav__link[aria-current] { color: var(--anchor); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: currentColor;
}


.nav__group { position: relative; display: flex; align-items: center; gap: 5px; }


.nav__caret {
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid var(--ink-mute);
  border-bottom: 1.5px solid var(--ink-mute);
  transform: rotate(45deg);
  transition: transform 0.18s var(--ease), border-color 0.16s var(--ease);
}
.nav__group:hover .nav__caret,
.nav__group:focus-within .nav__caret {
  border-color: var(--anchor);
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav__panel {
  position: absolute;
  top: 100%;
  left: -14px;
  z-index: 10;
  margin-top: 12px;
  padding: var(--s-3);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-chrome);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease),
              visibility 0s linear 0.16s;
}

.nav__group:hover > .nav__panel,
.nav__group:focus-within > .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease), visibility 0s;
}

.nav__group.is-closed > .nav__panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
}


.nav__panel::before {
  content: "";
  position: absolute;
  inset: -14px 0 100% 0;
}

.nav__panel a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.14s var(--ease), color 0.14s var(--ease);
}
.nav__panel a:hover { background: var(--tint); color: var(--anchor); }

.nav__panel a[aria-current="page"] { color: var(--anchor); }

.nav__panel-foot {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--hairline);
}
.nav__panel-foot a { color: var(--link); }




.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-left: auto;
}
.header__actions .btn { white-space: nowrap; }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.header__phone svg { flex: none; width: 15px; height: 15px; color: var(--anchor); }
.header__phone:hover { color: var(--anchor); }


.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-ui);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--anchor); color: var(--anchor); }

.nav-toggle__bars { display: block; }
.nav-toggle__bars span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: currentColor;
  border-radius: var(--r-xs);  
}
.nav-toggle__bars span + span { margin-top: 4px; }
.nav-toggle__x { display: none; width: 19px; height: 19px; }

body.nav-open .nav-toggle__bars { display: none; }
body.nav-open .nav-toggle__x { display: block; }
body.nav-open .nav-toggle { border-color: var(--anchor); color: var(--anchor); }


.dock {
  position: fixed;
  right: var(--s-3);
  bottom: var(--s-3);
  z-index: 80;               
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.dock__btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border-quiet);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-chrome);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease),
              color 0.16s var(--ease), transform 0.16s var(--ease);
}
.dock__btn:hover { border-color: var(--anchor); color: var(--anchor); transform: translateY(-1px); }


.dock__calls {
  display: none;                       
  background: var(--anchor);
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
}
.dock__calls:hover { background: var(--anchor-deep); border-color: #fff; color: #fff; }
.dock__calls svg { width: 21px; height: 21px; }

@media (max-width: 700px) {
  body.calls-off .dock__calls { display: grid; }
}

.dock__top { width: 44px; height: 44px; }
.dock__top svg { width: 19px; height: 19px; }


.dock__top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
              visibility 0s linear 0.2s;
}
.dock.is-scrolled .dock__top {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s;
}


body.nav-open .dock { display: none; }

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


@media (max-width: 700px) {
  .dock { bottom: 84px; }
  body.calls-off .dock { bottom: var(--s-3); }
}


.sheet {
  display: none;
  padding: var(--s-5);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-chrome);
  
  max-height: calc(100vh - var(--header-h) - 16px);
  max-height: calc(100dvh - var(--header-h) - 16px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
body.nav-open .sheet { display: block; }


body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}


body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(238, 241, 244, 0.72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.sheet__link {
  position: relative;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
}

.sheet__link[aria-current] { color: var(--anchor); }
.sheet__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: currentColor;
}


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

.sheet__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  border-bottom: 0;
  cursor: pointer;
  list-style: none;
}
.sheet__summary::-webkit-details-marker { display: none; }
.sheet__summary[aria-current] { color: var(--anchor); }

.sheet__summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-right: 1.6px solid var(--anchor);
  border-bottom: 1.6px solid var(--anchor);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.sheet__group[open] .sheet__summary::after { transform: rotate(-135deg); margin-top: 3px; }

.sheet__sub { display: grid; gap: 2px; padding-bottom: var(--s-4); }
.sheet__sub a {
  display: block;
  
  padding: 12px;
  border-radius: var(--r-sm);
  color: var(--ink-body);
  font-size: 0.9375rem;
  line-height: 1.35;
  text-decoration: none;
}
.sheet__sub a:hover { background: var(--tint); color: var(--anchor); }
.sheet__sub a[aria-current="page"] { color: var(--anchor); }

.sheet__sub-all { font-weight: 500; color: var(--link); }

.sheet__foot { margin-top: var(--s-4); display: grid; gap: var(--s-1); }

.sheet__foot a:not(.btn) {
  padding: 9px 0;
  color: var(--ink-body);
  font-size: 0.9375rem;
  text-decoration: none;
}


@media (max-height: 660px) {
  .sheet { padding: var(--s-4); }
  .sheet__link { padding: 11px 0; }
  .sheet__sub { padding-bottom: var(--s-5); }
  
  .sheet__foot { margin-top: var(--s-3); gap: 0; }
}



@media (max-width: 1300px) {
  .brand__rule, .brand__tag { display: none; }
}


@media (max-width: 1100px) {
  .nav { display: none; }
  
}

@media (max-width: 640px) {
  .header__actions .btn { display: none; }
}


@media (max-width: 760px) {
  .header__phone-num { display: none; }
  .header__phone {
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-ui);
    border-radius: var(--r-sm);
  }
  .header__phone:hover { border-color: var(--anchor); }
  .header__phone svg { width: 18px; height: 18px; }
}

@media (max-width: 950px) {
  .site-header__inner { padding-inline: var(--s-4); }
}


.hero { padding-top: clamp(36px, 5.5vw, 72px); }

.hero h1 { margin-top: var(--s-5); }
.hero .lede { margin-top: 22px; }
.hero .actions { margin-top: var(--s-7); }

.hero__media {
  position: relative;
  margin-top: clamp(36px, 5.5vw, 60px);
}


.credential {
  position: absolute;
  left: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  max-width: 340px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-panel);
}
.credential__place { color: var(--anchor); font-size: 0.8125rem; font-weight: 500; }
.credential__what { margin-top: 4px; color: var(--ink-body); font-size: 0.9375rem; line-height: 1.45; }

@media (max-width: 700px) {
  .credential {
    position: static;
    max-width: none;
    margin-top: var(--s-3);
    background: var(--surface);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}


.facts {
  margin-top: clamp(20px, 2.4vw, 28px);
  padding: clamp(20px, 2.8vw, 30px);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts__cell { padding-inline: clamp(16px, 2.2vw, 28px); }
.facts__cell + .facts__cell { border-left: 1px solid var(--hairline); }
.facts__cell:first-child { padding-left: 0; }
.facts__cell:last-child { padding-right: 0; }

.facts__k { color: var(--ink-mute); font-size: 0.8125rem; font-weight: 500; }
.facts__v {
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.1875rem;   
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

@media (max-width: 900px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-5); }
  .facts__cell:nth-child(odd) { padding-left: 0; border-left: 0; }
  .facts__cell:nth-child(even) { padding-right: 0; }
}

@media (max-width: 520px) {
  .facts__grid { grid-template-columns: 1fr; row-gap: 0; }
  .facts__cell { padding: var(--s-4) 0; border-left: 0 !important; }
  .facts__cell + .facts__cell { border-top: 1px solid var(--hairline); }
  .facts__cell:first-child { padding-top: 0; }
  .facts__cell:last-child { padding-bottom: 0; }
}


.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(28px, 3.4vw, 44px);
}


.svc { position: relative; display: flex; flex-direction: column; }
.svc h3 { margin-top: var(--s-5); }
.svc p { margin-top: 10px; font-size: 1rem; line-height: 1.66; }

.svc__list { margin-top: var(--s-4); display: grid; gap: 7px; }
.svc__list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-mute);
  font-size: 0.875rem;
  line-height: 1.5;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--anchor);
}

.svc .tlink {
  align-self: flex-start;
  margin-top: auto;
  padding-top: var(--s-4);
  font-size: 0.90625rem;
}


.svc__go::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
}

.svc .frame > img { transition: transform 0.7s var(--ease); }
@media (hover: hover) {
  .svc:hover .frame > img { transform: scale(1.035); }
  .svc:hover h3 { color: var(--anchor); }
}

@media (max-width: 860px) { .trio { grid-template-columns: 1fr; gap: var(--s-9); } }


.work {
  display: grid;
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(28px, 3.4vw, 44px);
}

.work__row {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}
.work__row--flip { grid-template-columns: 5fr 7fr; }

.work__item .frame { border-radius: var(--r-xl); }
.work__cap { margin-top: 14px; }
.work__name { color: var(--ink); font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.01em; }
.work__meta { margin-top: 3px; color: var(--ink-mute); font-size: 0.875rem; line-height: 1.5; }

.work__item .frame > img { transition: transform 0.6s var(--ease); }
@media (hover: hover) {
  .work__item:hover .frame > img { transform: scale(1.03); }
}

@media (max-width: 860px) {
  .work__row, .work__row--flip { grid-template-columns: 1fr; }
}


.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split--even { grid-template-columns: 1fr 1fr; }
.split--top { align-items: start; }


.split--text-first { grid-template-columns: 7fr 5fr; }
.split--text-first > .split__media { order: 2; }

.split__text .chip + * { margin-top: 14px; }
.split__text .lede { margin-top: var(--s-4); }
.split__text h2 + p,
.split__text .h2--sm + p { margin-top: var(--s-4); }
.split__text p + p { margin-top: 1.1em; }


@media (min-width: 901px) {
  .split--sticky > .split__media { align-self: stretch; }
  .split--sticky > .split__media > .frame { position: sticky; top: calc(var(--header-h) + 28px); }
}


@media (max-width: 900px) {
  .split, .split--even, .split--text-first { grid-template-columns: 1fr; gap: var(--s-8); }
  .split > .split__media { order: 2; }
  .split--media-lead > .split__media { order: 0; }
}


.rows { margin-top: var(--s-6); }
.rows li {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--hairline);
}
.rows .k { color: var(--ink-mute); font-size: 0.875rem; }
.rows .v { color: var(--ink); font-size: 0.9375rem; font-weight: 500; text-align: right; }


.rows--stack li { display: block; }
.rows--stack .v { display: block; margin-top: 3px; text-align: left; }


.ticks { display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
  line-height: 1.6;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tint);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--anchor);
}

.ticks--two {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 11px var(--s-7);
}
@media (max-width: 700px) { .ticks--two { grid-template-columns: 1fr; } }


.figcap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-6);
  justify-content: space-between;
  margin-top: 14px;
  color: var(--ink-mute);
  font-size: 0.875rem;
}


.steps { margin-top: clamp(24px, 3vw, 36px); }

.step {
  display: grid;
  grid-template-columns: 40px 240px 1fr;
  gap: var(--s-5) var(--s-7);
  align-items: baseline;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline);
}
.step:first-child { border-top: 0; padding-top: var(--s-2); }
.step:last-child { padding-bottom: var(--s-2); }

.step__n {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--anchor);
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.1875rem; letter-spacing: -0.012em; }
.step p { color: var(--ink-mute); font-size: 0.96875rem; line-height: 1.62; max-width: 62ch; }

@media (max-width: 820px) {
  .step { grid-template-columns: 32px 1fr; gap: var(--s-3) var(--s-5); }
  .step h3 { grid-column: 2; }
  .step p { grid-column: 2; }
}



.areas {
  display: grid;
  
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.areas li { display: flex; }
.areas a {
  flex: 1;
  
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 12px;
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-md);
  background: var(--surface-quiet);
  color: var(--ink-body);
  font-size: 0.84375rem;   
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease),
              color 0.16s var(--ease), transform 0.16s var(--ease);
}

.areas a:hover {
  transform: translateY(-1px);
  border-color: #B8C7D4;
  background: var(--tint);
  color: var(--anchor);
}


@media (max-width: 599px) {
  .areas { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


@media (min-width: 600px) {
  .split__text .areas { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


@media (max-width: 480px) {
  .areas { gap: 6px; }
  .areas a { padding: 6px 4px; font-size: 0.8125rem; }
}

.map {
  padding: clamp(12px, 2vw, 24px);
  border-radius: var(--r-lg);
  background: var(--tint);
}
.map img { width: 100%; height: auto; border-radius: var(--r-md); }


.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 68px);
  border-radius: var(--r-xl);
  background: var(--anchor);
  color: var(--on-dark-mute);
}

.cta__bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  pointer-events: none;
}

.cta__inner { position: relative; max-width: 560px; }
.cta h2 { margin-top: var(--s-4); color: var(--on-dark); max-width: 18ch; }
.cta p { margin-top: var(--s-4); color: var(--on-dark-mute); max-width: 48ch; }

.cta__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--s-3) var(--s-7);
  margin-top: var(--s-7);
}
.cta__tel {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.014em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-color: var(--on-dark-line);
}
.cta__tel:hover { text-decoration-color: #fff; }
.cta__mail { color: #fff; font-size: 1.0625rem; font-weight: 500; text-underline-offset: 4px; }
.cta .actions { margin-top: var(--s-7); }

@media (max-width: 900px) { .cta__bg { display: none; } }


.site-footer {
  margin-top: clamp(56px, 7vw, 88px);
  padding-bottom: var(--s-8);
}

.site-footer__inner {
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--hairline-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2.4fr 3fr;
  gap: var(--s-7) var(--s-8);
}


.footer-grid h2 {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.008em;
  max-width: none;
}
.footer-grid ul { margin-top: var(--s-4); display: grid; gap: 10px; }
.footer-grid li, .footer-grid p { color: var(--ink-mute); font-size: 0.90625rem; line-height: 1.6; }
.footer-grid a {
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  transition: color 0.16s var(--ease);
}
.footer-grid a:hover { color: var(--anchor); }

.footer-brand { color: var(--ink); font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.016em; }
.footer-brand + p { margin-top: var(--s-3); max-width: 34ch; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  justify-content: space-between;
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline-strong);
  color: var(--ink-mute);
  font-size: 0.84375rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }



.callbar {
  position: fixed;
  left: var(--s-3);
  right: var(--s-3);
  bottom: var(--s-3);
  z-index: 70;
  display: none;
  gap: var(--s-2);
  padding: var(--s-2);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-chrome);
}
.callbar .btn { flex: 1; min-height: 44px; }


.callbar__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;   
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color 0.16s var(--ease), background-color 0.16s var(--ease);
}
.callbar__close:hover { background: var(--tint); color: var(--anchor); }
.callbar__close svg { width: 17px; height: 17px; }

body.calls-off .callbar { display: none; }


body.nav-open .callbar { display: none; }

@media (max-width: 700px) {
  .callbar { display: flex; }
  
  body { padding-bottom: 76px; }
  
  html { scroll-padding-bottom: 84px; }
}


.page-hero { padding-top: clamp(28px, 4vw, 52px); }
.page-hero h1 { margin-top: var(--s-4); max-width: 20ch; }
.page-hero .lede { margin-top: var(--s-5); }
.page-hero .actions { margin-top: var(--s-6); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
  color: var(--ink-mute);
  font-size: 0.875rem;
}
.crumbs a {
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}
.crumbs a:hover { color: var(--anchor); }


.scope-table { width: 100%; margin-top: var(--s-6); border-collapse: collapse; }
.scope-table caption {
  margin-bottom: var(--s-3);
  color: var(--ink-mute);
  font-size: 0.875rem;
  text-align: left;
}
.scope-table th, .scope-table td {
  padding: 13px var(--s-4);
  text-align: left;
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.scope-table th {
  width: 34%;
  color: var(--ink);
  font-weight: 500;
  background: var(--surface-quiet);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}
.scope-table td { color: var(--ink-body); }
.scope-table tr + tr th, .scope-table tr + tr td { border-top: 1px solid var(--hairline); }


@media (max-width: 640px) {
  .scope-table, .scope-table caption, .scope-table tbody, .scope-table tr, .scope-table th, .scope-table td { display: block; width: 100%; }
  .scope-table th { border-radius: var(--r-sm) var(--r-sm) 0 0; }
  .scope-table td { padding-top: 10px; }
  .scope-table tr + tr th { border-top: 0; margin-top: var(--s-4); }
  .scope-table tr + tr td { border-top: 0; }
}

.tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.tags li {
  padding: 6px 13px;
  border-radius: var(--r-md);
  background: var(--surface-quiet);
  border: 1px solid var(--border-quiet);
  color: var(--ink-body);
  font-size: 0.84375rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(28px, 3.4vw, 44px);
}
.card {
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}
.card h3 { margin-top: var(--s-4); }
.card h3 + p { margin-top: 10px; font-size: 1rem; line-height: 1.65; }
.card .ticks { margin-top: var(--s-5); }
.card .ticks li { font-size: 0.9375rem; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }


.faq { margin-top: var(--s-6); }
.faq details { border-top: 1px solid var(--hairline); }
.faq details:first-of-type { border-top: 0; }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-right: 1.6px solid var(--anchor);
  border-bottom: 1.6px solid var(--anchor);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 9px; }

.faq__body { padding-bottom: var(--s-5); max-width: 74ch; }
.faq__body p { font-size: 1rem; }


.form-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .form-layout { grid-template-columns: 1fr; } }

.field { display: grid; gap: 7px; }
.field label { color: var(--ink); font-size: 0.875rem; font-weight: 500; }
.optional { color: var(--ink-mute); font-weight: 400; }
.req { color: var(--anchor); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-ui);
  border-radius: var(--r-sm);
  background: var(--surface-quiet);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;          
  line-height: 1.5;
  transition: border-color 0.16s var(--ease), background-color 0.16s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%2355646F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--surface); border-color: var(--anchor); }


.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); opacity: 1; }

.field__error {
  display: none;
  color: var(--error);
  font-size: 0.875rem;
  line-height: 1.45;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--error);
  background: var(--error-tint);
}
.field.is-invalid .field__error { display: block; }

.form-grid { display: grid; gap: var(--s-5); }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form-grid--2 { grid-template-columns: 1fr; } }

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s-3);
  align-items: start;
  color: var(--ink-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--anchor);
}
.checkbox.is-invalid { color: var(--error); }
.checkbox.is-invalid input { outline: 2px solid var(--error); outline-offset: 1px; border-radius: var(--r-xs); }

.checkbox.is-invalid input:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.checkbox.is-invalid + .field__error { display: block; }


.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success { display: none; }
.form-success.is-on { display: block; }

.info { display: grid; gap: var(--s-5); }
.info__card { padding: clamp(22px, 2.6vw, 30px); border-radius: var(--r-lg); background: var(--surface-quiet); }
.info__card h3 { font-size: 1.1875rem; }
.info__list { margin-top: var(--s-5); display: grid; gap: var(--s-5); }
.info__list .k { display: block; color: var(--ink-mute); font-size: 0.8125rem; font-weight: 500; }
.info__list .v { display: block; margin-top: 3px; color: var(--ink); font-size: 1rem; font-weight: 500; line-height: 1.45; }
.info__list a.v {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(15, 26, 33, 0.4);
}
.info__list a.v:hover { color: var(--anchor); text-decoration-color: currentColor; }
.info__list address { font-style: normal; }
.info__tel { font-size: 1.375rem; letter-spacing: -0.014em; }

.hours { margin-top: var(--s-5); display: grid; gap: 10px; }
.hours li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px var(--s-4); font-size: 0.9375rem; }
.hours strong { font-weight: 500; white-space: nowrap; }
.hours span { color: var(--ink-mute); white-space: nowrap; }


.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(56px, 9vw, 104px);
}
.empty__title {
  margin-top: var(--s-5);
  font-size: clamp(1.875rem, 1.35rem + 2vw, 2.75rem);   
  line-height: 1.10;
  letter-spacing: -0.024em;
  color: var(--ink);
  font-weight: 600;
}
.empty__note {
  margin-top: var(--s-4);
  max-width: 48ch;
  color: var(--ink-mute);
}

.empty__actions { justify-content: center; margin-top: var(--s-7); }
.empty__back { margin-top: var(--s-6); }


.linkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(272px, 100%), 1fr));
  gap: var(--s-3);
}
.linkgrid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  height: 100%;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--surface-quiet);
  color: var(--ink);
  font-size: 0.9375rem;   
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease),
              transform 0.16s var(--ease);
}

.linkgrid a:hover { transform: translateY(-1px); background: var(--tint); color: var(--anchor); }
.linkgrid svg {
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--link);
  transition: transform 0.2s var(--ease);
}
.linkgrid a:hover svg { transform: translateX(3px); }
.linkgrid__note { display: block; margin-top: 3px; color: var(--ink-mute); font-size: 0.875rem; font-weight: 400; }


.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.56s var(--ease), transform 0.56s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@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 [data-reveal] { opacity: 1 !important; transform: none !important; }
  .svc:hover .frame > img,
  .work__item:hover .frame > img { transform: none !important; }
  
  .btn:hover,
  .areas a:hover,
  .linkgrid a:hover,
  .linkgrid a:hover svg,
  .dock__btn:hover,
  .tlink:hover svg { transform: none !important; }
}

/* Marsh and Meridian identity */
.marsh-meridian-mark{display:inline-grid;width:38px;height:38px;flex:0 0 38px;place-items:center;border:1px solid rgba(14,63,92,.22);border-radius:50%;background:linear-gradient(145deg,#fff,#dfe9ef);color:#0e3f5c;box-shadow:0 9px 22px -16px rgba(14,63,92,.72)}
.marsh-meridian-mark svg{width:29px;height:29px}
.marsh-meridian-footer{display:flex;align-items:center;gap:12px}
.marsh-meridian-footer__text{display:flex;flex-direction:column;gap:3px;line-height:1.05}
.marsh-meridian-footer__text small{font-size:.66rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-mute)}
@media(max-width:520px){.marsh-meridian-mark{width:34px;height:34px;flex-basis:34px}.brand__name{font-size:.96rem}}
