:root {
  --su-ink: #121212;
  --su-ink-soft: #5c5652;
  --su-brand: #ff6600;
  --su-brand-deep: #d45500;
  --su-brand-bright: #ff7a26;
  --su-black: #0a0a0a;
  --su-charcoal: #161616;
  --su-mist: #fff4eb;
  --su-paper: #f5f5f5;
  --su-white: #ffffff;
  --su-line: rgba(18, 18, 18, 0.12);
  --su-shadow-soft: rgba(10, 10, 10, 0.1);
  /* Legacy aliases used across the stylesheet */
  --su-teal: var(--su-brand);
  --su-teal-deep: var(--su-brand-deep);
  --su-teal-bright: var(--su-brand-bright);
  --su-font-display: "Fraunces", Georgia, serif;
  --su-font-body: "Sora", system-ui, sans-serif;
  --su-radius: 16px;
  --su-shell: min(1120px, calc(100% - 2.5rem));
  --su-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.su-body {
  margin: 0;
  color: var(--su-ink);
  font-family: var(--su-font-body);
  font-size: 1rem;
  line-height: 1.65;
  background:
    radial-gradient(1100px 480px at 8% -8%, rgba(255, 102, 0, 0.14), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(0, 0, 0, 0.06), transparent 52%),
    linear-gradient(180deg, #fafafa 0%, var(--su-paper) 45%, #ececec 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--su-brand-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--su-black);
}

.su-shell {
  width: var(--su-shell);
  margin-inline: auto;
}

.su-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--su-black);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.su-skip:focus {
  left: 1rem;
  top: 1rem;
}

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

.su-topbar {
  background: var(--su-black);
  color: #cfcfcf;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 102, 0, 0.35);
}

.su-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.4rem;
}

.su-topbar a {
  color: #f0f0f0;
  text-decoration: none;
}

.su-topbar a:hover {
  color: var(--su-brand-bright);
}

.su-topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.su-topbar__wa {
  font-weight: 600;
  color: var(--su-brand-bright);
}

.su-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 102, 0, 0.28);
  transition: border-color 0.3s var(--su-ease), background 0.3s var(--su-ease), box-shadow 0.3s var(--su-ease);
}

.su-header.is-scrolled {
  border-bottom-color: rgba(255, 102, 0, 0.45);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.su-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 6.25rem;
  padding-block: 0.65rem;
}

.su-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.su-brand__logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: min(320px, 56vw);
  object-fit: contain;
}

.su-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.su-brand__text strong {
  font-family: var(--su-font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.su-brand__text span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.su-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
}

.su-nav ul {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.1rem;
}

.su-nav a {
  display: inline-block;
  padding: 0.55rem 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.su-nav a::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--su-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--su-ease);
}

.su-nav a:hover,
.su-nav a.is-active {
  color: #fff;
}

.su-nav a.is-active::after,
.su-nav a:hover::after {
  transform: scaleX(1);
}

.su-search {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.su-search input {
  border: 0;
  outline: 0;
  padding: 0.55rem 0.85rem;
  min-width: 9rem;
  font: inherit;
  background: transparent;
  color: #fff;
}

.su-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.su-search button {
  border: 0;
  background: var(--su-brand);
  color: #fff;
  padding: 0 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.su-search button:hover {
  background: var(--su-brand-deep);
}

.su-nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font: inherit;
}

.su-nav-toggle__label {
  color: #fff;
}

.su-nav-toggle__bars,
.su-nav-toggle__bars::before,
.su-nav-toggle__bars::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: #fff;
  position: relative;
}

.su-nav-toggle__bars::before,
.su-nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.su-nav-toggle__bars::before {
  top: -5px;
}

.su-nav-toggle__bars::after {
  top: 5px;
}

/* Hero */
.su-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

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

.su-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: su-hero-pan 18s var(--su-ease) infinite alternate;
}

.su-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.65), transparent 58%),
    linear-gradient(135deg, rgba(255, 102, 0, 0.28), transparent 45%);
}

.su-hero__content {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
  max-width: 40rem;
}

.su-hero__brand {
  font-family: var(--su-font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  animation: su-rise 0.9s var(--su-ease) both;
}

.su-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  animation: su-rise 0.9s 0.12s var(--su-ease) both;
}

.su-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: su-rise 0.9s 0.22s var(--su-ease) both;
}

.su-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--su-ease), background 0.25s var(--su-ease), color 0.25s var(--su-ease);
}

.su-btn:hover {
  transform: translateY(-1px);
}

.su-btn--primary {
  background: var(--su-brand);
  color: #fff;
}

.su-btn--primary:hover {
  background: var(--su-brand-deep);
  color: #fff;
}

.su-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.su-btn--ghost:hover {
  background: rgba(255, 102, 0, 0.18);
  border-color: var(--su-brand-bright);
  color: #fff;
}

.su-btn--solid {
  background: var(--su-brand);
  color: #fff;
}

.su-btn--solid:hover {
  background: var(--su-brand-deep);
  color: #fff;
}

.su-btn--line {
  background: transparent;
  color: var(--su-brand-deep);
  border-color: rgba(255, 102, 0, 0.4);
}

.su-btn--line:hover {
  background: var(--su-mist);
  color: var(--su-black);
}

/* Sections */
.su-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.su-section--tight {
  padding-top: 2.5rem;
}

.su-section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.su-kicker {
  margin: 0 0 0.55rem;
  color: var(--su-teal-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.su-title {
  margin: 0 0 0.75rem;
  font-family: var(--su-font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.su-text {
  margin: 0;
  color: var(--su-ink-soft);
}

.su-page-intro {
  padding: 2.75rem 0 1rem;
}

.su-page-intro .su-title {
  max-width: 18ch;
}

.su-prose {
  color: var(--su-ink-soft);
  max-width: 62ch;
}

.su-prose p {
  margin: 0 0 1rem;
}

.su-prose h1,
.su-prose h2,
.su-prose h3 {
  color: var(--su-ink);
  font-family: var(--su-font-display);
}

.su-reasons {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.su-reasons li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--su-ink-soft);
}

.su-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--su-teal);
}

.su-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.su-logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 9rem;
  padding: 1.1rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--su-ink);
  background: #fff;
  border: 1px solid var(--su-line);
  border-radius: var(--su-radius);
  transition: border-color 0.25s var(--su-ease), transform 0.25s var(--su-ease), background 0.25s var(--su-ease);
}

.su-logo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 102, 0, 0.45);
  background: #fff;
  color: var(--su-ink);
  box-shadow: 0 12px 28px var(--su-shadow-soft);
}

.su-logo-tile img {
  height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.su-logo-tile span {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--su-ink-soft);
}

.su-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.su-media-panel {
  border-radius: calc(var(--su-radius) + 6px);
  overflow: hidden;
  min-height: 22rem;
  background: var(--su-charcoal);
  box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.2);
}

.su-media-panel img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.su-band {
  background:
    linear-gradient(135deg, rgba(255, 102, 0, 0.18), transparent 42%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  color: #f2f2f2;
  border-block: 1px solid rgba(255, 102, 0, 0.28);
}

.su-band .su-title,
.su-band .su-kicker {
  color: #fff;
}

.su-band .su-kicker {
  color: var(--su-brand-bright);
}

.su-band .su-text {
  color: rgba(242, 242, 242, 0.78);
}

.su-band__row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.su-specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.su-specialty-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--su-radius);
  overflow: hidden;
  border: 1px solid var(--su-line);
  background: #fff;
  transition: transform 0.25s var(--su-ease);
}

.su-specialty-link:hover {
  transform: translateY(-3px);
  color: inherit;
}

.su-specialty-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.su-specialty-link__body {
  padding: 1rem 1.1rem 1.2rem;
}

.su-specialty-link__body strong {
  display: block;
  font-family: var(--su-font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.su-specialty-link__body span {
  color: var(--su-ink-soft);
  font-size: 0.9rem;
}

.su-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}

.su-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--su-line);
  text-decoration: none;
  color: var(--su-ink-soft);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.7);
}

.su-filter a.is-active,
.su-filter a:hover {
  background: var(--su-teal);
  border-color: var(--su-teal);
  color: #fff;
}

.su-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--su-line);
  border-radius: var(--su-radius);
  background: rgba(255, 255, 255, 0.85);
}

.su-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.su-table th,
.su-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--su-line);
  vertical-align: top;
}

.su-table th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--su-ink-soft);
  background: rgba(255, 244, 235, 0.85);
}

.su-table tr:last-child td {
  border-bottom: 0;
}

.su-table tbody tr {
  transition: background 0.2s var(--su-ease);
}

.su-table tbody tr:hover {
  background: rgba(255, 244, 235, 0.55);
}

.su-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.su-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--su-ink-soft);
}

.su-crumb a {
  color: var(--su-teal);
  text-decoration: none;
}

.su-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.su-field {
  display: grid;
  gap: 0.35rem;
}

.su-field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.su-field input,
.su-field textarea {
  width: 100%;
  border: 1px solid var(--su-line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
  color: var(--su-ink);
}

.su-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.su-field input:focus,
.su-field textarea:focus {
  outline: 2px solid rgba(255, 102, 0, 0.28);
  border-color: var(--su-brand);
}

.su-alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.su-alert--ok {
  background: #e5f6ef;
  color: #145c3f;
}

.su-alert--err {
  background: #fdeceb;
  color: #8a2b22;
}

.su-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.su-contact-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.su-contact-list a {
  text-decoration: none;
  font-weight: 600;
}

.su-achieve {
  display: grid;
  gap: 1.25rem;
}

.su-achieve__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--su-line);
}

.su-achieve__item:last-child {
  border-bottom: 0;
}

.su-achieve__year {
  font-family: var(--su-font-display);
  font-size: 1.6rem;
  color: var(--su-teal);
  line-height: 1;
}

.su-achieve__item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--su-font-display);
  font-size: 1.35rem;
}

.su-achieve__item p {
  margin: 0;
  color: var(--su-ink-soft);
}

.su-empty {
  padding: 2rem;
  border: 1px dashed var(--su-line);
  border-radius: var(--su-radius);
  color: var(--su-ink-soft);
  text-align: center;
}

.su-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--su-ease), transform 0.7s var(--su-ease);
}

.su-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.su-footer {
  margin-top: 2rem;
  background:
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  color: #cfcfcf;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 102, 0, 0.35);
}

.su-footer a {
  color: #f0f0f0;
  text-decoration: none;
}

.su-footer a:hover {
  color: var(--su-brand-bright);
}

.su-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.su-footer__brand {
  max-width: 28rem;
}

.su-footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.su-footer__logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: 220px;
  object-fit: contain;
}

.su-footer__name {
  font-family: var(--su-font-display);
  font-size: 1.6rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.su-footer__label {
  margin: 0 0 0.75rem;
  color: var(--su-brand-bright);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.su-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.su-footer__meta {
  margin-top: 1rem;
  color: #9a9a9a;
  font-size: 0.9rem;
}

.su-footer__address {
  max-width: 18rem;
  line-height: 1.45;
  color: #e8e8e8;
}

.su-footer__map-wrap {
  margin-top: 0.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.su-footer__map-head {
  margin-bottom: 0.85rem;
}

.su-footer__map-address {
  margin: 0.25rem 0 0;
  color: #e8e8e8;
  font-size: 0.95rem;
}

.su-footer__map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 102, 0, 0.35);
  background: #111;
  aspect-ratio: 21 / 9;
  min-height: 220px;
}

.su-footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.su-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
}

.su-wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 0 0 rgba(37, 211, 102, 0.55);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s var(--su-ease), box-shadow 0.25s var(--su-ease), background 0.25s var(--su-ease);
  animation: su-wa-pulse 2.4s ease-out infinite;
}

.su-wa-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: #1ebe57;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  animation: none;
}

.su-wa-float__icon {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
}

.su-wa-float__label {
  line-height: 1;
}

@keyframes su-wa-pulse {
  0% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.28),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes su-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes su-hero-pan {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 920px) {
  .su-split,
  .su-contact-grid,
  .su-footer__grid,
  .su-specialty-grid {
    grid-template-columns: 1fr;
  }

  .su-nav-toggle {
    display: inline-flex;
  }

  .su-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 1.25rem 1.25rem;
    background: #111;
    border-bottom: 1px solid rgba(255, 102, 0, 0.35);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  }

  .su-nav.is-open {
    display: flex;
  }

  .su-nav ul {
    flex-direction: column;
  }

  .su-nav a {
    color: rgba(255, 255, 255, 0.85);
  }

  .su-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .su-search input {
    flex: 1;
    min-width: 0;
    color: #fff;
  }

  .su-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.55rem 0;
  }

  .su-header {
    position: relative;
  }

  .su-header__inner {
    position: relative;
    min-height: 5.25rem;
  }

  .su-brand__logo {
    height: 72px;
    max-width: min(240px, 62vw);
  }

  .su-footer__map {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .su-wa-float {
    right: 1rem;
    bottom: 1rem;
    min-height: 3.25rem;
    padding: 0.75rem;
  }

  .su-wa-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .su-achieve__item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
