/* 小新 · Luxury Editorial Portfolio */
:root {
  --bg: #050507;
  --bg-2: #0c0c10;
  --bg-elev: #121218;
  --ink: #f4f0e8;
  --ink-soft: #c8c2b6;
  --ink-muted: #8f897c;
  --ink-dim: #5e5a52;
  --gold: #d4af7a;
  --gold-bright: #f0d9a8;
  --gold-deep: #8c6239;
  --line: rgba(244, 240, 232, 0.08);
  --line-gold: rgba(212, 175, 122, 0.35);
  --glass: rgba(16, 16, 22, 0.55);
  --danger: #ff9b9b;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  --font-display: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-en: "Syne", "Noto Sans SC", sans-serif;
  --nav-h: 76px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 28px), 1120px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.65rem 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 12, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-gold), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.brand-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.brand-role {
  font-size: 0.68rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.65rem 1rem !important;
  font-size: 0.86rem !important;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
  }
}

/* ——— Buttons ——— */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #1a1208;
  box-shadow: 0 14px 36px rgba(212, 175, 122, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(212, 175, 122, 0.42);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-gold);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 122, 0.06);
}

.btn-block {
  width: 100%;
}

.icon-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  color: var(--ink);
  border-color: var(--gold);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 2.5rem) 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.35) 0%, rgba(5, 5, 7, 0.55) 40%, rgba(5, 5, 7, 0.92) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5, 5, 7, 0.75) 0%, rgba(5, 5, 7, 0.2) 55%, rgba(5, 5, 7, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.hero-title {
  margin: 0 0 1.35rem;
}

.hero-title .line-cn {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08em;
  background: linear-gradient(120deg, var(--gold-bright), #fff6e0 40%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .line-en {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.75rem;
}

.hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: 2rem;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-dim);
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.hero-scroll i {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s var(--ease) infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0.3);
    transform-origin: top;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0.2;
  }
}

@media (min-width: 900px) {
  .hero-scroll {
    display: flex;
  }
  .hero-inner {
    max-width: 48rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.95s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Marquee ——— */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

.marquee-track span:nth-child(odd) {
  color: var(--gold);
  opacity: 0.75;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: calc(var(--max) + 5rem);
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.section-kicker .num {
  color: var(--ink-dim);
}

.section-kicker.light {
  color: var(--gold-bright);
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 36rem;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--ink-muted);
}

.serif {
  font-family: var(--font-display);
  font-weight: 400;
}

.italic {
  font-style: italic;
}

/* ——— About ——— */
.about-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 920px) {
  .about-layout {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 3.5rem;
  }
}

.about-visual {
  position: relative;
}

.frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  background: var(--bg-elev);
}

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

.about-float {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-gold);
  background: rgba(10, 10, 14, 0.78);
  backdrop-filter: blur(14px);
}

.about-float img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.about-float strong {
  display: block;
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

.about-float span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.about-lead {
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 36rem;
}

.about-points {
  display: grid;
  gap: 0.9rem;
}

.about-points article {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent);
  transition: border-color 0.25s ease;
}

.about-points article:hover {
  border-color: var(--line-gold);
}

.about-points h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.about-points p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* ——— Services ——— */
.service-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.55rem 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, transform 0.25s var(--ease), background 0.25s ease;
}

.service-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  background: rgba(20, 20, 28, 0.72);
}

.svc-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 122, 0.08);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

/* ——— Work grid ——— */
.work-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 860px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-card--lg {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }
  .work-card--lg .work-media {
    min-height: 360px;
  }
  .work-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
}

.work-card {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  border-color: var(--line-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.work-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0e;
}

.work-card--lg .work-media,
.work-card--wide .work-media {
  aspect-ratio: auto;
  min-height: 280px;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.work-card:hover .work-media img {
  transform: scale(1.04);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 45%);
}

.tag {
  font-size: 0.72rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 122, 0.45);
  color: var(--gold-bright);
  background: rgba(8, 8, 12, 0.55);
  backdrop-filter: blur(8px);
}

.year {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.work-body {
  padding: 1.35rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
}

.work-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.work-body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.work-body ul {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.work-body li {
  font-size: 0.75rem;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

/* ——— Process ——— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steps li {
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
}

.step-num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.steps strong {
  font-size: 1rem;
}

.steps span:last-child {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* ——— Contact ——— */
.contact {
  padding-bottom: 5.5rem;
}

.contact-shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.75rem);
  border-radius: 28px;
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(ellipse at 12% 20%, rgba(212, 175, 122, 0.14), transparent 42%),
    radial-gradient(ellipse at 88% 80%, rgba(90, 110, 160, 0.12), transparent 48%),
    linear-gradient(160deg, #101018, #08080c);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .contact-shell {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: center;
  }
}

.contact-copy .lede {
  max-width: 32rem;
}

.contact-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.contact-points li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-panel {
  padding: 1.7rem 1.5rem 1.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(5, 5, 8, 0.55);
  backdrop-filter: blur(12px);
}

.contact-panel-logo {
  margin-bottom: 1rem;
}

.contact-panel-logo img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-gold);
}

.panel-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.contact-panel h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.contact-panel > p {
  margin: 0 0 1.2rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.fineprint {
  margin: 0.95rem 0 0 !important;
  font-size: 0.76rem !important;
  color: var(--ink-dim) !important;
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer-links a:hover,
.linkish:hover {
  color: var(--gold-bright);
}

.linkish {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.beian {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-dim);
}

/* ——— Modal ——— */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal-root[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 5, 0.78);
  backdrop-filter: blur(8px);
}

.modal {
  position: relative;
  width: min(100%, 720px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid var(--line-gold);
  background: linear-gradient(165deg, #16161f, #0a0a0f 72%);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.55rem;
}

@media (min-width: 640px) {
  .modal {
    padding: 1.65rem 1.75rem 1.8rem;
  }
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.modal-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.modal-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.modal-intro {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.type-field {
  margin: 0 0 1.1rem;
  padding: 0;
  border: none;
}

.type-field legend {
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.type-grid {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 560px) {
  .type-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.type-opt {
  appearance: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.type-opt:hover {
  border-color: rgba(212, 175, 122, 0.45);
}

.type-opt[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(212, 175, 122, 0.1);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 122, 0.18);
}

.type-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(212, 175, 122, 0.1);
  color: var(--gold-bright);
}

.type-ico svg {
  width: 16px;
  height: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field > span:first-child {
  font-size: 0.92rem;
  font-weight: 500;
}

.field textarea,
.field input[type="email"],
.field input[type="text"] {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  padding: 0.85rem 0.95rem;
  outline: none;
}

.field textarea:focus,
.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 122, 0.14);
}

.field-hint {
  font-size: 0.8rem;
  color: var(--ink-dim);
}

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

.form-error {
  margin: 0 0 0.85rem;
  color: var(--danger);
  font-size: 0.9rem;
}

.success-body {
  margin: 0.5rem 0 1.5rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-scroll i,
  .marquee-track {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .work-media img {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
