:root {
  --sh-bg: #050607;
  --sh-bg-soft: #0d1114;
  --sh-panel: #11161a;
  --sh-card: #14191d;
  --sh-text: #f4f4f4;
  --sh-muted: #a6a6a6;
  --sh-gold: #c8943d;
  --sh-gold-strong: #e0ad4f;
  --sh-blue: #0072bc;
  --sh-line: rgba(200, 148, 61, .35);
  --sh-max: 1200px;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0, 114, 188, .22), transparent 32rem), var(--sh-bg);
  color: var(--sh-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
}

a { color: inherit; }

.seahal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(5, 6, 7, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.seahal-header__brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  letter-spacing: .04em;
}

.seahal-header__logo-image { max-width: 44px; height: auto; }
.seahal-header__logo-mark,
.seahal-footer__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sh-blue), #56c6ff);
  color: #fff;
  font-weight: 800;
}

.seahal-header__brand strong,
.seahal-header__brand em { display: block; }
.seahal-header__brand em { color: var(--sh-muted); font-size: .72rem; font-style: normal; }
.seahal-header__panel { display: flex; align-items: center; gap: 1.5rem; }
.seahal-header__nav { display: flex; align-items: center; gap: 1.1rem; }
.seahal-header__nav a {
  position: relative;
  color: var(--sh-muted);
  font-size: .95rem;
  text-decoration: none;
}
.seahal-header__nav a:hover,
.seahal-header__nav a.is-active { color: var(--sh-gold-strong); }
.seahal-header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.5rem;
  height: 2px;
  background: var(--sh-gold);
}

.seahal-header__actions { display: flex; align-items: center; gap: .8rem; }
.seahal-header__social { display: inline-flex; align-items: center; gap: .4rem; }
.seahal-lang {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  line-height: 1;
}
.seahal-lang__link {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
}
.seahal-lang__link:hover,
.seahal-lang__link:focus-visible,
.seahal-lang__link.is-active {
  color: #fff;
}
.seahal-lang__divider {
  color: rgba(255, 255, 255, .62);
  font-weight: 400;
}
.seahal-icon-link { color: var(--sh-muted); font-size: .85rem; text-decoration: none; }
.seahal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sh-gold);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sh-gold), #7d5520);
  color: #101010;
  font-weight: 700;
  text-decoration: none;
}
.seahal-button--small { min-height: 34px; padding: 0 .95rem; font-size: .86rem; }
.seahal-header__toggle { display: none; }

.seahal-page-shell {
  width: min(var(--sh-max), 90vw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.seahal-hero {
  display: grid;
  gap: 1.5rem;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.seahal-kicker { color: var(--sh-gold); letter-spacing: .18em; text-transform: uppercase; }
.seahal-hero h1,
.seahal-page-shell h1 { max-width: 880px; font-size: clamp(2.6rem, 7vw, 6rem); line-height: .95; margin: 0; }
.seahal-hero p,
.seahal-page-shell p { max-width: 720px; color: var(--sh-muted); line-height: 1.8; }

.seahal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seahal-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.seahal-footer {
  padding: 3rem 5vw 2rem;
  background: #030405;
  border-top: 1px solid var(--sh-line);
}
.seahal-footer__brand { display: flex; align-items: center; gap: 1rem; width: min(var(--sh-max), 90vw); margin: 0 auto 2rem; }
.seahal-footer__brand p { color: var(--sh-muted); }
.seahal-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(var(--sh-max), 90vw);
  margin: 0 auto;
}
.seahal-footer__grid div { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.seahal-footer__grid span { display: block; color: var(--sh-muted); font-size: .82rem; }
.seahal-footer__grid strong { display: block; margin-top: .35rem; font-size: .95rem; font-weight: 500; }
.seahal-footer__bottom { width: min(var(--sh-max), 90vw); margin: 2rem auto 0; color: var(--sh-muted); font-size: .82rem; }
.seahal-video { position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; border-radius: 18px; background: #000; }
.seahal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.seahal-inquiry-promise { color: var(--sh-gold-strong); font-weight: 700; }

.seahal-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 7rem) max(5vw, calc((100vw - 1200px) / 2));
  background:
    radial-gradient(circle at 78% 36%, rgba(200, 148, 61, .22), transparent 18rem),
    linear-gradient(135deg, #07090b, #15191d);
  color: #fff;
}

.seahal-page-hero h1 {
  max-width: 820px;
  margin: .3rem 0 .75rem;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: 1;
}

.seahal-page-hero p:not(.seahal-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
}

.seahal-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.seahal-page-hero__stats span {
  min-height: 76px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .72);
}

.seahal-page-hero__stats strong {
  display: block;
  color: var(--sh-gold-strong);
  font-size: 1.45rem;
}

.seahal-filter-bar {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding: 1rem max(5vw, calc((100vw - 1200px) / 2));
  background: #101316;
}

.seahal-filter-bar a {
  flex: 0 0 auto;
  padding: .55rem .95rem;
  border: 1px solid rgba(200, 148, 61, .34);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.seahal-filter-bar a:hover { color: var(--sh-gold-strong); }

.seahal-team,
.seahal-inquiry,
.seahal-contact {
  background: #f1f2f4;
  color: #151515;
}

.seahal-team-grid,
.seahal-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 1.4rem 0;
}

.seahal-team-card,
.seahal-contact-card,
.seahal-form-panel,
.seahal-form-notes,
.seahal-map-panel {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .055);
}

.seahal-team-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding: 1rem;
}

.seahal-team-card__avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a0d10, #28323c);
  color: var(--sh-gold-strong);
  font-size: 2rem;
  font-weight: 800;
}

.seahal-team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seahal-team-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.seahal-team-card p {
  margin: .35rem 0 0;
  color: #666;
  line-height: 1.65;
}

.seahal-team-card__en,
.seahal-team-card__role {
  color: var(--sh-gold) !important;
  font-weight: 700;
}

.seahal-team-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .8rem 0 0;
  padding: 0;
  list-style: none;
}

.seahal-team-card li {
  padding: .24rem .55rem;
  border-radius: 999px;
  background: #f2eadf;
  color: #76501e;
  font-size: .78rem;
}

.seahal-team-culture {
  padding: 1.6rem max(5vw, calc((100vw - 1200px) / 2));
  background: #080a0b;
  color: #fff;
}

.seahal-team-culture h2 {
  margin: 0 0 1rem;
}

.seahal-team-culture div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}

.seahal-team-culture span {
  display: grid;
  place-items: center;
  min-height: 70px;
  border: 1px solid rgba(200, 148, 61, .36);
  border-radius: 10px;
  color: var(--sh-gold-strong);
  font-weight: 700;
}

.seahal-empty-state {
  grid-column: 1 / -1;
  color: #666;
}

.seahal-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1rem;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
}

.seahal-form-panel,
.seahal-form-notes,
.seahal-map-panel {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.seahal-form-panel form {
  display: grid;
  gap: .9rem;
}

.seahal-form-panel label {
  display: grid;
  gap: .4rem;
  color: #333;
  font-weight: 700;
}

.seahal-form-panel input,
.seahal-form-panel select,
.seahal-form-panel textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
  padding: .75rem .85rem;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fafafa;
  color: #151515;
  font: inherit;
}

.seahal-form-panel textarea { min-height: 150px; }
.seahal-form-panel input[type="submit"] {
  width: fit-content;
  min-width: 150px;
  border-color: var(--sh-gold);
  background: linear-gradient(135deg, var(--sh-gold), #7d5520);
  color: #101010;
  font-weight: 800;
  cursor: pointer;
}

.seahal-form-notes h2,
.seahal-map-panel h2 {
  margin: 0 0 .9rem;
}

.seahal-form-notes ul,
.seahal-map-panel ul {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding-left: 1.2rem;
  color: #666;
  line-height: 1.7;
}

.seahal-contact-card {
  display: grid;
  gap: .35rem;
  min-height: 92px;
  padding: 1rem;
}

.seahal-contact-card span {
  color: #777;
  font-size: .86rem;
}

.seahal-contact-card strong {
  overflow-wrap: anywhere;
  color: #151515;
}

.seahal-map-panel__image {
  display: block;
  width: 100%;
  max-height: 220px;
  margin-bottom: 1rem;
  border-radius: 8px;
  object-fit: cover;
}

.seahal-inquiry-page {
  background: #090d12;
  color: #151515;
  padding-bottom: 1px;
}

.seahal-inquiry-hero {
  position: relative;
  overflow: hidden;
  background: #020304;
}

.seahal-inquiry-hero__image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.seahal-inquiry-hero__copy {
  position: absolute;
  left: var(--seahal-inquiry-hero-copy-left, 50%);
  top: 50%;
  width: min(1200px, calc(100vw - 96px));
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.seahal-inquiry-hero__kicker {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .08em;
}

.seahal-inquiry-hero__copy .seahal-inquiry-hero__kicker,
.seahal-inquiry-hero__copy .seahal-project-archive__kicker {
  color: var(--sh-gold);
}

.seahal-inquiry-hero__copy h1 {
  margin: 0;
  color: #f9f9f8;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .01em;
}

.seahal-inquiry-hero__subtitle {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d2a04b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.seahal-inquiry-hero__accent {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 14px;
  background: var(--sh-gold);
}

.seahal-inquiry-shell {
  width: min(1200px, calc(100vw - 48px));
  margin: -2px auto 22px;
}

.seahal-inquiry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 326px;
  gap: 34px;
  padding: 18px 16px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.seahal-inquiry-card__form {
  min-width: 0;
  padding: 2px 20px 10px 30px;
}

.seahal-inquiry-card__notes {
  padding: 18px 18px 12px;
  border: 1px solid #e2e4e8;
  border-radius: 12px;
  background: #fcfcfd;
}

.seahal-inquiry-card__notes h2,
.seahal-inquiry-form__section h3,
.seahal-inquiry-card__types h3 {
  margin: 0;
  color: #17181b;
}

.seahal-inquiry-card__notes h2,
.seahal-inquiry-form__section h3 {
  font-size: 1.1rem;
  font-weight: 900;
}

.seahal-inquiry-card__notes h2 span,
.seahal-inquiry-form__section h3 span {
  color: var(--sh-gold);
}

.seahal-inquiry-card__types h3 {
  font-size: 1rem;
  font-weight: 900;
}

.seahal-inquiry-note-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.seahal-inquiry-note-list li {
  position: relative;
  padding-left: 32px;
  color: #2c2f35;
  line-height: 1.75;
}

.seahal-inquiry-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 16px;
  height: 16px;
  border: 1.5px solid #2f3338;
  border-radius: 5px;
}

.seahal-inquiry-card__divider {
  height: 1px;
  margin: 28px 0 24px;
  background: #e5e7eb;
}

.seahal-inquiry-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  margin-top: 18px;
}

.seahal-inquiry-type-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  background: #f2f3f5;
  color: #292d31;
  font-weight: 700;
}

.seahal-inquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 70px;
}

.seahal-inquiry-form__section {
  min-width: 0;
}

.seahal-inquiry-form__section h3 {
  margin-bottom: 18px;
}

.seahal-inquiry-field {
  margin-bottom: 14px;
}

.seahal-inquiry-field > p,
.seahal-inquiry-form__submit > p {
  margin: 0;
}

.seahal-inquiry-field:last-child {
  margin-bottom: 0;
}

.seahal-inquiry-field label {
  display: block;
  margin: 0 0 8px;
  color: #1f2328;
  font-weight: 800;
  line-height: 1.45;
}

.seahal-inquiry-field label em {
  color: #d54545;
  font-style: normal;
}

.seahal-inquiry-field .wpcf7-form-control-wrap {
  display: block;
}

.seahal-inquiry-field input,
.seahal-inquiry-field select,
.seahal-inquiry-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d6dbe1;
  border-radius: 8px;
  background: #fff;
  color: #202429;
  font: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .015);
}

.seahal-inquiry-field input,
.seahal-inquiry-field select {
  min-height: 36px;
  padding: 0 14px;
}

.seahal-inquiry-field textarea {
  min-height: 82px;
  padding: 12px 14px;
  resize: vertical;
}

.seahal-inquiry-field textarea[name="your-message"] {
  min-height: 92px;
}

.seahal-inquiry-field input::placeholder,
.seahal-inquiry-field textarea::placeholder {
  color: #8a9098;
}

.seahal-inquiry-field select {
  appearance: auto;
  color: #4d545d;
}

.seahal-inquiry-field input[type="file"] {
  padding: 10px 12px;
}

.seahal-inquiry-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 14px;
  border: 1px solid #d2d7dd;
  border-radius: 8px;
  background: #fff8ea;
  color: #6c4b18;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.seahal-inquiry-field__hint {
  margin: 8px 0 0;
  color: #7a8088;
  font-size: .95rem;
  line-height: 1.7;
}

.seahal-inquiry-form__submit {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.seahal-inquiry-form__submit .wpcf7-spinner {
  margin: 12px 0 0 12px;
}

.seahal-inquiry-form__submit .wpcf7-submit {
  width: min(370px, 100%);
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #c69044;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
}

.seahal-inquiry-form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 8px;
}

.seahal-inquiry-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: .9rem;
}

.seahal-contact-page {
  background: #0d1116;
  color: #fff;
  padding-bottom: 1px;
}

.seahal-contact-hero {
  position: relative;
  overflow: hidden;
  background: #030507;
}

.seahal-contact-hero__image {
  display: block;
  width: 100%;
  height: 232px;
  object-fit: cover;
}

.seahal-contact-hero__copy {
  position: absolute;
  left: var(--seahal-contact-hero-copy-left, 50%);
  top: 50%;
  width: min(1432px, calc(100vw - 96px));
  transform: translate(-50%, -50%);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.seahal-contact-hero__copy h1 {
  margin: 0;
  color: #f9f9f8;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .01em;
}

.seahal-contact-hero__kicker {
  margin: 0 0 10px;
  color: #d2a04b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .08em;
}

.seahal-contact-hero__accent {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: #d2a04b;
}

.seahal-contact-hero__subtitle {
  margin: 16px 0 0;
  color: #d2a04b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.seahal-contact-shell {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto 18px;
}

.seahal-contact-card-layout {
  display: grid;
  grid-template-columns: 372px minmax(0, 1fr) 430px;
  gap: 0;
  min-height: 548px;
  background: #161b22;
  border-radius: 0 0 12px 12px;
}

.seahal-contact-side,
.seahal-contact-message,
.seahal-contact-map {
  min-width: 0;
  padding: 28px 34px 30px;
}

.seahal-contact-side h2,
.seahal-contact-message h2,
.seahal-contact-map h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.seahal-contact-side__accent,
.seahal-contact-message__accent {
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 12px;
  background: var(--sh-gold);
}

.seahal-contact-side__list {
  display: grid;
  gap: 26px;
  margin-top: 20px;
}

.seahal-contact-side__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.seahal-contact-side__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(198, 144, 68, .12);
  color: var(--sh-gold);
  font-size: 1.5rem;
  font-weight: 900;
}

.seahal-contact-side__item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 900;
}

.seahal-contact-side__item p,
.seahal-contact-side__item span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

.seahal-contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.seahal-contact-social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #222934;
  color: #fff;
  text-decoration: none;
}

.seahal-contact-social span {
  font-size: 0;
}

.seahal-contact-social::before {
  font-size: 1rem;
  font-weight: 900;
}

.seahal-contact-social--weibo::before { content: "微"; }
.seahal-contact-social--bilibili::before { content: "B"; }
.seahal-contact-social--wechat::before { content: "微"; }

.seahal-contact-message {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
}

.seahal-contact-form {
  margin-top: 18px;
}

.seahal-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
}

.seahal-contact-field {
  min-width: 0;
}

.seahal-contact-field--full {
  grid-column: 1 / -1;
}

.seahal-contact-field > p,
.seahal-contact-form__submit > p {
  margin: 0;
}

.seahal-contact-field label {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 800;
}

.seahal-contact-field label em {
  color: #d54545;
  font-style: normal;
}

.seahal-contact-field .wpcf7-form-control-wrap {
  display: block;
}

.seahal-contact-field input,
.seahal-contact-field select,
.seahal-contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #161b22;
  color: #fff;
  font: inherit;
}

.seahal-contact-field input,
.seahal-contact-field select {
  min-height: 42px;
  padding: 0 14px;
}

.seahal-contact-field textarea {
  min-height: 98px;
  padding: 12px 14px;
  resize: vertical;
}

.seahal-contact-field input::placeholder,
.seahal-contact-field textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.seahal-contact-field select {
  appearance: auto;
  color: rgba(255, 255, 255, .68);
}

.seahal-contact-form__submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.seahal-contact-form__submit .wpcf7-spinner {
  margin: 0;
}

.seahal-contact-form__submit .wpcf7-submit {
  min-width: 148px;
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #c69044;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.seahal-contact-form__submit span {
  color: rgba(255, 255, 255, .75);
}

.seahal-contact-form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 8px;
}

.seahal-contact-map {
  display: grid;
  align-content: start;
  gap: 18px;
}

.seahal-contact-map__media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.seahal-contact-map__image {
  display: block;
  width: 100%;
  height: auto;
}

.seahal-contact-map__content ul {
  display: grid;
  gap: 16px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
}

.seahal-contact-map__content li {
  position: relative;
  padding-left: 22px;
}

.seahal-contact-map__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sh-gold);
}

@media (max-width: 960px) {
  .seahal-header { align-items: center; min-height: 68px; }
  .seahal-header__toggle { display: inline-flex; padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: transparent; color: var(--sh-text); }
  .seahal-header__panel {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(10, 13, 16, .98);
  }
  .seahal-header__panel.is-open { display: flex; }
  .seahal-header__nav,
  .seahal-header__actions { flex-direction: column; align-items: stretch; }
  .seahal-header__nav a { padding: .55rem 0; }
  .seahal-card-grid,
  .seahal-footer__grid,
  .seahal-page-hero,
  .seahal-form-layout,
  .seahal-contact-grid { grid-template-columns: 1fr; }
  .seahal-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seahal-team-culture div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seahal-inquiry-hero__copy { width: calc(100vw - 56px); }
  .seahal-inquiry-card { grid-template-columns: 1fr; gap: 24px; }
  .seahal-inquiry-card__form { padding: 6px 8px 0; }
  .seahal-inquiry-form__grid { grid-template-columns: 1fr; gap: 22px; }
  .seahal-contact-hero__copy { width: calc(100vw - 56px); }
  .seahal-contact-card-layout { grid-template-columns: 1fr; }
  .seahal-contact-form__grid { grid-template-columns: 1fr; }
  .seahal-contact-field--full { grid-column: auto; }
}

@media (max-width: 640px) {
  .seahal-page-hero__stats,
  .seahal-team-grid,
  .seahal-team-culture div { grid-template-columns: 1fr; }
  .seahal-team-card { grid-template-columns: 72px 1fr; }
  .seahal-team-card__avatar { width: 72px; height: 72px; }
  .seahal-inquiry-hero__image { height: 260px; }
  .seahal-inquiry-hero__copy { width: calc(100vw - 32px); }
  .seahal-inquiry-hero__kicker { font-size: 18px; margin-bottom: 8px; }
  .seahal-inquiry-hero__copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    line-height: 1.06;
  }
  .seahal-inquiry-hero__accent { margin-top: 16px; }
  .seahal-inquiry-hero__subtitle {
    max-width: 320px;
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .seahal-inquiry-shell { width: calc(100vw - 20px); margin-bottom: 14px; }
  .seahal-inquiry-card { padding: 14px 10px 16px; border-radius: 12px; }
  .seahal-inquiry-card__notes { padding: 16px 14px; }
  .seahal-inquiry-type-tags { gap: 10px; }
  .seahal-inquiry-type-tags span { min-width: 0; padding: 0 14px; }
  .seahal-contact-hero__image { height: 248px; }
  .seahal-contact-hero__copy { width: calc(100vw - 32px); }
  .seahal-contact-hero__copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    line-height: 1.06;
  }
  .seahal-contact-hero__kicker { font-size: 18px; margin-bottom: 8px; }
  .seahal-contact-hero__accent { margin-top: 12px; }
  .seahal-contact-hero__subtitle {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .seahal-services-banner__copy {
    top: 14px;
    left: 16px;
    max-width: calc(100vw - 32px);
    padding: 10px 12px 12px;
  }
  .seahal-services-banner__copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    line-height: 1.06;
  }
  .seahal-services-banner__kicker {
    margin-bottom: 6px;
    font-size: 16px;
  }
  .seahal-services-banner__subtitle {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }
  .seahal-contact-shell { width: calc(100vw - 20px); }
  .seahal-contact-side,
  .seahal-contact-message,
  .seahal-contact-map { padding: 18px 14px 20px; }
  .seahal-contact-side__item { grid-template-columns: 46px 1fr; gap: 12px; }
  .seahal-contact-side__icon { width: 46px; height: 46px; font-size: 1.2rem; }
  .seahal-contact-form__submit { flex-direction: column; align-items: stretch; }
}

.seahal-home {
  background: #f0f0f2;
  color: #141414;
}

.seahal-home-hero {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .68) 42%, rgba(0, 0, 0, .32) 100%),
    var(--seahal-hero-bg, radial-gradient(circle at 72% 40%, rgba(200, 148, 61, .42), transparent 12rem), linear-gradient(135deg, #06080a, #16100a 58%, #040404));
  background-position: center;
  background-size: cover;
  color: #fff;
}

.seahal-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent);
  pointer-events: none;
}

.seahal-home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.seahal-home-hero h1 {
  max-width: 760px;
  margin: .35rem 0 .75rem;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.seahal-home-hero h1::first-letter {
  color: var(--sh-gold-strong);
}

.seahal-home-hero p:not(.seahal-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.seahal-home-hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin: 1.35rem 0 1.45rem;
  padding: 0;
  list-style: none;
  color: var(--sh-gold-strong);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 650;
}

.seahal-home-hero__keywords li:not(:last-child)::after {
  content: "·";
  margin-left: 1.35rem;
  color: var(--sh-gold);
}

.seahal-home-hero__button {
  min-width: 150px;
  min-height: 44px;
  gap: .6rem;
  background: transparent;
  color: var(--sh-gold-strong);
}

.seahal-home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 1rem max(5vw, calc((100vw - 1200px) / 2));
  background: rgba(5, 6, 7, .94);
  color: #fff;
}

.seahal-home-stat {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: .5rem 1rem;
  min-height: 72px;
  padding: 0 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.seahal-home-stat:last-child { border-right: 0; }

.seahal-home-stat__icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border: 2px solid var(--sh-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(200, 148, 61, .12);
}

.seahal-home-stat strong {
  color: var(--sh-gold-strong);
  font-size: 1.35rem;
  line-height: 1;
}

.seahal-home-stat span:last-child {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
}

.seahal-home-services,
.seahal-home-featured {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.seahal-home-services {
  padding: 1.2rem 0 1.5rem;
}

.seahal-home-section-heading {
  text-align: center;
}

.seahal-home-section-heading h2,
.seahal-home-featured h2 {
  margin: 0;
  color: #181818;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.seahal-home-section-heading p {
  margin: .3rem 0 0;
  color: #747474;
}

.seahal-home-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.seahal-home-service {
  display: grid;
  place-items: center;
  gap: .65rem;
  min-height: 118px;
  color: #181818;
  text-align: center;
  text-decoration: none;
}

.seahal-home-service__icon {
  position: relative;
  width: 54px;
  height: 54px;
  border: 3px solid var(--sh-gold);
  border-radius: 16px;
}

.seahal-home-service__icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--sh-gold);
  border-radius: 50%;
}

.seahal-home-service__icon--2 { border-radius: 50%; }
.seahal-home-service__icon--3 { transform: rotate(4deg); }
.seahal-home-service__icon--4 { border-radius: 50% 50% 16px 16px; }
.seahal-home-service__icon--5 { border-radius: 10px; }
.seahal-home-service__icon--6 { border-radius: 18px 8px 18px 8px; }

.seahal-home-featured {
  padding: .25rem 0 1rem;
}

.seahal-home-featured__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}

.seahal-home-featured__link,
.seahal-home-featured__head p {
  margin: 0;
}

.seahal-home-featured__head a {
  color: #777;
  font-size: .92rem;
  text-decoration: none;
}

.seahal-home-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.seahal-home-project {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #28313a, #0d0f12 58%, #6c2c10);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.seahal-home-project img,
.seahal-home-project__placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.seahal-home-project:hover img,
.seahal-home-project:hover .seahal-home-project__placeholder {
  transform: scale(1.05);
}

.seahal-home-project__placeholder {
  background:
    radial-gradient(circle at 25% 20%, rgba(224, 173, 79, .55), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(0, 114, 188, .45), transparent 25%),
    linear-gradient(135deg, #343b45, #08090a 70%);
}

.seahal-home-project__overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: .3rem;
  padding: 3rem 1rem .9rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82), transparent);
}

.seahal-home-project__overlay strong {
  font-size: 1.1rem;
}

.seahal-home-project__overlay em {
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
  font-style: normal;
}

.seahal-home-partners {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem max(5vw, calc((100vw - 1200px) / 2));
  background: #030405;
  color: #fff;
}

.seahal-home-partners__label {
  display: grid;
  gap: .25rem;
  padding-left: 2rem;
  border-left: 2px solid var(--sh-gold);
}

.seahal-home-partners__label strong { font-size: 1.2rem; }
.seahal-home-partners__label span { color: rgba(255, 255, 255, .62); font-size: .86rem; }

.seahal-home-partners__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(108px, 1fr);
  align-items: center;
  gap: .75rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.seahal-home-partner {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.seahal-home-partner__logo {
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.9);
}

@media (max-width: 960px) {
  .seahal-home-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seahal-home-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .seahal-home-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .seahal-home-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seahal-home-partners { grid-template-columns: 1fr; }
  .seahal-home-partners__track { grid-auto-columns: minmax(132px, 44%); }
}

@media (max-width: 640px) {
  .seahal-home-hero { min-height: auto; }
  .seahal-home-hero__inner { padding: 3.2rem 0; }
  .seahal-home-hero__keywords { gap: .55rem 1rem; font-size: 1.15rem; }
  .seahal-home-hero__keywords li:not(:last-child)::after { margin-left: .85rem; }
  .seahal-home-stats { grid-template-columns: 1fr; }
  .seahal-home-stat { padding: .9rem 0; }
  .seahal-home-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem; }
  .seahal-home-project-grid { grid-template-columns: 1fr; }
  .seahal-home-project { min-height: 190px; }
  .seahal-home-featured__head { align-items: flex-start; flex-direction: column; }
}

.seahal-about {
  background: #eff0f2;
  color: #151515;
}

.seahal-about-advantages {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 0 0 1.4rem;
}

.seahal-about-banner,
.seahal-about-banner-strip,
.seahal-about-quote-image {
  width: 100%;
}

.seahal-about-banner picture,
.seahal-about-quote-image picture {
  display: block;
}

.seahal-about-banner img,
.seahal-about-banner-strip img,
.seahal-about-quote-image img {
  display: block;
  width: 100%;
  height: auto;
}

.seahal-about-banner {
  position: relative;
  background: #090d12;
  overflow: hidden;
}

.seahal-about-banner__copy {
  position: absolute;
  top: 18px;
  left: var(--seahal-about-hero-copy-left, 68px);
  max-width: 420px;
  padding: 12px 16px 14px;
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: linear-gradient(90deg, rgba(9, 13, 18, .96) 0%, rgba(9, 13, 18, .9) 78%, rgba(9, 13, 18, 0) 100%);
  border-radius: 10px;
}

.seahal-about-banner__copy h1 {
  margin: 0;
  color: #f9f9f8;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .01em;
}

.seahal-about-banner__kicker {
  margin: 0 0 10px;
  color: #d2a04b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .08em;
}

.seahal-about-banner__subtitle {
  margin: 14px 0 0;
  color: #d2a04b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.seahal-about-banner-strip {
  display: none;
  background: #111418;
  overflow: hidden;
}

.seahal-about-section-heading {
  padding-top: 1rem;
}

.seahal-about-section-heading h2 {
  position: relative;
  margin: 0 0 1rem;
  color: #151515;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.seahal-about-section-heading h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: .35rem;
  background: var(--sh-gold);
}

.seahal-about-advantage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .85rem;
}

.seahal-about-advantage-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: .8rem;
  min-height: 122px;
  margin: 0;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid #dee1e7;
  border-radius: 12px;
  background: #f8f8fa;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.seahal-about-advantage-card__icon {
  display: grid;
  place-items: center;
}

.seahal-about-advantage-card__icon img {
  display: block;
  width: 40px;
  height: auto;
}

.seahal-about-advantage-card__copy {
  min-width: 0;
}

.seahal-about-advantage-card__copy h3 {
  margin: 0 0 .5rem;
  color: #151515;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.seahal-about-advantage-card__copy p {
  margin: 0;
  color: #656b74;
  font-size: .78rem;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .seahal-about-advantage-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .seahal-about-advantages {
    width: min(720px, calc(100vw - 32px));
  }
  .seahal-about-banner__copy {
    left: 32px;
    max-width: min(520px, calc(100vw - 64px));
  }
}

@media (max-width: 640px) {
  .seahal-about-banner__copy {
    top: 14px;
    left: 16px;
    max-width: calc(100vw - 32px);
    padding: 10px 12px 12px;
  }
  .seahal-about-banner__copy h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.06;
  }
  .seahal-about-banner__kicker {
    margin-bottom: 6px;
    font-size: 16px;
  }
  .seahal-about-banner__subtitle {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }
  .seahal-about-advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seahal-about-advantage-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .seahal-about-advantage-grid { grid-template-columns: 1fr; }
}

.seahal-services {
  background: #f1f2f4;
  color: #151515;
}

.seahal-services-banner,
.seahal-services-cta-image {
  width: 100%;
}

.seahal-services-banner picture,
.seahal-services-cta-image picture {
  display: block;
}

.seahal-services-banner img,
.seahal-services-cta-image img {
  display: block;
  width: 100%;
  height: auto;
}

.seahal-services-banner {
  position: relative;
  background: #090d12;
}

.seahal-services-banner__copy {
  position: absolute;
  top: 18px;
  left: var(--seahal-services-hero-copy-left, 120px);
  max-width: 620px;
  padding: 12px 16px 14px;
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: linear-gradient(90deg, rgba(9, 13, 18, .96) 0%, rgba(9, 13, 18, .9) 78%, rgba(9, 13, 18, 0) 100%);
  border-radius: 10px;
}

.seahal-services-banner__copy h1 {
  margin: 0;
  color: #f9f9f8;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .01em;
}

.seahal-services-banner__kicker {
  margin: 0 0 10px;
  color: #d2a04b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .08em;
}

.seahal-services-banner__subtitle {
  margin: 14px 0 0;
  color: #d2a04b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.seahal-services-overview {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: .4rem 0 1rem;
}

.seahal-services-overview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.seahal-services-cta-image a {
  display: block;
}

.seahal-project-archive {
  background: #10151b;
  color: #f4f4f4;
  padding-bottom: 1px;
}

.seahal-project-archive__hero {
  position: relative;
  overflow: hidden;
  background: #07090d;
}

.seahal-project-archive__hero::after {
  display: none;
}

.seahal-project-archive__hero-media,
.seahal-project-archive__hero-media picture,
.seahal-project-archive__hero-media img {
  display: block;
  width: 100%;
}

.seahal-project-archive__hero-media img {
  height: auto;
}

.seahal-project-archive__hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  width: min(1200px, calc(100vw - 72px));
  margin: 0 auto;
  justify-items: start;
  gap: 10px;
  padding: 32px 24px;
  text-align: left;
}

.seahal-project-archive__hero.has-custom-banner .seahal-project-archive__hero-copy {
  place-content: center start;
}

.seahal-project-archive__hero.has-custom-banner .seahal-project-archive__hero-media {
  max-width: 1672px;
  margin: 0 auto;
}

.seahal-project-archive__hero.has-no-banner .seahal-project-archive__hero-copy {
  min-height: var(--sh-banner-height-desktop);
  place-content: center start;
}

.seahal-project-archive__kicker {
  margin: 0 0 10px;
  color: var(--sh-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

.seahal-project-archive__hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
}

.seahal-project-archive__hero-copy p:last-child {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

.seahal-project-archive__body {
  width: 100%;
  padding: 0 0 28px;
}

.seahal-project-archive__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1200px, calc(100vw - 72px));
  min-height: var(--sh-banner-strip-height-desktop);
  margin: 0 auto 22px;
  padding: 14px 0;
}

.seahal-project-archive__filters {
  display: flex;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.seahal-project-archive__filters::-webkit-scrollbar {
  display: none;
}

.seahal-project-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 6px;
  color: rgba(255, 255, 255, .88);
  background: #131920;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.seahal-project-filter.is-active,
.seahal-project-filter:hover {
  border-color: rgba(200, 148, 61, .65);
  background: rgba(200, 148, 61, .9);
  color: #fff;
}

.seahal-project-archive__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.seahal-project-archive__sort select {
  min-width: 136px;
  height: 40px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 6px;
  color: rgba(255, 255, 255, .9);
  background: #131920;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .75) 50%, transparent 50%);
  background-position: calc(100% - 18px) 17px, calc(100% - 12px) 17px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.seahal-project-archive__view {
  display: inline-flex;
  padding: 3px;
  border-radius: 6px;
  background: #1e232a;
}

.seahal-project-view {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 4px;
  padding: 11px 12px;
  border-radius: 4px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.seahal-project-view span {
  display: block;
  border: 1px solid currentColor;
  border-radius: 1px;
}

.seahal-project-view--list {
  grid-template-columns: 16px;
  grid-template-rows: repeat(3, 3px);
  gap: 4px;
}

.seahal-project-view--list span {
  border-radius: 999px;
  background: currentColor;
}

.seahal-project-view.is-active {
  background: rgba(200, 148, 61, .9);
  color: #fff;
}

.seahal-project-grid {
  display: grid;
  gap: 18px;
  width: min(1200px, calc(100vw - 72px));
  margin: 0 auto;
}

.seahal-project-grid--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seahal-project-grid--list {
  grid-template-columns: 1fr;
}

.seahal-project-card {
  min-width: 0;
}

.seahal-project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.seahal-project-card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #0c1015;
  aspect-ratio: 318 / 158;
}

.seahal-project-card__media img,
.seahal-project-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.seahal-project-card__media img,
.seahal-project-card__placeholder {
  transition: transform .28s ease, opacity .28s ease;
}

.seahal-project-card__media img {
  object-fit: cover;
}

.seahal-project-card__preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: #000;
  transition: opacity .22s ease;
}

.seahal-project-card__preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.seahal-project-card__placeholder {
  background:
    radial-gradient(circle at top right, rgba(200, 148, 61, .2), transparent 36%),
    linear-gradient(135deg, #1b232d, #0d1218 62%, #07090c);
}

.seahal-project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 4, 6, .02) 10%, rgba(2, 4, 6, .86) 100%);
}

.seahal-project-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(4px);
}

.seahal-project-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #fff;
}

.seahal-project-card__term {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 4px;
  color: #fff;
  background: rgba(200, 148, 61, .85);
  font-size: 12px;
  font-weight: 600;
}

.seahal-project-card__content {
  padding: 14px 2px 0;
}

.seahal-project-card__content h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
  line-height: 1.18;
}

.seahal-project-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.6;
}

.seahal-project-card:hover img,
.seahal-project-card:focus-within img {
  transform: scale(1.04);
  opacity: .95;
}

.seahal-project-card.is-previewing .seahal-project-card__preview {
  opacity: 1;
}

.seahal-project-card.is-previewing .seahal-project-card__media img,
.seahal-project-card.is-previewing .seahal-project-card__placeholder {
  opacity: .14;
}

.seahal-project-card.is-previewing .seahal-project-card__play {
  opacity: 0;
  transform: scale(.9);
}

.seahal-project-grid--list .seahal-project-card__link {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 22px;
  align-items: stretch;
}

.seahal-project-grid--list .seahal-project-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.seahal-project-archive__empty {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.seahal-project-pagination {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  width: min(1200px, calc(100vw - 72px));
  margin-left: auto;
  margin-right: auto;
}

.seahal-project-pagination ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seahal-project-pagination a,
.seahal-project-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
}

.seahal-project-pagination .current {
  border: 1px solid rgba(200, 148, 61, .72);
  color: #fff;
  background: rgba(200, 148, 61, .9);
}

.seahal-project-pagination a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.seahal-team-page {
  background: #10151b;
  color: #f4f4f4;
}

.seahal-team-page__hero {
  position: relative;
  overflow: hidden;
  background: #07090d;
}

.seahal-team-page__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 22, .58) 0%, rgba(10, 14, 22, .38) 42%, rgba(10, 14, 22, .1) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, .14) 0%, rgba(7, 8, 10, .42) 100%);
}

.seahal-team-page__hero-media,
.seahal-team-page__hero-media picture,
.seahal-team-page__hero-media img {
  display: block;
  width: 100%;
}

.seahal-team-page__hero-media img {
  height: 240px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.72);
}

.seahal-team-page__hero-copy {
  position: absolute;
  left: var(--seahal-team-hero-copy-left, 120px);
  top: 50%;
  z-index: 1;
  width: auto;
  max-width: min(660px, calc(100vw - var(--seahal-team-hero-copy-left, 120px) - 32px));
  transform: translateY(-50%);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.seahal-team-page__kicker {
  margin: 0 0 10px;
  color: var(--sh-gold);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .08em;
}

.seahal-team-page__hero-copy h1 {
  margin: 0;
  color: #f9f9f8;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .01em;
}

.seahal-team-page__hero-accent {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 14px;
  background: var(--sh-gold);
}

.seahal-team-page__hero-subtitle {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--sh-gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.seahal-team-page__hero-intro {
  margin: 14px 0 0;
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.seahal-team-page__body {
  width: min(1200px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 22px 0 30px;
}

.seahal-team-page__toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.seahal-team-page__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.seahal-team-page__heading h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 8px;
  background: var(--sh-gold);
}

.seahal-team-page__filters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.seahal-team-page__filters::-webkit-scrollbar {
  display: none;
}

.seahal-team-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  color: rgba(255, 255, 255, .88);
  background: #131920;
  text-decoration: none;
  white-space: nowrap;
}

.seahal-team-filter.is-active,
.seahal-team-filter:hover {
  border-color: rgba(200, 148, 61, .68);
  color: #fff;
  background: rgba(200, 148, 61, .9);
}

.seahal-team-page__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.seahal-team-member-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #131920;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.seahal-team-member-card__media {
  position: relative;
  aspect-ratio: 245 / 288;
  background:
    radial-gradient(circle at top right, rgba(200, 148, 61, .16), transparent 36%),
    linear-gradient(160deg, #20262d, #141920 62%, #0b0e12);
}

.seahal-team-member-card__image,
.seahal-team-member-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.seahal-team-member-card__image {
  object-fit: cover;
}

.seahal-team-member-card__placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  font-size: 4rem;
  font-weight: 700;
}

.seahal-team-member-card__content {
  padding: 12px 14px 14px;
}

.seahal-team-member-card__title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.seahal-team-member-card__title-row h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 1.4vw, 1.6rem);
  line-height: 1.18;
}

.seahal-team-member-card__role {
  color: var(--sh-gold);
  font-size: 12px;
  font-weight: 600;
}

.seahal-team-member-card__en {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.seahal-team-member-card__bio {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.7;
}

.seahal-team-member-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.seahal-team-member-card__tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(200, 148, 61, .28);
  border-radius: 6px;
  color: var(--sh-gold);
  background: rgba(200, 148, 61, .08);
  font-size: 12px;
}

.seahal-team-culture-panel {
  margin-top: 22px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: #131920;
}

.seahal-team-culture-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
}

.seahal-team-culture-panel h2::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--sh-gold);
}

.seahal-team-culture-panel__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.seahal-team-culture-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 110px;
  padding: 6px 18px;
}

.seahal-team-culture-item + .seahal-team-culture-item {
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.seahal-team-culture-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: 2px;
  border: 1px solid rgba(200, 148, 61, .28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 181, 113, .22), rgba(216, 181, 113, 0) 48%),
    linear-gradient(180deg, rgba(24, 31, 38, .92), rgba(15, 20, 26, .98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 10px 24px rgba(0, 0, 0, .22);
}

.seahal-team-culture-item__icon img {
  display: block;
  width: 30px;
  height: 30px;
}

.seahal-team-culture-item--2 .seahal-team-culture-item__icon {
  background:
    radial-gradient(circle at 32% 28%, rgba(99, 131, 193, .24), rgba(99, 131, 193, 0) 48%),
    linear-gradient(180deg, rgba(24, 31, 38, .92), rgba(15, 20, 26, .98));
}

.seahal-team-culture-item--3 .seahal-team-culture-item__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(120, 184, 164, .22), rgba(120, 184, 164, 0) 48%),
    linear-gradient(180deg, rgba(24, 31, 38, .92), rgba(15, 20, 26, .98));
}

.seahal-team-culture-item--4 .seahal-team-culture-item__icon {
  background:
    radial-gradient(circle at 28% 28%, rgba(212, 109, 121, .22), rgba(212, 109, 121, 0) 48%),
    linear-gradient(180deg, rgba(24, 31, 38, .92), rgba(15, 20, 26, .98));
}

.seahal-team-culture-item--5 .seahal-team-culture-item__icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(119, 171, 113, .22), rgba(119, 171, 113, 0) 48%),
    linear-gradient(180deg, rgba(24, 31, 38, .92), rgba(15, 20, 26, .98));
}

.seahal-team-culture-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.seahal-team-culture-item p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .seahal-services-banner__copy {
    max-width: min(560px, calc(100vw - var(--seahal-services-hero-copy-left, 120px) - 32px));
  }

  .seahal-project-grid--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seahal-team-page__hero-copy {
    max-width: min(620px, calc(100vw - var(--seahal-team-hero-copy-left, 120px) - 28px));
  }

  .seahal-team-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seahal-team-culture-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seahal-team-culture-item:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .seahal-services-overview { width: min(720px, calc(100vw - 32px)); }
  .seahal-services-banner__copy {
    left: 32px;
    max-width: min(560px, calc(100vw - 64px));
  }

  .seahal-project-archive__hero.has-no-banner .seahal-project-archive__hero-media img {
    height: 300px;
  }

  .seahal-project-archive__hero.has-custom-banner .seahal-project-archive__hero-media img {
    height: auto;
  }

  .seahal-project-archive__hero-copy {
    place-content: start center;
    padding-top: 38px;
  }

  .seahal-project-archive__hero-copy p:last-child {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
  }

  .seahal-project-archive__body {
    width: min(720px, calc(100vw - 32px));
    padding-top: 16px;
  }

  .seahal-project-archive__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .seahal-project-archive__controls {
    justify-content: space-between;
  }

  .seahal-project-archive__filters {
    gap: 10px;
    padding-bottom: 4px;
  }

  .seahal-project-filter {
    min-width: 90px;
    height: 38px;
    padding: 0 14px;
  }

  .seahal-project-grid--grid {
    grid-template-columns: 1fr;
  }

  .seahal-project-grid--list .seahal-project-card__link {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .seahal-project-card__content h2 {
    font-size: 1.05rem;
  }

  .seahal-project-pagination ul {
    gap: 8px;
    flex-wrap: wrap;
  }

  .seahal-team-page__hero-media img {
    height: 332px;
  }

  .seahal-team-page__hero-copy {
    left: 16px;
    right: 16px;
    max-width: none;
    transform: translateY(-50%);
  }

  .seahal-team-page__hero-copy h1 {
    font-size: 2rem;
  }

  .seahal-team-page__kicker {
    font-size: 16px;
  }

  .seahal-team-page__hero-subtitle {
    font-size: 1.3rem;
  }

  .seahal-team-page__hero-intro {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.65;
  }

  .seahal-team-page__body {
    width: min(720px, calc(100vw - 32px));
    padding-top: 16px;
  }

  .seahal-team-page__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .seahal-team-page__filters {
    gap: 10px;
    padding-bottom: 4px;
  }

  .seahal-team-filter {
    min-width: 90px;
    height: 38px;
    padding: 0 14px;
  }

  .seahal-team-page__grid {
    grid-template-columns: 1fr;
  }

  .seahal-team-culture-panel {
    padding: 16px;
  }

  .seahal-team-culture-panel__grid {
    grid-template-columns: 1fr;
  }

  .seahal-team-culture-item,
  .seahal-team-culture-item + .seahal-team-culture-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .seahal-team-culture-item:first-child {
    border-top: 0;
  }

  .seahal-team-culture-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px 0;
  }
}

/* Homepage design restoration based on docs/01-首页.png. */
:root {
  --sh-home-inner: min(1200px, calc(100vw - 88px));
  --sh-banner-height-desktop: 332px;
  --sh-banner-strip-height-desktop: 68px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.wp-site-blocks > .wp-block-template-part + * {
  margin-block-start: 0;
}

footer.wp-block-template-part {
  margin: 0;
  padding: 0;
  border: 0;
  background: #151515;
  line-height: 0;
}

footer.wp-block-template-part > .seahal-footer {
  line-height: normal;
}

.seahal-header {
  min-height: 58px;
  height: 58px;
  padding: 0 44px;
  gap: 34px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: none;
}

.seahal-header__brand {
  flex: 0 0 auto;
  gap: 0;
}

.seahal-header__logo-image {
  display: block;
  width: 172px;
  max-width: none;
  height: 40px;
  object-fit: contain;
}

.seahal-header__panel {
  flex: 1 1 auto;
  justify-content: space-between;
  min-width: 0;
  gap: 24px;
}

.seahal-header__nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(22px, 3vw, 54px);
}

.seahal-header__nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.seahal-header__nav a:hover,
.seahal-header__nav a.is-active {
  color: #e1a929;
}

.seahal-header__nav a.is-active::after {
  bottom: -19px;
  height: 3px;
  background: #d79a20;
}

.seahal-header__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
}

.seahal-header__social,
.seahal-header__actions p {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.seahal-lang {
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.seahal-lang a,
.seahal-lang__link {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.seahal-lang a:hover,
.seahal-lang a:focus-visible,
.seahal-lang__link:hover,
.seahal-lang__link:focus-visible,
.seahal-lang__link.is-active {
  color: #fff;
}

.seahal-lang span,
.seahal-lang__divider {
  color: rgba(255, 255, 255, .6);
}

.seahal-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: 32px;
}

.seahal-header .seahal-icon-link--wechat {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.seahal-header .seahal-header__social {
  position: relative;
}

.seahal-header .seahal-header__wechat-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  min-width: 168px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(10, 12, 14, .96);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .36);
  text-align: center;
}

.seahal-header .seahal-header__wechat-popover img {
  display: block;
  width: 148px;
  height: 148px;
  margin: 0 auto 8px;
  border-radius: 6px;
  object-fit: cover;
}

.seahal-header .seahal-header__wechat-popover p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.4;
}

.seahal-header .seahal-header__social.is-wechat-open .seahal-icon-link--wechat img {
  filter: drop-shadow(0 0 3px rgba(215, 154, 32, .82));
}

.seahal-icon-link img {
  display: block;
  height: 28px;
  width: auto;
}

.seahal-icon-link--wechat {
  margin-left: 14px;
}

.seahal-icon-link--bilibili {
  margin-left: 2px;
}

.seahal-home {
  width: 100%;
  background: #ededf0;
  color: #171717;
}

.seahal-home-hero {
  position: relative;
  height: auto;
  min-height: 0;
  background: #050505;
  overflow: hidden;
}

.seahal-home-hero::after {
  display: none;
}

.seahal-home-hero > img,
.seahal-home-services > img,
.seahal-home-partners img,
.seahal-footer__image {
  display: block;
  width: 100%;
  height: auto;
}

.seahal-home-hero-strip {
  display: none;
  width: 100%;
  background: #101114;
  overflow: hidden;
}

.seahal-home-services {
  width: 100%;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
  background: #ededf0;
}

.seahal-home-featured {
  width: var(--sh-home-inner);
  margin: 0 auto;
  padding: 16px 0 14px;
}

.seahal-home-featured__head {
  margin: 0 0 8px;
}

.seahal-home-featured__head p,
.seahal-home-featured__link {
  margin: 0;
}

.seahal-home-featured h2 {
  color: #222;
  font-size: 20px;
  font-weight: 900;
}

.seahal-home-featured__head a {
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 700;
}

.seahal-home-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seahal-home-project {
  min-height: 0;
  aspect-ratio: 318 / 158;
  border-radius: 8px;
  background: #0b0d10;
  box-shadow: none;
}

.seahal-home-project img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.seahal-home-hero__hotspot {
  position: absolute;
  left: var(--seahal-home-hotspot-left, 11.05%);
  top: var(--seahal-home-hotspot-top, 77.7%);
  width: var(--seahal-home-hotspot-width, 10.4%);
  height: var(--seahal-home-hotspot-height, 17.2%);
  border-radius: 8px;
}

.seahal-home-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.seahal-home-hero__copy {
  position: absolute;
  top: clamp(18px, 2.1vw, 34px);
  left: var(--seahal-home-hero-copy-left, 68px);
  max-width: min(560px, calc(100vw - var(--seahal-home-hero-copy-left, 68px) - 32px));
  padding: 14px 18px 16px;
  background: linear-gradient(90deg, rgba(5, 7, 10, .94) 0%, rgba(5, 7, 10, .84) 82%, rgba(5, 7, 10, 0) 100%);
  border-radius: 10px;
}

.seahal-home-hero__copy .seahal-kicker {
  margin: 0 0 8px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.15;
}

.seahal-home-hero__copy h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .01em;
}

.seahal-home-hero__copy h1::first-letter {
  color: inherit;
}

.seahal-home-hero__subtitle {
  max-width: 520px;
  margin: 12px 0 0;
  color: #d9d9d9;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  line-height: 1.6;
}

.seahal-home-partners {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 18px max(24px, calc((100vw - var(--sh-home-inner)) / 2));
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  box-sizing: border-box;
}

.seahal-home-partners__label {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 78px;
  padding-left: 18px;
  border-left: 2px solid rgba(191, 137, 48, .95);
}

.seahal-home-partners__label strong {
  color: #f3f3f3;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.seahal-home-partners__label span {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.seahal-home-partners__carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.seahal-home-partners__viewport {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.seahal-home-partners__viewport::before,
.seahal-home-partners__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  z-index: 1;
  pointer-events: none;
}

.seahal-home-partners__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.seahal-home-partners__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.seahal-home-partners__track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.seahal-home-partners__track::-webkit-scrollbar {
  display: none;
}

.seahal-home-partners__track img {
  display: block;
  width: auto;
  height: 79px;
  max-width: none;
  flex: 0 0 auto;
}

.seahal-home-partners__arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(191, 137, 48, .34);
  border-radius: 999px;
  background: rgba(11, 11, 11, .92);
  color: #bf8930;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.seahal-home-partners__arrow:hover,
.seahal-home-partners__arrow:focus-visible {
  background: rgba(191, 137, 48, .12);
  border-color: rgba(191, 137, 48, .7);
  color: #d8a54a;
  transform: translateY(-1px);
}

.seahal-home-partners__arrow:focus-visible {
  outline: 2px solid rgba(216, 165, 74, .35);
  outline-offset: 2px;
}

.seahal-home-partners__arrow span {
  font-size: 28px;
  line-height: 1;
}

.seahal-home-partners__arrow:disabled {
  opacity: .35;
  cursor: default;
  color: rgba(191, 137, 48, .55);
  border-color: rgba(191, 137, 48, .18);
  background: rgba(11, 11, 11, .6);
  transform: none;
}

@media (max-width: 960px) {
  .seahal-home-partners {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .seahal-home-partners__label {
    min-height: 0;
  }

  .seahal-home-partners__label strong {
    font-size: 20px;
  }

  .seahal-home-partners__carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .seahal-home-partners__track img {
    height: 68px;
  }
}

@media (max-width: 640px) {
  .seahal-home-partners {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .seahal-home-partners__label {
    padding-left: 14px;
  }

  .seahal-home-partners__label strong {
    font-size: 20px;
  }

  .seahal-home-partners__label span {
    font-size: 13px;
  }

  .seahal-home-partners__carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .seahal-home-partners__track img {
    height: 54px;
  }

  .seahal-home-partners__viewport::before,
  .seahal-home-partners__viewport::after {
    width: 28px;
  }

  .seahal-home-partners__arrow {
    width: 36px;
    height: 36px;
  }

  .seahal-home-partners__arrow span {
    font-size: 22px;
  }
}

.seahal-footer {
  padding: 0;
  background: #151515;
  border-top: 0;
}

.seahal-footer__image {
  display: block;
  width: 100%;
  height: auto;
}

.seahal-footer__desktop {
  position: relative;
}

.seahal-footer__overlay {
  position: absolute;
  inset: 0;
  color: #ebe4db;
  font-size: clamp(9px, .73vw, 13px);
  line-height: 1;
  font-weight: 400;
}

.seahal-footer__text {
  position: absolute;
  top: calc(50% + 6px);
  transform: translateY(-50%);
  white-space: nowrap;
}

.seahal-footer__text--phone {
  left: calc(7.4% + 40px);
}

.seahal-footer__text--email {
  left: calc(17.2% + 92px);
}

.seahal-footer__text--address {
  left: 37.8%;
}

.seahal-footer__legal {
  position: absolute;
  top: calc(50% + 6px);
  right: 2.5%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
}

.seahal-footer__legal .seahal-footer__text {
  position: static;
  top: auto;
  transform: none;
}

.seahal-footer__mobile {
  display: none;
}

.seahal-footer__mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 20px;
}

.seahal-footer__mobile-item {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
}

.seahal-footer__mobile-item--full {
  grid-column: 1 / -1;
}

.seahal-footer__mobile-item span {
  display: block;
  color: var(--sh-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.seahal-footer__mobile-item strong {
  display: block;
  margin-top: 6px;
  color: #f0ece8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.seahal-footer__mobile-item em {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 761px) {
  .seahal-home-hero {
    height: var(--sh-banner-height-desktop);
  }

  .seahal-home-hero > img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .seahal-about-banner {
    height: var(--sh-banner-height-desktop);
  }

  .seahal-about-banner-strip {
    display: block;
  }

  .seahal-about-banner picture,
  .seahal-about-banner img {
    height: 100%;
  }

  .seahal-about-banner img {
    object-fit: cover;
    object-position: center top;
  }

  .seahal-services-banner {
    height: var(--sh-banner-height-desktop);
  }

  .seahal-services-banner picture,
  .seahal-services-banner img {
    height: 100%;
  }

  .seahal-services-banner img {
    object-fit: cover;
    object-position: center top;
  }

  .seahal-team-page__hero {
    height: var(--sh-banner-height-desktop);
  }

  .seahal-team-page__hero-media,
  .seahal-team-page__hero-media picture,
  .seahal-team-page__hero-media img {
    height: 100%;
  }

  .seahal-team-page__hero-media img {
    object-fit: cover;
    object-position: center top;
  }

  .seahal-about-section-heading {
    display: flex;
    align-items: end;
    min-height: var(--sh-banner-strip-height-desktop);
    padding-top: 0;
  }

  .seahal-about-section-heading h2 {
    margin: 0;
  }

  .seahal-project-archive__hero.has-no-banner {
    min-height: var(--sh-banner-height-desktop);
  }

  .seahal-project-archive__hero.has-custom-banner .seahal-project-archive__hero-media img {
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
}

@media (max-width: 1180px) {
  .seahal-header {
    padding: 0 24px;
    gap: 20px;
  }

  .seahal-header__nav {
    gap: 18px;
  }

  .seahal-header__nav a {
    font-size: 14px;
  }

  .seahal-lang {
    font-size: 14px;
  }

  .seahal-home-project-grid { gap: 12px; }
}

@media (max-width: 960px) {
  :root {
    --sh-home-inner: min(720px, calc(100vw - 32px));
  }

  .seahal-header {
    height: 64px;
    min-height: 64px;
    padding: 0 16px;
  }

  .seahal-header__logo-image {
    width: 130px;
  }

  .seahal-header__toggle {
    display: inline-flex;
    border-radius: 6px;
  }

  .seahal-header__panel {
    top: 64px;
    left: 16px;
    right: 16px;
  }

  .seahal-header__nav,
  .seahal-header__actions {
    align-items: flex-start;
  }

  .seahal-header__actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .seahal-header .seahal-header__wechat-popover {
    right: auto;
    left: 0;
  }

  .seahal-footer__desktop {
    display: none;
  }

  .seahal-footer__mobile {
    display: block;
    background: #151515;
  }

  .seahal-home-project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .seahal-home-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .seahal-home-project-grid {
    grid-template-columns: 1fr;
  }
}

/* Final homepage desktop/tablet locks. Keep these at EOF so earlier breakpoints cannot override them. */
.seahal-header .seahal-header__actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  width: max-content !important;
  min-width: max-content !important;
}

.seahal-header .seahal-lang,
.seahal-header .seahal-header__social,
.seahal-header .seahal-header__actions p,
.seahal-header .seahal-icon-link {
  flex: 0 0 auto !important;
}

.seahal-header .seahal-icon-link {
  width: auto !important;
  min-width: 0 !important;
}

.seahal-header .seahal-icon-link img {
  display: block !important;
  width: auto !important;
  max-width: none !important;
}

@media (min-width: 600px) {
  .seahal-home .seahal-home-project-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 599px) {
  .seahal-home .seahal-home-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 430px) {
  .seahal-home .seahal-home-project-grid {
    grid-template-columns: 1fr !important;
  }
}

.seahal-project-detail {
  padding-bottom: 3rem;
}

.seahal-project-detail__hero {
  position: relative;
  overflow: hidden;
  min-height: 332px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #050607;
}

.seahal-project-detail__hero-media,
.seahal-project-detail__hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seahal-project-detail__hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.seahal-project-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, .98) 0%, rgba(5, 6, 7, .86) 35%, rgba(5, 6, 7, .2) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, .15) 0%, rgba(5, 6, 7, .72) 100%);
}

.seahal-project-detail__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.seahal-project-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.seahal-project-detail__breadcrumb a,
.seahal-project-detail__breadcrumb span:last-child {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.seahal-project-detail__hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 .75rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: rgba(200, 148, 61, .22);
  color: var(--sh-gold-strong);
  font-size: .88rem;
  font-weight: 700;
}

.seahal-project-detail__hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: .95;
}

.seahal-project-detail__hero-subtitle {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.seahal-project-detail__meta-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.4rem;
}

.seahal-project-detail__meta-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 64px;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(8, 11, 14, .62);
  backdrop-filter: blur(10px);
}

.seahal-project-detail__meta-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--sh-gold-strong);
  flex: 0 0 auto;
}

.seahal-project-detail__meta-icon svg {
  width: 100%;
  height: 100%;
}

.seahal-project-detail__meta-item span:last-child {
  display: grid;
  gap: .2rem;
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
}

.seahal-project-detail__meta-item strong {
  color: var(--sh-muted);
  font-size: .78rem;
  font-weight: 600;
}

.seahal-project-detail__body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 360px;
  gap: 1rem;
  width: min(1200px, 90vw);
  margin: -1.2rem auto 0;
}

.seahal-project-detail__nav {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: .4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: rgba(15, 19, 24, .84);
  backdrop-filter: blur(12px);
}

.seahal-project-detail__nav a {
  padding: .9rem 1rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.seahal-project-detail__nav a:hover {
  background: rgba(200, 148, 61, .14);
  color: var(--sh-gold-strong);
}

.seahal-project-detail__main,
.seahal-project-detail__sidebar {
  display: grid;
  gap: 1rem;
}

.seahal-project-detail__panel {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 22, 26, .96), rgba(12, 16, 20, .96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.seahal-project-detail__panel h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.seahal-project-detail__intro :is(p, ul, ol) {
  margin: 0 0 1rem;
  color: var(--sh-muted);
  line-height: 1.85;
}

.seahal-project-detail__intro :is(p:last-child, ul:last-child, ol:last-child) {
  margin-bottom: 0;
}

.seahal-project-detail__responsibilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.seahal-project-detail__responsibility {
  display: flex;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
}

.seahal-project-detail__responsibility-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--sh-gold-strong);
  background: rgba(200, 148, 61, .1);
  flex: 0 0 auto;
}

.seahal-project-detail__responsibility-icon svg,
.seahal-project-detail__demo-play svg,
.seahal-project-detail__quote-icon svg {
  width: 100%;
  height: 100%;
}

.seahal-project-detail__responsibility h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
}

.seahal-project-detail__responsibility p {
  margin: 0;
  color: var(--sh-muted);
  line-height: 1.7;
}

.seahal-project-detail__demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .9fr);
  gap: 1rem;
}

.seahal-project-detail__demo-single {
  display: grid;
  gap: .9rem;
}

.seahal-project-detail__demo-list {
  display: grid;
  gap: .7rem;
  align-content: start;
}

.seahal-project-detail__demo-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: .85rem;
  align-items: center;
  width: 100%;
  padding: .95rem 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.seahal-project-detail__demo-item.is-active {
  border-color: rgba(200, 148, 61, .55);
  background: rgba(200, 148, 61, .16);
}

.seahal-project-detail__demo-play {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--sh-gold-strong);
}

.seahal-project-detail__demo-copy {
  display: grid;
  gap: .2rem;
}

.seahal-project-detail__demo-copy strong {
  font-size: .98rem;
}

.seahal-project-detail__demo-copy em {
  color: var(--sh-muted);
  font-style: normal;
  font-size: .82rem;
}

.seahal-project-detail__demo-duration {
  color: var(--sh-gold-strong);
  font-size: .88rem;
  font-weight: 700;
}

.seahal-project-detail__demo-link {
  margin: 0;
}

.seahal-project-detail__demo-link a {
  color: var(--sh-gold-strong);
  text-decoration: none;
}

.seahal-project-detail__demo-link a:hover {
  text-decoration: underline;
}

.seahal-project-detail__info-card-image {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 16px;
  aspect-ratio: 16 / 7;
  background: #090b0d;
}

.seahal-project-detail__info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seahal-project-detail__info-list {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.seahal-project-detail__info-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: .75rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.seahal-project-detail__info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.seahal-project-detail__info-list dt {
  color: var(--sh-muted);
}

.seahal-project-detail__info-list dd {
  margin: 0;
  color: var(--sh-text);
}

.seahal-project-detail__quote {
  position: relative;
  margin: 0 0 1rem;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
}

.seahal-project-detail__quote-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 18px;
  height: 18px;
  color: var(--sh-gold-strong);
}

.seahal-project-detail__quote p {
  margin: 0;
  color: var(--sh-text);
  line-height: 1.75;
}

.seahal-project-detail__quote cite {
  display: block;
  margin-top: .8rem;
  color: var(--sh-muted);
  font-style: normal;
}

.seahal-project-detail__result-copy {
  margin: 0 0 1rem;
  color: var(--sh-muted);
  line-height: 1.75;
}

.seahal-project-detail__achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.seahal-project-detail__achievement {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(200, 148, 61, .1);
  border: 1px solid rgba(200, 148, 61, .22);
}

.seahal-project-detail__achievement strong {
  display: block;
  color: var(--sh-gold-strong);
  font-size: 1.3rem;
}

.seahal-project-detail__achievement span {
  display: block;
  margin-top: .2rem;
  color: var(--sh-muted);
  font-size: .84rem;
}

.seahal-project-detail__people-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .7rem;
}

.seahal-project-detail__person {
  display: grid;
  justify-items: center;
  gap: .55rem;
  text-align: center;
}

.seahal-project-detail__person-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e1215, #2b333a);
  color: var(--sh-gold-strong);
  font-weight: 800;
}

.seahal-project-detail__person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seahal-project-detail__person strong {
  font-size: .92rem;
}

.seahal-project-detail__person em {
  color: var(--sh-muted);
  font-style: normal;
  font-size: .8rem;
}

.seahal-project-detail__team-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1rem;
  padding: 0 1rem;
  border: 1px solid var(--sh-gold);
  border-radius: 999px;
  color: var(--sh-gold-strong);
  text-decoration: none;
}

.seahal-project-detail__empty {
  color: var(--sh-muted);
}

.seahal-project-detail__panel--sticky {
  position: sticky;
  top: 92px;
}

@media (max-width: 1180px) {
  .seahal-project-detail__body {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .seahal-project-detail__sidebar {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .seahal-project-detail__panel--sticky {
    position: static;
  }
}

@media (max-width: 860px) {
  .seahal-project-detail__meta-row,
  .seahal-project-detail__responsibilities,
  .seahal-project-detail__demo-grid,
  .seahal-project-detail__achievement-grid,
  .seahal-project-detail__people-grid,
  .seahal-project-detail__sidebar {
    grid-template-columns: 1fr;
  }

  .seahal-project-detail__body {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .seahal-project-detail__nav {
    position: static;
    display: flex;
    gap: .6rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .seahal-project-detail__nav a {
    flex: 0 0 auto;
  }

  .seahal-project-detail__demo-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .seahal-project-detail__demo-duration {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .seahal-project-detail__hero {
    min-height: 280px;
  }

  .seahal-project-detail__hero-inner {
    padding-top: .75rem;
  }

  .seahal-project-detail__hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .seahal-project-detail__panel,
  .seahal-project-detail__nav {
    border-radius: 16px;
  }
}
