

:root{

  --color-bg:#F5F6F4;
  --color-surface:#FFFFFF;
  --color-forest:#203B2C;
  --color-forest-hover:#182C20;
  --color-field:#55705B;
  --color-soil:#725B46;
  --color-sky:#4F7485;
  --color-text:#17231C;
  --color-muted:#606963;
  --color-border:#D4D9D5;
  --color-border-strong:#BFC6C0;
  --color-soft:#E8ECE8;
  --graphite:#1B2A22;

  --on-dark:#EEF2EE;
  --on-dark-muted:#B7C3BB;

  --r-btn:7px;
  --r-card:8px;
  --r-panel:10px;
  --r-img:8px;

  --wrap:1200px;
  --wrap-narrow:840px;
  --panel-max:650px;

  --sh-1:0 1px 2px rgba(23,35,28,.06);
  --sh-2:0 1px 3px rgba(23,35,28,.08);
  --focus:#1f5fbf;

  --sp-section:clamp(4rem,7.5vw,6rem);
  --gap:clamp(1rem,2.2vw,1.6rem);

  --header-h:70px;

  --ff-sans:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,"Helvetica Neue",sans-serif;
  --ff-head:var(--ff-sans);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  font-family:var(--ff-sans);
  font-size:1.125rem;
  line-height:1.6;
  color:var(--color-text);
  background:var(--color-bg);
  -webkit-font-smoothing:antialiased;
  overflow-wrap:break-word;
  overflow-x:hidden;
}

h1,h2,h3,h4{font-family:var(--ff-head);line-height:1.12;letter-spacing:-.015em;color:var(--color-text);margin:0 0 .5em;font-weight:800}
h3,h4{font-weight:700;letter-spacing:-.01em}
p{margin:0 0 1rem;max-width:66ch}
a{color:var(--color-forest);text-decoration-thickness:.06em;text-underline-offset:.18em}
a:hover{color:var(--color-forest-hover)}
img,svg,video{max-width:100%}
ul{margin:0;padding:0}

.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:clamp(1rem,4vw,2.25rem)}
.wrap--narrow{max-width:var(--wrap-narrow)}
.ico{width:1.3em;height:1.3em;flex:0 0 auto;fill:currentColor}
.ico--sm{width:1.15em;height:1.15em}

.eyebrow{
  font-family:var(--ff-sans);font-size:.8rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--color-field);margin:0 0 .8rem;display:flex;align-items:center;gap:.6rem;
}
.eyebrow::before{content:"";width:1.6rem;height:2px;background:var(--color-field);flex:0 0 auto}
.eyebrow--onDark{color:#cdd8cd}
.eyebrow--onDark::before{background:#9fb3a2}

.skip-link{position:absolute;left:.5rem;top:-3rem;z-index:300;background:var(--color-forest);color:#fff;
  padding:.6rem 1rem;border-radius:var(--r-btn)}
.skip-link:focus{top:.5rem;color:#fff}

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

.site-header{position:sticky;top:0;z-index:100;background:transparent;border-bottom:1px solid transparent;
  transition:background .25s ease,border-color .25s ease}
.site-header.is-solid{background:var(--color-forest);border-bottom-color:rgba(255,255,255,.14)}
.site-header__inner{display:flex;align-items:center;gap:1rem;min-height:66px}

.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;color:#fff;margin-right:auto;min-height:44px}
.brand__mark{
  width:40px;height:40px;flex:0 0 auto;display:grid;place-items:center;border-radius:6px;
  background:#fff;color:var(--color-forest);font-weight:800;font-size:1rem;letter-spacing:.01em
}
.brand__mark--sm{width:36px;height:36px;font-size:.9rem;background:#fff;color:var(--color-forest)}
.brand__text{display:flex;flex-direction:column;line-height:1.2}
.brand__name{font-weight:800;font-size:1.05rem;color:#fff;letter-spacing:-.01em;text-shadow:0 1px 6px rgba(20,30,22,.5)}
.brand__role{font-size:.78rem;color:#e0e8e1;font-weight:600;text-shadow:0 1px 6px rgba(20,30,22,.5)}

.brand__role-short{display:none}

.nav{display:flex;align-items:center}
.nav__toggle{display:none}
.nav__menu{list-style:none;display:flex;gap:.2rem;align-items:center}
.nav__menu a{display:block;padding:.62rem .75rem;border-radius:var(--r-btn);text-decoration:none;color:#fff;font-weight:600;font-size:1rem;text-shadow:0 1px 6px rgba(20,30,22,.45)}
.nav__menu a:hover{background:rgba(255,255,255,.16);color:#fff}
.site-header .header__call{margin-left:.5rem;--btn-bg:#fff;--btn-fg:var(--color-forest);border-color:#fff}
.site-header .header__call:hover{--btn-bg:#e9efe9;--btn-fg:var(--color-forest-hover);border-color:#e9efe9}
.header__call-text{display:inline}

.btn{
  --btn-bg:var(--color-forest);--btn-fg:#fff;
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--ff-sans);font-weight:700;font-size:1rem;line-height:1.1;
  padding:.72rem 1.15rem;min-height:46px;border-radius:var(--r-btn);
  background:var(--btn-bg);color:var(--btn-fg);border:1.5px solid transparent;
  text-decoration:none;cursor:pointer;transition:background .15s ease,border-color .15s ease,color .15s ease;
}
.btn--primary{--btn-bg:var(--color-forest)}
.btn--primary:hover{--btn-bg:var(--color-forest-hover);color:#fff}
.btn--ghost{--btn-bg:transparent;--btn-fg:var(--color-forest);border-color:var(--color-border-strong)}
.btn--ghost:hover{--btn-bg:var(--color-soft);--btn-fg:var(--color-forest)}
.btn--onPanel{--btn-bg:transparent;--btn-fg:#fff;border-color:rgba(255,255,255,.55)}
.btn--onPanel:hover{--btn-bg:rgba(255,255,255,.12);--btn-fg:#fff;border-color:#fff}
.btn--onGraphite{--btn-bg:transparent;--btn-fg:#fff;border-color:rgba(255,255,255,.5)}
.btn--onGraphite:hover{--btn-bg:rgba(255,255,255,.12);--btn-fg:#fff;border-color:#fff}
.btn--lg{font-size:1.06rem;padding:.9rem 1.4rem;min-height:54px}
.btn--block{width:100%}

.hero{
  position:relative;overflow:hidden;text-align:left;
  display:grid;grid-template-rows:1fr auto;
  margin-top:calc(-1 * var(--header-h));
  min-height:max(680px, 100svh);
  padding-top:calc(var(--header-h) + clamp(1rem,3vh,2rem));
  background:var(--color-forest);
  isolation:isolate;
}
.hero__media{position:absolute;inset:0;z-index:-1;overflow:hidden}
.hero__poster,.hero__poster img,.hero__video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 50%;display:block;
}

.hero__poster img,.hero__video{filter:brightness(1.06) saturate(1.05)}
.hero__video{opacity:0;transition:opacity .8s ease}
.hero.is-playing .hero__video{opacity:1}

.hero.is-resetting .hero__video{transition:opacity .22s ease}
@media (prefers-reduced-motion:reduce){.hero__video,.hero.is-resetting .hero__video{transition:none}}

.hero__scrim{position:absolute;inset:0;pointer-events:none;
  background:

    linear-gradient(180deg, rgba(16,26,19,.58) 0%, rgba(16,26,19,.45) 8%, rgba(16,26,19,.15) 16%, rgba(16,26,19,0) 30%),

    linear-gradient(0deg, rgba(13,22,16,.72) 0%, rgba(13,22,16,.47) 18%, rgba(13,22,16,.19) 38%, rgba(13,22,16,0) 62%),

    linear-gradient(90deg, rgba(13,22,16,.44) 0%, rgba(13,22,16,.18) 44%, rgba(13,22,16,0) 70%);
}

.hero__inner{position:relative;width:100%;display:flex;align-items:flex-end;justify-content:flex-start;
  padding-bottom:clamp(1.75rem,14vh,15rem)}

.hero__content{max-width:700px;color:#fff}

.hero__base{position:relative;display:flex;align-items:center;gap:clamp(1rem,2.5vw,2rem);
  padding-bottom:clamp(1.35rem,3.4vh,2.6rem)}
.hero__baseline{display:block;flex:1 1 auto;height:1px;
  background:linear-gradient(90deg,rgba(255,255,255,.34) 0%,rgba(255,255,255,.16) 55%,rgba(255,255,255,.06) 100%)}

.hero__rule{display:block;width:54px;height:2px;background:rgba(255,255,255,.8);margin:0 0 1.35rem}

.hero__name{font-size:.82rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:#dde7de;margin:0 0 1.1rem;max-width:none;
  text-shadow:0 1px 3px rgba(13,22,16,.78),0 2px 14px rgba(13,22,16,.6)}

.hero__title{
  font-size:clamp(2.35rem,4.1vw,3.75rem);line-height:1.06;letter-spacing:-.022em;font-weight:800;color:#fff;
  margin:0 0 .95rem;overflow-wrap:normal;word-break:keep-all;
  text-shadow:0 2px 26px rgba(13,22,16,.55),0 1px 4px rgba(13,22,16,.64);
}

.hero__tagline{font-size:clamp(1.05rem,1.35vw,1.3rem);color:#eaf1ea;margin:0 0 1.15rem;max-width:66ch;
  font-weight:500;line-height:1.5;text-shadow:0 1px 4px rgba(13,22,16,.72),0 2px 14px rgba(13,22,16,.55)}
.hero__tagline-line{display:block}

.hero__note{font-size:.98rem;color:#d3ded4;margin:0 0 2.1rem;max-width:none;text-align:left;
  display:inline-flex;align-items:center;gap:.6rem;text-shadow:0 1px 8px rgba(13,22,16,.55)}
.hero__note::before{content:"";width:5px;height:5px;border-radius:50%;background:#a8bcab;flex:0 0 auto}
.hero__actions{display:flex;flex-wrap:wrap;gap:.5rem 1.5rem;justify-content:flex-start;align-items:center}
.hero__actions .btn--primary{box-shadow:0 6px 24px rgba(10,18,13,.42)}

.hero__link{display:inline-flex;align-items:center;gap:.35rem;color:#fff;font-weight:700;font-size:1.02rem;
  padding-block:.6rem;text-decoration:underline;text-underline-offset:.2em;text-shadow:0 1px 8px rgba(13,22,16,.55)}
.hero__link:hover{color:#fff}

.hero__scroll{position:relative;z-index:2;flex:0 0 auto;
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;margin-right:calc(-1 * clamp(.5rem,1vw,.75rem));
  color:rgba(255,255,255,.82);text-decoration:none}
.hero__scroll:hover{color:#fff}
.hero__scroll svg{width:22px;height:22px}
@media (prefers-reduced-motion:no-preference){
  .hero__scroll svg{animation:heroBob 2.1s ease-in-out infinite}
  @keyframes heroBob{0%,100%{transform:translateY(0)}50%{transform:translateY(4px)}}
}

@media (min-width:1600px){
  .hero__content{max-width:900px}
  .hero__rule{width:72px;height:2px;margin-bottom:1.6rem}
  .hero__name{font-size:.92rem;letter-spacing:.22em;margin-bottom:1.3rem}
  .hero__title{font-size:clamp(3.75rem,4.4vw,4.75rem);margin-bottom:1.15rem}

  .hero__tagline{font-size:1.3rem;max-width:none;margin-bottom:1.35rem}
  .hero__note{font-size:1.05rem;margin-bottom:2.5rem}
  .hero__inner{padding-bottom:clamp(6rem,15vh,15rem)}
}

@media (min-width:1200px) and (max-width:1599.98px){
  .hero__content{max-width:760px}
  .hero__title{font-size:clamp(3rem,4.3vw,4rem)}
  .hero__tagline{font-size:1.2rem;max-width:none}
}

@media (min-width:1000px) and (max-width:1199.98px){
  .hero__content{max-width:660px}
  .hero__title{font-size:clamp(2.6rem,4.6vw,3.3rem)}
  .hero__tagline{font-size:1.08rem;max-width:none}
  .hero__inner{padding-bottom:clamp(1.5rem,11vh,8rem)}
}

@media (min-width:769px) and (max-width:999.98px){
  .hero__content{max-width:600px}
  .hero__title{font-size:clamp(2.35rem,5.2vw,2.95rem)}

  .hero__tagline{font-size:1rem;max-width:none;margin-bottom:1rem}
  .hero__note{margin-bottom:1.8rem}
  .hero__inner{padding-bottom:clamp(1.5rem,9vh,6rem)}
  .hero__base{padding-bottom:clamp(1.1rem,2.6vh,1.8rem)}
}

@media (min-width:769px) and (max-height:820px){
  .hero__inner{padding-bottom:clamp(1.25rem,8vh,5rem)}
  .hero__base{padding-bottom:clamp(1rem,2.2vh,1.5rem)}
  .hero__note{margin-bottom:1.7rem}
}

.authority{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1fr);gap:clamp(1.75rem,4.5vw,3.5rem);align-items:start}
.authority__figure{margin:0;border-radius:var(--r-img);overflow:hidden;border:1px solid var(--color-border);background:var(--color-soft)}
.authority__figure picture{display:block;aspect-ratio:4/5}
.authority__figure img{width:100%;height:100%;object-fit:cover;object-position:50% 50%;display:block}
.authority__body{min-width:0}
.authority__name{font-size:clamp(1.75rem,3.2vw,2.5rem);margin:0 0 .3rem}
.authority__role{
  color:var(--color-forest);font-weight:700;font-size:1.02rem;margin:0 0 1.15rem;
  max-width:46ch;line-height:1.4;
}
.authority__role-2{color:var(--color-muted);font-weight:600}
.authority__lead{color:var(--color-muted);font-size:1.05rem;margin:0 0 1.5rem;max-width:56ch}

.authority__count{
  display:grid;grid-template-columns:auto 1fr;gap:0 clamp(.9rem,2.2vw,1.4rem);align-items:center;
  margin:0 0 1.6rem;padding:clamp(.9rem,2.2vw,1.15rem) 0;
  border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border);
  max-width:none;
}
.authority__count-num{
  font-size:clamp(2.6rem,5.2vw,3.6rem);font-weight:800;line-height:1;color:var(--color-forest);
  letter-spacing:-.03em;font-variant-numeric:tabular-nums;
}
.authority__count-label{color:var(--color-muted);font-size:.96rem;line-height:1.45;max-width:34ch}

.authority .deflist{margin-bottom:1.35rem}
.authority__verify{margin:0 0 1.6rem;display:grid;gap:.15rem}
.authority__verify .arrow-link{font-size:.98rem;max-width:100%}
.authority__verify-note{font-size:.8rem;color:var(--color-muted)}

.section{padding:var(--sp-section) 0}
.section--soft{background:var(--color-soft)}
.section--surface{background:var(--color-surface)}

.section--surface + .section--surface{border-top:1px solid var(--color-border)}
.section__head{max-width:60ch;margin-bottom:clamp(1.75rem,4vw,2.5rem)}
.section__head--center{margin-inline:auto;text-align:center}
.section__head--center .eyebrow{justify-content:center}
.section__title{font-size:clamp(1.75rem,3.6vw,2.75rem)}
.section__intro{color:var(--color-muted);font-size:1.1rem;margin:0}

.services{border-top:1px solid var(--color-border)}

.service-row{
  display:grid;grid-template-columns:48px 1fr;align-items:start;gap:1.45rem;
  padding:1.7rem .25rem;border-bottom:1px solid var(--color-border);
}
.service-row__ico{display:grid;place-items:center;width:48px;height:48px;border-radius:var(--r-card);
  background:var(--color-soft);color:var(--color-forest);border:1px solid var(--color-border)}
.service-row__ico svg{width:26px;height:26px}

.service-row__title{font-size:1.3rem;margin:0 0 .25rem;padding-top:.1rem}
.service-row__body p{margin:0;color:var(--color-muted);font-size:1.04rem;max-width:70ch}

.strip-section{padding:clamp(1.75rem,4.5vw,3rem) 0}
.photo-strip{margin:0;background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--r-img);overflow:hidden}

.photo-strip__frame{display:block;aspect-ratio:16/7;overflow:hidden}
.photo-strip__frame img{width:100%;height:100%;object-fit:cover;display:block}
.photo-strip--land .photo-strip__frame img{object-position:50% 46%}

.photo-strip--vine .photo-strip__frame img{object-position:50% 70%}
.photo-strip figcaption{padding:.75rem 1.1rem;font-size:.9rem;color:var(--color-muted);
  border-top:1px solid var(--color-border);background:var(--color-bg)}
.photo-strip figcaption strong{color:var(--color-forest);font-weight:700}

.audience{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap);align-items:start}
.audience__col{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--r-card);padding:1.6rem 1.5rem}

.audience__col--pro{background:var(--color-soft);border-color:var(--color-border-strong)}

.audience__h{font-size:1.2rem;line-height:1.25;margin:0 0 .5rem;text-wrap:balance}
@media (min-width:721px){.audience__h{min-height:3rem}}
.audience__sub{color:var(--color-muted);font-size:.95rem;margin:0 0 1rem;padding-bottom:.9rem;border-bottom:1px solid var(--color-border)}
.audience__lead{color:var(--color-text);font-size:1rem;margin:0 0 1.1rem;padding-bottom:1rem;border-bottom:1px solid var(--color-border)}

.pro{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3rem);align-items:center}
.pro__text .section__title{margin-bottom:1rem}
.pro__text p{color:var(--color-muted);max-width:56ch}

.pro__aside{
  background:var(--color-soft);border:1px solid var(--color-border-strong);
  border-radius:var(--r-card);
  padding:clamp(1.25rem,3vw,1.85rem);align-self:start;
}
.pro__aside-h{font-size:1.12rem;margin:0 0 .7rem;color:var(--color-forest)}
.pro__aside p{color:var(--color-muted);font-size:1rem;max-width:52ch}
.pro__aside p:last-child{margin-bottom:0}

.arrow-link{display:inline-flex;align-items:center;gap:.4rem;font-weight:700;color:var(--color-forest);
  text-decoration:none;margin-top:.1rem;padding-block:.66rem}
.arrow-link svg{width:1.1em;height:1.1em}
.arrow-link:hover{color:var(--color-forest-hover);text-decoration:underline;text-underline-offset:.2em}
.arrow-link:hover svg{transform:translateX(2px)}
.arrow-link svg{transition:transform .15s ease}
@media (prefers-reduced-motion:reduce){.arrow-link svg{transition:none}}
.ticklist{list-style:none;display:grid;gap:.6rem}
.ticklist li{position:relative;padding-left:1.9rem;color:var(--color-text);font-size:1.04rem}
.ticklist li::before{content:"";position:absolute;left:0;top:.12em;width:1.3rem;height:1.3rem;border-radius:4px;
  background:var(--color-field);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center/70% no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center/70% no-repeat}

.timeline{list-style:none;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);position:relative;margin:0}
.timeline::before{content:"";position:absolute;left:0;right:0;top:26px;height:2px;background:var(--color-border)}
.tl-step{position:relative;padding-right:1rem}

.tl-num{display:grid;place-items:center;width:54px;height:54px;border-radius:8px;background:var(--color-forest);color:#fff;
  font-size:1.7rem;font-weight:800;line-height:1;position:relative;z-index:1;margin-bottom:1rem;
  font-variant-numeric:tabular-nums}
.tl-title{font-size:1.2rem;margin:0 0 .3rem}
.tl-step p{margin:0;color:var(--color-muted);font-size:1.02rem}

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

.deflist{list-style:none;display:grid;gap:0;margin:0 0 1.3rem;border-top:1px solid var(--color-border)}
.deflist li{display:grid;grid-template-columns:auto 1fr;gap:1rem;padding:.7rem 0;border-bottom:1px solid var(--color-border)}
.deflist dt,.deflist .k{font-size:.82rem;text-transform:uppercase;letter-spacing:.06em;color:var(--color-muted);font-weight:700;white-space:nowrap}
.deflist .v{font-weight:600;color:var(--color-text);text-align:right}

.deflist li.deflist__li--wide{align-items:start}
.deflist .k--wide{white-space:normal;line-height:1.35;letter-spacing:.05em}
.deflist li.deflist__li--wide .v{padding-top:.05rem}

.faq{display:grid;gap:.6rem}
.faq__item{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--r-card);overflow:hidden}
.faq__item summary{
  list-style:none;cursor:pointer;padding:1.1rem 1.25rem;font-weight:700;font-size:1.08rem;color:var(--color-text);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:56px
}
.faq__item summary:hover{background:var(--color-bg)}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary::after{content:"";width:1.1rem;height:1.1rem;flex:0 0 auto;
  background:var(--color-field);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition:transform .18s}
.faq__item[open] summary::after{transform:rotate(180deg)}
.faq__a{padding:0 1.25rem 1.15rem}
.faq__a p{margin:0;color:var(--color-muted)}
@media (prefers-reduced-motion:reduce){.faq__item summary::after{transition:none}}

.contact{background:var(--color-soft)}
.contact__panel{
  background:var(--graphite);color:var(--on-dark);border-radius:var(--r-panel);
  padding:clamp(1.6rem,4vw,2.75rem);display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.5rem,4vw,2.5rem);align-items:center
}
.contact__title{color:#fff}
.contact__hint{color:#cdd6cf;font-size:1.08rem;margin:0;max-width:42ch}
.contact__actions{display:grid;gap:.7rem}

.contact__phone{font-weight:800;font-size:clamp(1.6rem,3vw,2.05rem);color:#fff;text-align:center;text-decoration:none;letter-spacing:.01em;padding-block:.4rem}
.contact__phone:hover{color:#fff;text-decoration:underline}
.contact__or{text-align:center;color:#9fb3a2;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase}
.contact__email{color:#cdd6cf;text-align:center;font-size:.98rem;word-break:break-all;padding-block:.6rem}
.contact__email:hover{color:#fff}

.site-footer{background:var(--color-text);color:#c5ccc6;padding:2.75rem 0}
.site-footer__inner{display:grid;gap:1.2rem}
.site-footer__brand{display:flex;align-items:center;gap:.8rem}
.site-footer__name{color:#fff;font-weight:800;margin:0;font-size:1.08rem}
.site-footer__role{margin:0;font-size:.9rem;color:#a9b1ab}

.site-footer__contact{display:flex;flex-wrap:wrap;gap:0 1.5rem}
.site-footer__contact a{color:#e2e7e3;font-weight:600;text-decoration:none;padding-block:.5rem}
.site-footer__contact a:hover{color:#fff;text-decoration:underline}
.site-footer__note{margin:0;font-size:.85rem;color:#98a09a;max-width:74ch}
.site-footer__credit{margin:0;font-size:.82rem;color:#949c96}
.site-footer__credit a{color:#c5ccc6;text-decoration:underline;text-underline-offset:2px;padding-block:.35rem}
.site-footer__credit a:hover{color:#fff}

.callbar{display:none}
@media (max-width:768px){
  .callbar{
    display:flex;align-items:center;justify-content:center;gap:.55rem;
    position:fixed;left:.75rem;right:.75rem;bottom:calc(.75rem + env(safe-area-inset-bottom,0px));z-index:120;
    background:var(--color-forest);color:#fff;font-weight:700;font-size:1.1rem;
    padding:.9rem 1rem;min-height:54px;border-radius:var(--r-btn);text-decoration:none;
    box-shadow:0 6px 18px rgba(23,35,28,.28);

    visibility:hidden;opacity:0;transform:translateY(140%);pointer-events:none;
    transition:transform .28s ease,opacity .24s ease,visibility 0s linear .28s;
  }
  .callbar.is-visible{
    visibility:visible;opacity:1;transform:translateY(0);pointer-events:auto;
    transition:transform .28s ease,opacity .24s ease,visibility 0s linear 0s;
  }
  .callbar:hover{color:#fff;background:var(--color-forest-hover)}
}
@media (prefers-reduced-motion:reduce){
  .callbar{transition:none}
}

.to-top{
  position:fixed;z-index:115;
  right:clamp(1rem,2.2vw,1.75rem);
  bottom:clamp(1rem,2.2vw,1.75rem);
  width:46px;height:46px;display:grid;place-items:center;
  border-radius:var(--r-btn);
  background:rgba(27,42,34,.9);color:#fff;border:1px solid rgba(255,255,255,.28);
  text-decoration:none;
  opacity:0;visibility:hidden;transform:translateY(10px);pointer-events:none;
  transition:opacity .26s cubic-bezier(.22,1,.36,1),transform .26s cubic-bezier(.22,1,.36,1),
             visibility 0s linear .26s,background .15s ease,border-color .15s ease;
}
.to-top.is-visible{opacity:1;visibility:visible;transform:none;pointer-events:auto;transition-delay:0s}
.to-top:hover{background:var(--color-forest-hover);border-color:rgba(255,255,255,.5);color:#fff}
.to-top svg{width:20px;height:20px;display:block}
@media (max-width:768px){

  .to-top{width:44px;height:44px;right:.75rem;
    bottom:calc(.75rem + 54px + .6rem + env(safe-area-inset-bottom,0px))}
}
@media (prefers-reduced-motion:reduce){
  .to-top{transition:opacity .01s linear,visibility 0s linear .01s}
  .to-top.is-visible{transform:none;transition-delay:0s}
}

@media (min-width:861px) and (max-width:1100px){
  .site-header__inner{gap:.6rem}
  .brand{gap:.55rem}
  .brand__name{font-size:.98rem;white-space:nowrap}
  .brand__role{font-size:.72rem;white-space:nowrap}
  .brand__role-full{display:none}
  .brand__role-short{display:inline}
  .nav__menu a{padding:.6rem .52rem;font-size:.94rem;white-space:nowrap}
  .site-header .header__call{margin-left:.25rem;padding:.72rem .85rem}
}

@media (max-width:1000px){
  .authority{grid-template-columns:1fr}

  .authority__figure{order:-1;max-width:460px;margin-inline:auto}
  .pro{grid-template-columns:1fr}
  .contact__panel{grid-template-columns:1fr}

  .authority__figure,.authority__body,.pro__text,.pro__aside,.contact__text,.contact__actions{min-width:0}
}

@media (max-width:860px){
  .nav__toggle{display:inline-flex;align-items:center;gap:.5rem;background:var(--color-surface);
    border:1px solid var(--color-border-strong);border-radius:var(--r-btn);
    padding:.5rem .8rem;min-height:44px;font-weight:700;color:var(--color-forest);cursor:pointer;font-size:1rem}
  .nav__toggle-bars{width:20px;height:14px;position:relative;display:inline-block}
  .nav__toggle-bars span{position:absolute;left:0;width:100%;height:2px;background:currentColor;border-radius:2px;transition:transform .2s,opacity .2s}
  .nav__toggle-bars span:nth-child(1){top:0}
  .nav__toggle-bars span:nth-child(2){top:6px}
  .nav__toggle-bars span:nth-child(3){top:12px}
  .nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1){transform:translateY(6px) rotate(45deg)}
  .nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2){opacity:0}
  .nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .nav__menu{position:absolute;left:0;right:0;top:100%;flex-direction:column;align-items:stretch;gap:0;
    background:var(--color-surface);border-bottom:1px solid var(--color-border);box-shadow:var(--sh-2);padding:.5rem;display:none}
  .nav__menu.is-open{display:flex}
  .nav__menu a{padding:.85rem 1rem;font-size:1.1rem;color:var(--color-text);text-shadow:none}
  .nav__menu a:hover{background:var(--color-soft);color:var(--color-forest)}
  .nav__menu li+li a{border-top:1px solid var(--color-border)}
  .site-header__inner{position:relative;flex-wrap:wrap}
  .header__call-text{display:none}
  .header__call{padding:.6rem;min-width:44px}
  .header__call .ico{margin:0}
  @media (prefers-reduced-motion:reduce){.nav__toggle-bars span{transition:none}}
}

@media (max-width:768px){

  .hero{min-height:max(600px, 100svh);
    padding-top:calc(var(--header-h) + clamp(1rem,4vh,2rem))}

  .hero__inner{padding-bottom:clamp(2.5rem,12vh,7rem)}
  .hero__poster img,.hero__poster{object-position:50% 46%}

  .hero__scrim{
    background:
      linear-gradient(180deg, rgba(16,26,19,.56) 0%, rgba(16,26,19,.19) 13%, rgba(16,26,19,0) 30%),
      linear-gradient(0deg, rgba(13,22,16,.88) 0%, rgba(13,22,16,.72) 22%, rgba(13,22,16,.35) 46%, rgba(13,22,16,.05) 72%);
  }

  .hero__title{font-size:min(7.9vw,2.75rem);line-height:1.07;max-width:none;
    overflow-wrap:normal;word-break:keep-all;margin-bottom:.85rem}

  .hero__content{max-width:none;width:100%}
  .hero__rule{width:44px;margin-bottom:1.1rem}
  .hero__name{font-size:.74rem;letter-spacing:.18em;margin-bottom:.9rem}

  .hero__tagline{font-size:1.05rem;max-width:34ch;margin-bottom:.9rem;text-wrap:pretty}
  .hero__tagline-line{display:inline}
  .hero__note{margin-bottom:1.7rem;font-size:.9rem}
  .hero__actions{gap:.6rem 1.1rem}

  .authority__count{grid-template-columns:1fr;gap:.35rem}
  .authority__count-label{max-width:none}

  .deflist li,.deflist li.deflist__li--wide{grid-template-columns:1fr;gap:.15rem;padding:.65rem 0}
  .deflist .v,.deflist li.deflist__li--wide .v{text-align:left;padding-top:0}

  .deflist .k--wide br{display:none}

  .site-header .header__call{display:none}

  .site-header__inner{
    display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;
    gap:.6rem;flex-wrap:nowrap;min-height:64px;
  }
  .brand{min-width:0;margin-right:0;gap:.55rem}
  .brand__mark{width:40px;height:40px;font-size:.95rem}
  .brand__text{min-width:0}

  .brand__name{font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
  .brand__role{font-size:.68rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
  .nav{justify-self:end}
  .nav__toggle{white-space:nowrap;flex:0 0 auto}
}

@media (max-width:375px){
  .site-header__inner{gap:.45rem}
  .brand{gap:.45rem}
  .brand__mark{width:38px;height:38px}
  .brand__name{font-size:.9rem}
  .brand__role{font-size:.6rem}
  .brand__role-full{display:none}
  .brand__role-short{display:inline}
  .nav__toggle{padding:.5rem .62rem;gap:.4rem;font-size:.95rem}
}

@media (max-width:720px){

  .hero{grid-template-rows:1fr}
  .hero__base{display:none}

  .service-row{grid-template-columns:44px 1fr;gap:1.05rem}
  .service-row__ico{width:44px;height:44px}
  .audience{grid-template-columns:1fr}

  .timeline{grid-template-columns:1fr;gap:0}
  .timeline::before{left:26px;right:auto;top:0;bottom:0;width:2px;height:auto}
  .tl-step{display:grid;grid-template-columns:54px 1fr;gap:1rem;padding:0 0 1.5rem;align-items:start}
  .tl-num{margin-bottom:0}
  .tl-step > *:not(.tl-num){grid-column:2}
  .tl-title{margin-top:.35rem}
}

@media (max-width:600px){

  .hero__actions{flex-direction:column;align-items:stretch;gap:.85rem}
  .hero__actions .btn{width:100%}
  .hero__link{align-self:flex-start;padding-block:.5rem}

  .strip-section--vine{display:none}

  .photo-strip__frame{aspect-ratio:4/3}
  .photo-strip--land .photo-strip__frame img{object-position:50% 55%}
}

@media (max-width:400px){

  .callbar{font-size:1.05rem}
}

@media (max-height:560px) and (min-width:769px){
  .hero{min-height:calc(100svh - var(--header-h));padding-block:1.5rem}
}

@media print{
  .site-header,.callbar,.to-top,.hero__media,.hero__scrim,.hero__actions,.hero__base,.hero__scroll,.hero__rule,.strip-section,.faq__item summary::after{display:none!important}
  body{background:#fff;color:#000;font-size:12pt;padding:0}
  .hero{min-height:auto;background:#fff;padding:1rem 0;margin-top:0;display:block}
  .hero__inner{padding-bottom:0}
  .hero__content{color:#000;max-width:none}
  .hero__title,.hero__tagline,.hero__note,.hero__name{color:#000;text-shadow:none}
  .section{padding:1rem 0}
  a{color:#000;text-decoration:none}
  .contact__panel,.audience__col,.pro__aside,.faq__item,.service-row{box-shadow:none;border:1px solid #999}
  .contact__panel{background:#fff;color:#000}
  .contact__title,.contact__phone,.contact__hint,.contact__email,.contact__or{color:#000}
}
