
.kicker { font-family: var(--sans); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 14px; letter-spacing: .1em; color: var(--red); margin-bottom: 22px; }

.opener {
  position: relative; height: 44vh; min-height: 340px; max-height: 480px;
  overflow: hidden; background: var(--black); display: flex; align-items: center;
}
.opener-media { position: absolute; inset: 0; }
.opener-media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.opener-scrim {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.42) 55%, rgba(0,0,0,.55));
}
.opener-grid {
  position: absolute; inset: 0; z-index: 10; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 50px 50px;
}
.opener-content { position: relative; z-index: 20; padding-top: 40px; }
.crumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 12px; color: rgba(255,255,255,.6); }
.crumb a { transition: color .3s; }
.crumb a:hover { color: var(--red); }
.crumb span[aria-hidden] { color: rgba(255,255,255,.28); }
.opener-kicker {
  font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--red);
  letter-spacing: .5em; text-transform: uppercase; margin-bottom: 16px;
}
.opener-title {
  font-size: clamp(38px, 5.6vw, 84px); line-height: .9; font-weight: 900;
  letter-spacing: -.04em; text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.opener-title .line { display: block; }
.opener-line {
  margin-top: 26px; max-width: 26em;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.45; color: rgba(255,255,255,.82);
}
.crumb, .opener-kicker, .opener-title .line, .opener-line { animation: rise 1s cubic-bezier(.16,1,.3,1) both; }
.opener-line { animation-delay: .22s; }
@keyframes rise { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }

.chan { padding-block: var(--sect); background: var(--white); }
.chan-head { margin-bottom: 48px; }
.chan-head h2 {
  font-size: clamp(34px, 3.6vw, 52px); font-weight: 900; text-transform: uppercase;
  line-height: .95; letter-spacing: -.03em; color: var(--slate-900);
}
.chan-head h2 .outline { color: transparent; -webkit-text-stroke: 1px var(--black); }

.chan-list { border-top: 1px solid var(--slate-200); }
.chan-row {
  position: relative; display: grid; grid-template-columns: 160px minmax(0, 1fr) 32px;
  align-items: center; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid var(--slate-200);
}
.chan-rule {
  position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.chan-row:hover .chan-rule, .chan-row:focus-visible .chan-rule { transform: scaleX(1); }
.chan-label { font-size: 14px; color: var(--slate-600); transition: color .3s; }
.chan-val {
  font-size: clamp(24px, 3.3vw, 46px); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.05; color: var(--slate-900); overflow-wrap: anywhere;
  transition: color .3s;
}
.chan-val.num { font-variant-numeric: tabular-nums; }
.chan-arw { color: var(--slate-300); transition: color .3s, transform .3s; }
.chan-row:hover .chan-val, .chan-row:focus-visible .chan-val { color: var(--red); }
.chan-row:hover .chan-label, .chan-row:focus-visible .chan-label { color: var(--slate-900); }
.chan-row:hover .chan-arw, .chan-row:focus-visible .chan-arw { color: var(--red); transform: translate(4px, -4px); }

.frm-sec { position: relative; padding-block: var(--sect); background: #e2e4e8; color: var(--zinc-950); scroll-margin-top: 90px; }
.frm-inner { position: relative; z-index: 10; display: grid; grid-template-columns: 4fr 7fr; gap: 72px; align-items: start; }
.frm-head h2 {
  font-size: clamp(40px, 4.6vw, 68px); font-weight: 900; text-transform: uppercase;
  line-height: .86; letter-spacing: -.04em; color: var(--zinc-950);
}
.frm-head h2 .outline { color: transparent; -webkit-text-stroke: 1px var(--black); }
.frm-rule { margin-top: 32px; width: 56px; height: 3px; background: var(--red); }

.frm { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 32px; }
.f-wide { grid-column: 1 / -1; }
.frm label { display: block; margin-bottom: 10px; font-size: 13.5px; font-weight: 600; color: var(--zinc-600); }
.req { color: var(--red); margin-left: 4px; }
.frm input, .frm select, .frm textarea {
  width: 100%; padding: 15px 18px; border-radius: 0;
  font-family: var(--sans); font-size: 16px; line-height: 1.4; color: var(--zinc-950);
  background: var(--white); border: 1px solid var(--zinc-300);
  transition: border-color .3s, box-shadow .3s;
}
.frm textarea { min-height: 168px; resize: vertical; }
.frm input:hover, .frm select:hover, .frm textarea:hover { border-color: var(--zinc-500); }
.frm input:focus, .frm select:focus, .frm textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(237, 29, 36, .22);
}
.frm input:-webkit-autofill { -webkit-text-fill-color: var(--zinc-950); -webkit-box-shadow: 0 0 0 1000px var(--white) inset; }
.sel { position: relative; }
.sel select { appearance: none; -webkit-appearance: none; padding-right: 52px; cursor: pointer; }
.sel-arw { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--zinc-500); }
.frm-send {
  grid-column: 1 / -1; justify-self: start; margin-top: 6px;
  padding: 18px 46px; border: 1px solid var(--zinc-950);
  font-size: 14px; font-weight: 700; letter-spacing: .12em; color: var(--zinc-950);
  transition: background-color .4s, border-color .4s, color .4s;
}
.frm-send:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.frm-send:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(237, 29, 36, .5); }

.frm-note {
  grid-column: 1 / -1; margin: 0; padding: 14px 18px;
  background: var(--white); border: 1px solid var(--zinc-300); border-left: 3px solid var(--red);
  font-size: 15px; line-height: 1.5; color: var(--zinc-950);
}

.tel { position: relative; display: flex; }
.tel input { min-width: 0; }
.tel-cc {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  padding: 0 13px 0 16px; border: 1px solid var(--zinc-300); border-right: 0;
  background: var(--white); color: var(--zinc-950); cursor: pointer;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: border-color .3s;
}
.tel-cc svg { color: var(--zinc-500); transition: transform .3s; }
.tel-cc:hover { border-color: var(--zinc-500); }
.tel-cc:focus-visible { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(237, 29, 36, .12); }
.tel-cc[aria-expanded="true"] svg { transform: rotate(180deg); }
.tel-cc-code { display: inline-block; }
.tel-cc.flip .tel-cc-code { animation: tel-drop .45s cubic-bezier(.2, .9, .3, 1); }
.tel-cc.flip { animation: tel-ring .7s ease-out; }
@keyframes tel-drop { from { transform: translateY(9px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes tel-ring {
  0% { box-shadow: 0 0 0 3px rgba(237, 29, 36, .4); border-color: var(--red); }
  100% { box-shadow: 0 0 0 3px rgba(237, 29, 36, 0); }
}

.tel-panel {
  position: absolute; z-index: 30; top: calc(100% + 8px); left: 0;
  width: min(380px, 100%);
  background: var(--white); border: 1px solid var(--zinc-300);
  box-shadow: 0 24px 56px rgba(9, 9, 11, .16);
}
.tel-search {
  width: 100%; padding: 14px 16px; border: 0; border-bottom: 1px solid var(--zinc-200);
  font-family: var(--sans); font-size: 16px; color: var(--zinc-950); background: var(--white);
}
.tel-search::placeholder { color: var(--zinc-500); }
.tel-search:focus { outline: none; border-bottom-color: var(--red); }
.tel-list {
  margin: 0; padding: 6px 0; list-style: none;
  max-height: 316px; overflow-y: auto; overscroll-behavior: contain;
}
.tel-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 9px 16px; font-size: 14.5px; color: var(--zinc-950); cursor: pointer;
}
.tel-list li[hidden] { display: none; }
.tel-list li:hover, .tel-list li:focus-visible { background: #f1f2f4; outline: none; }
.tel-list li[aria-selected="true"] { background: var(--zinc-950); color: var(--white); }
.tel-list li[aria-selected="true"] .tel-dial { color: var(--zinc-400); }
.tel-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tel-dial { flex: none; color: var(--zinc-500); font-weight: 600; font-variant-numeric: tabular-nums; }
.tel-first { border-top: 1px solid var(--zinc-200); margin-top: 6px; padding-top: 15px; }
.tel-list.searching .tel-first { border-top: 0; margin-top: 0; padding-top: 9px; }

.frm-ok { display: none; }
.frm-ok.on, .frm-ok:target { display: block; }
.frm-ok:target ~ .frm, .frm.is-gone { display: none; }

.ok-gauge { position: relative; height: 2px; margin-bottom: 44px; background: var(--zinc-300); overflow: hidden; }
.ok-gauge::after {
  content: ""; position: absolute; inset: 0; background: var(--red);
  transform: scaleX(0); transform-origin: left;
}
.frm-ok.on .ok-gauge::after { transform: none; transition: transform .9s cubic-bezier(.16, 1, .3, 1) .1s; }
.frm-ok:target .ok-gauge::after { transform: none; }

.ok-h {
  margin: 0; font-size: clamp(40px, 4.6vw, 68px); font-weight: 900; text-transform: uppercase;
  line-height: .86; letter-spacing: -.04em; color: var(--zinc-950);
}
.ok-h .outline { color: transparent; -webkit-text-stroke: 1px var(--black); }
.ok-lead { margin: 36px 0 0; font-size: 18px; font-weight: 600; color: var(--zinc-950); }
.ok-mail { margin: 10px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--zinc-600); }
.ok-mail strong { color: var(--zinc-950); font-weight: 700; }
.ok-foot { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--zinc-300); }
.ok-again { display: inline-block; text-decoration: none; text-align: center; }
.ok-again:hover { text-decoration: none; }

.frm-ok.on .ok-h { animation: ok-wipe .7s cubic-bezier(.16, 1, .3, 1) .25s both; }
.frm-ok.on .ok-lead { animation: ok-rise .6s cubic-bezier(.16, 1, .3, 1) .55s both; }
.frm-ok.on .ok-mail { animation: ok-rise .6s cubic-bezier(.16, 1, .3, 1) .68s both; }
.frm-ok.on .ok-foot { animation: ok-rise .6s cubic-bezier(.16, 1, .3, 1) .85s both; }
@keyframes ok-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes ok-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.loc { padding-block: var(--sect); background: var(--white); }
.loc-inner {
  display: grid; grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
}
.loc-rail-in { position: sticky; top: 110px; }
.loc-rail h2 {
  font-size: clamp(34px, 3.6vw, 52px); font-weight: 900; text-transform: uppercase;
  line-height: .95; letter-spacing: -.03em; color: var(--slate-900);
}
.loc-rail h2 .outline { color: transparent; -webkit-text-stroke: 1px var(--black); }

.loc-group {
  font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--slate-900);
  padding-bottom: 16px;
}
.loc-group-2 { margin-top: 72px; }

.loc-rows { list-style: none; border-bottom: 1px solid var(--slate-200); }
.loc-row {
  position: relative;
  display: grid; grid-template-columns: 44px 264px minmax(0, 1fr) auto;
  grid-template-areas: "num id addr dir";
  gap: 12px 32px; align-items: start;
  padding: 26px 0;
}
.loc-rule {
  position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--slate-200);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.16,1,.3,1), background-color .3s, height .3s;
}
.loc-rows.in .loc-rule { transform: scaleX(1); }
.loc-row:hover .loc-rule { background: var(--red); }
.loc-num {
  grid-area: num; padding-top: 4px;
  font-family: var(--sans); font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: 13px; color: var(--red);
}
.loc-id { grid-area: id; min-width: 0; }
.loc-name {
  font-size: 19px; font-weight: 800; line-height: 1.25; letter-spacing: -.02em;
  color: var(--slate-900);
}
.loc-row.is-hq .loc-rule { background: var(--red); height: 2px; }
.loc-row.is-hq .loc-name { color: var(--red); }
.loc-hqline { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--red); }
.loc-addr { grid-area: addr; font-style: normal; min-width: 0; }
.loc-street { display: block; font-size: 15px; line-height: 1.6; color: var(--slate-600); max-width: 36em; }
.loc-place {
  display: block; margin-top: 8px;
  font-size: 15px; font-weight: 800; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; color: var(--slate-900);
}
.loc-dir {
  grid-area: dir; justify-self: end; margin-top: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--slate-900);
  border-bottom: 1px solid var(--slate-300); padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.loc-dir svg { transition: transform .3s; }
.loc-dir:hover { color: var(--red); border-color: var(--red); }
.loc-dir:hover svg { transform: translate(3px, -3px); }

@media (max-width: 1279px) {
  .frm-inner { gap: 48px; }
  .loc-inner { grid-template-columns: 264px minmax(0, 1fr); gap: 48px; }
  .loc-row { grid-template-columns: 40px 224px minmax(0, 1fr) auto; gap: 12px 24px; }
}

@media (max-width: 1023px) {
  .frm-inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-inner { grid-template-columns: 1fr; gap: 44px; }
  .loc-rail-in { position: static; }
  .loc-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    grid-template-areas: "num id dir" "num addr addr";
  }
}

@media (max-width: 767px) {
  .opener { height: 40vh; min-height: 320px; }
  .opener-kicker { font-size: 13px; }
  .opener-line { margin-top: 20px; }
  .chan-head { margin-bottom: 32px; }
  .chan-row { grid-template-columns: minmax(0, 1fr) 26px; gap: 6px 16px; padding: 20px 0; }
  .chan-label { grid-column: 1 / -1; font-size: 13px; }
  .chan-arw { width: 20px; height: 20px; }
  .frm { grid-template-columns: 1fr; gap: 22px; }
  .frm-send { width: 100%; justify-self: stretch; text-align: center; }
  .loc-group-2 { margin-top: 56px; }
  .loc-row {
    grid-template-columns: 30px minmax(0, 1fr);
    grid-template-areas: "num id" "num addr" "num dir";
    padding: 22px 0;
  }
  .loc-dir { justify-self: start; margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .crumb, .opener-kicker, .opener-title .line, .opener-line { animation: none; }
  .chan-rule, .loc-rule, .chan-arw, .loc-dir svg { transition: none; }
  .chan-row:hover .chan-arw, .loc-dir:hover svg { transform: none; }
  .tel-cc.flip, .tel-cc.flip .tel-cc-code { animation: none; }
  .frm-ok.on .ok-gauge::after { transition: none; }
  .frm-ok.on .ok-h, .frm-ok.on .ok-lead, .frm-ok.on .ok-mail, .frm-ok.on .ok-foot { animation: none; }
}

.frm-note{grid-column:1/-1;margin-top:-6px;font-size:14.5px;font-weight:700;color:#17693a}
.frm-note.is-bad{color:var(--red)}
.frm .hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
