:root {
  --blue-900: #0b3a66;
  --blue-700: #1d5fa8;
  --blue-500: #2f80d8;
  --blue-100: #e8f2ff;
  --text: #1b2b40;
  --white: #ffffff;
  --gray: #6b7a90;
  --danger: #d14d4d;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 220px);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(95deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a,
.link-btn {
  color: var(--white);
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.admin-role-badge {
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}

.main-content { padding: 24px 0 36px; }
h1, h2, h3 { color: var(--blue-900); }

.hero {
  background: var(--white);
  border: 1px solid #d5e5f9;
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 28px rgba(20, 71, 125, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.card,
.panel {
  background: var(--white);
  border: 1px solid #d7e8fd;
  border-radius: 14px;
  padding: 16px;
}

.thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.thumb.small {
  width: 160px;
  height: 120px;
}

.qr { width: 180px; border: 1px solid #dbe8fa; border-radius: 12px; padding: 8px; background: #fff; }

.social-link-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.social-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.admin-social-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.admin-social-preview {
  margin: 0;
  padding: 16px;
  border: 1px solid #d7e8fd;
  border-radius: 16px;
  background: #fff;
}

.admin-social-preview-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-social-preview-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
}

.admin-social-preview-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-social-preview-copy strong {
  color: #16365d;
  font-size: 20px;
}

.admin-social-preview-copy small {
  color: #58708e;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-all;
}

.admin-social-preview-badge-line,
.contact-qr-label-icon-line,
.public-page .social-link-badge-line {
  background: linear-gradient(135deg, #06c755, #00b900);
  color: #fff;
}

.admin-social-preview-badge-facebook,
.contact-qr-label-icon-facebook,
.public-page .social-link-badge-facebook {
  background: linear-gradient(135deg, #1877f2, #0f5ed7);
  color: #fff;
}

.admin-social-preview-badge-instagram,
.contact-qr-label-icon-instagram,
.public-page .social-link-badge-instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 54%, #6228d7);
  color: #fff;
}

.admin-social-preview-badge-threads,
.contact-qr-label-icon-threads,
.public-page .social-link-badge-threads {
  background: linear-gradient(135deg, #0f0f10, #2e2e31);
  color: #fff;
}

.admin-social-preview-line { box-shadow: inset 0 0 0 1px rgba(6, 199, 85, 0.14); }
.admin-social-preview-facebook { box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.14); }
.admin-social-preview-instagram { box-shadow: inset 0 0 0 1px rgba(238, 42, 123, 0.14); }
.admin-social-preview-threads { box-shadow: inset 0 0 0 1px rgba(15, 15, 16, 0.14); }

label { display: block; font-weight: 600; margin-bottom: 10px; }
input, textarea, button {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c6dcf7;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
}

select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c6dcf7;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  background: #fff;
}

button, .btn {
  width: auto;
  background: var(--blue-500);
  color: #fff;
  border: 0;
  text-decoration: none;
  display: inline-block;
  padding: 10px 14px;
  cursor: pointer;
}

.btn.ghost {
  background: #eff6ff;
  color: #0b3a66;
}

.danger { background: var(--danger); color: #fff; border: none; padding: 6px 10px; border-radius: 8px; }

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #d7e8fd; }
.table th, .table td { border-bottom: 1px solid #ecf3ff; padding: 10px; text-align: left; }
.actions { display: flex; gap: 8px; align-items: center; }
.inline-form { display: inline; }
.muted { color: var(--gray); }
.notice { color: #0f7a34; font-weight: 600; }
.error { color: #b63535; font-weight: 600; }
.footer { border-top: 1px solid #dce8f8; padding: 20px 0 26px; color: #486180; font-size: 14px; }
.footer-wrap {
  display: grid;
  gap: 18px;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.footer-brand-link,
.footer-admin-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 160ms ease, color 160ms ease;
}

.footer-brand-link:hover,
.footer-admin-link:hover {
  opacity: 0.74;
}

.footer-motto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-motto-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(72, 97, 128, 0.12);
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px 28px;
}

.footer-info-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.footer-copy,
.footer-meta {
  margin: 0;
  opacity: 0.85;
  line-height: 1.8;
}

.footer-link-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 16px;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  line-height: 1.8;
  transition: color 160ms ease, opacity 160ms ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(72, 97, 128, 0.12);
}
.tracked-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.image-preview-link {
  cursor: zoom-in;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e8fd;
}

.admin-dashboard-heading {
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.admin-dashboard-heading h1,
.admin-dashboard-heading p {
  margin: 0 0 8px;
}

.admin-operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.admin-operation-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 18px;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  border: 1px solid #d7e8fd;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(20, 71, 125, 0.06);
}

.admin-operation-card span {
  color: var(--gray);
  font-size: 12px;
}

.admin-operation-card strong {
  color: var(--blue-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.admin-operation-card p {
  margin: 0;
  font-weight: 700;
}

.admin-operation-card.is-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  border-color: transparent;
}

.admin-operation-card.is-primary span,
.admin-operation-card.is-primary strong {
  color: #fff;
}

.admin-operation-card.is-warning {
  border-color: #e8b75d;
  background: #fffaf0;
}

.admin-operation-card.is-danger {
  border-color: #e7a7a7;
  background: #fff5f5;
}

.admin-operations-assistant {
  margin-bottom: 20px;
  border-color: #cbdff7;
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
}

.admin-assistant-heading {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-assistant-heading h2,
.admin-assistant-heading p {
  margin: 0 0 6px;
}

.admin-assistant-form {
  display: grid;
  gap: 7px;
}

.admin-assistant-form > label {
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
}

.admin-assistant-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.admin-assistant-form input {
  width: 100%;
}

.admin-assistant-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-assistant-prompts button {
  padding: 7px 11px;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid #cbdff7;
  border-radius: 999px;
  cursor: pointer;
}

.admin-assistant-results {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #dce9f8;
}

.admin-assistant-result-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.admin-assistant-reply {
  margin: 0;
  line-height: 1.65;
}

.admin-assistant-customer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.admin-assistant-customer-list article {
  padding: 14px;
  background: #fff;
  border: 1px solid #dce9f8;
  border-radius: 12px;
}

.admin-assistant-customer-list p {
  margin: 6px 0;
  color: var(--gray);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.admin-recent-customers {
  margin-bottom: 20px;
}

.admin-recent-customers .title-row {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-recent-customers h2,
.admin-recent-customers p {
  margin: 0 0 6px;
}

.admin-result-count,
.admin-status-chip {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.admin-customer-table {
  min-width: 920px;
}

.admin-customer-table td {
  vertical-align: top;
}

.admin-customer-table td small {
  display: block;
  margin-top: 5px;
  color: var(--gray);
  line-height: 1.45;
}

.admin-customer-table .admin-status-attention {
  color: #9a5a00;
  font-weight: 700;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.admin-empty-state {
  padding: 24px;
  text-align: center;
  color: var(--gray);
  background: #f7fbff;
  border-radius: 12px;
}

.admin-content-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.admin-content-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--gray);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e3eefb;
  border-radius: 12px;
}

.admin-content-summary strong {
  color: var(--blue-900);
  font-size: 20px;
}

.admin-inbox-heading {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-inbox-heading h1,
.admin-inbox-heading p {
  margin: 0 0 6px;
}

.admin-customer-search {
  margin-bottom: 16px;
}

.admin-customer-search-form {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) repeat(2, minmax(150px, 0.8fr)) auto auto;
  gap: 10px;
  align-items: end;
}

.admin-customer-search-form label {
  display: grid;
  gap: 6px;
}

.admin-customer-search-form label span {
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
}

.admin-customer-search-form input,
.admin-customer-search-form select {
  width: 100%;
}

.admin-customer-search-form > a {
  padding: 10px 4px;
  white-space: nowrap;
}

.admin-search-status {
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 13px;
}

.admin-inbox-results {
  margin-bottom: 14px;
}

.admin-inbox-table {
  min-width: 1080px;
}

.admin-inbox-table td {
  vertical-align: top;
}

.admin-inbox-table td small {
  display: block;
  margin-top: 5px;
  color: var(--gray);
  line-height: 1.45;
}

.admin-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}

.admin-pagination > :last-child {
  justify-self: end;
}

.analytics-title-row {
  align-items: flex-start;
  margin-bottom: 18px;
}

.analytics-title-row p {
  margin: 6px 0 0;
}

.analytics-summary-grid {
  margin-bottom: 18px;
}

.analytics-panel {
  margin-bottom: 18px;
}

.analytics-panel-head,
.analytics-work-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.analytics-panel-head h2,
.analytics-work-head h2 {
  margin: 0;
}

.analytics-work-stack {
  display: grid;
  gap: 18px;
}

.analytics-work-summary,
.analytics-metric-row,
.analytics-metric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.analytics-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.analytics-image-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.analytics-image-card {
  border: 1px solid #d7e8fd;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.analytics-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f4f8fe;
}

.analytics-image-copy {
  padding: 14px;
}

.analytics-image-copy h3 {
  margin: 0;
}

.analytics-image-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.analytics-kind-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: #eef5ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.analytics-rate-bar {
  margin-top: 14px;
  height: 8px;
  background: #eaf2ff;
  border-radius: 999px;
  overflow: hidden;
}

.analytics-rate-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-500), #6ba8f0);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #ecf5ff, #ffffff);
}

.login-card { width: min(420px, 92vw); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-figure {
  margin: 0;
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d7e8fd;
  background: #fff;
}

.image-check {
  display: block;
  border: 1px solid #e3efff;
  border-radius: 10px;
  padding: 8px;
  background: #fff;
}

.asset-panel {
  margin-top: 18px;
  border-top: 1px solid #dceafe;
  padding-top: 14px;
}

ul { padding-left: 22px; }

.wizard-book-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.public-page {
  background:
    radial-gradient(circle at top, rgba(219, 191, 150, 0.22), transparent 26%),
    linear-gradient(180deg, #f7f1ea 0%, #fbf8f4 38%, #f4eee6 100%);
  color: #1f1914;
  font-family: "Avenir Next", "PingFang TC", "Noto Sans TC", sans-serif;
}

.public-page .container {
  width: min(1220px, 94vw);
}

.public-page .main-content {
  padding: 24px 0 46px;
}

.public-page .topbar {
  background: rgba(26, 20, 16, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.public-page .brand,
.public-page .nav-links a,
.public-page .link-btn {
  color: #f7ede2;
}

.public-page .brand {
  letter-spacing: 0.08em;
  max-width: min(54vw, 420px);
}

.public-page .nav-links a,
.public-page .link-btn {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-page .nav-links .nav-lead-link {
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff7ef;
  color: #1f1914;
  font-weight: 700;
}

.public-page .nav-links .nav-lead-link:hover {
  color: #1d6f75;
}

.public-page h1,
.public-page h2,
.public-page h3 {
  color: #1f1914;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  letter-spacing: 0;
}

body.public-page * {
  letter-spacing: 0 !important;
}

.public-page .footer {
  border-top: 1px solid rgba(65, 46, 28, 0.1);
  color: #6b5543;
}

.public-page .footer-brand-link,
.public-page .footer-admin-link {
  color: #4a3628;
}

.public-page .muted {
  color: #8a6f57;
}

.public-page .btn {
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1f1914, #423126);
  color: #fff7f0;
  box-shadow: 0 16px 24px rgba(31, 25, 20, 0.18);
}

.public-page .btn.ghost {
  background: rgba(255, 248, 240, 0.94);
  color: #1f1914;
  border: 1px solid rgba(65, 46, 28, 0.1);
}

.public-page .page-kicker {
  margin: 0;
  color: #aa825d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.public-page .page-hero,
.public-page .detail-card,
.public-page .public-card,
.public-page .form-card,
.public-page .gallery-section,
.public-page .info-panel {
  border-radius: 30px;
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(74, 53, 33, 0.08);
  box-shadow: 0 18px 34px rgba(24, 18, 13, 0.08);
}

.public-page .page-hero {
  margin-bottom: 22px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 280px;
  gap: 22px;
  align-items: end;
}

.public-page .page-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.96;
}

.public-page .page-lead {
  margin: 0;
  max-width: 44ch;
  color: #544434;
  line-height: 1.85;
}

.public-page .page-hero-side {
  display: grid;
  gap: 10px;
  align-content: start;
}

.public-page .page-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-page .page-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3ebe1;
  color: #5b4736;
  font-size: 13px;
}

.public-page .public-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.public-page .public-card {
  overflow: hidden;
}

.public-page .public-card-media,
.public-page .detail-cover,
.public-page .public-fallback-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, #221a16, #4a382b);
}

.public-page .public-card-media img,
.public-page .detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.public-page .detail-cover {
  margin-bottom: 24px;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.public-page .public-fallback-media {
  display: grid;
  place-items: center;
  color: #fff4e6;
  font-size: 34px;
  text-align: center;
  padding: 24px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.public-page .public-card-copy {
  padding: 22px;
}

.public-page .tracked-image-link:hover img,
.public-page .tracked-image-link:focus-visible img {
  transform: scale(1.02);
}

.work-media-frame {
  position: relative;
  isolation: isolate;
}

.article-media-frame {
  position: relative;
  isolation: isolate;
}

.article-media-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 18, 13, 0.54);
  color: rgba(255, 247, 240, 0.94);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.work-media-frame::after {
  content: "WJT Design & Engineering";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 18, 13, 0.42);
  color: rgba(255, 247, 240, 0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.public-page .public-card-copy h3 {
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.02;
}

.articles-page .public-card-copy h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.articles-page .public-card-copy p:last-of-type {
  min-height: 5.6em;
}

.articles-page .article-vertical-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
}

.articles-page .public-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.articles-page .public-card-media {
  aspect-ratio: 3 / 4;
}

.articles-page .article-card-copy {
  display: grid;
  gap: 10px;
  align-content: start;
  flex: 1;
}

.articles-page .article-card-caption {
  margin: 0;
  color: #aa825d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.articles-page .public-card-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.articles-page .article-card-summary {
  margin: 0;
  min-height: auto;
  color: #5c4a3a;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articles-page .public-link {
  margin-top: auto;
  padding-top: 4px;
}

.public-page .public-card-copy p:last-of-type,
.public-page .detail-copy p,
.public-page .rich-copy {
  color: #544434;
  line-height: 1.85;
}

.public-page .public-link,
.public-page .detail-inline-link {
  color: #1f1914;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.public-page .public-link:hover,
.public-page .detail-inline-link:hover {
  color: #8a6f57;
}

.public-page .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 320px;
  gap: 22px;
  align-items: start;
}

.public-page .detail-card {
  padding: 28px;
}

.article-detail-summary {
  margin: 0 0 22px;
  color: #6b5440;
  font-size: 18px;
  line-height: 1.8;
}

.article-detail-cover {
  max-width: 520px;
  aspect-ratio: 4 / 5;
}

.article-admin-cover-preview {
  max-width: 320px;
  margin: 6px 0 18px;
  aspect-ratio: 4 / 5;
}

.public-page .detail-summary-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.public-page .detail-copy h1,
.public-page .detail-copy .article-detail-title {
  margin: 8px 0 10px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.96;
}

.public-page .detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.public-page .detail-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f3ebe1;
  color: #5b4736;
  font-size: 13px;
}

.public-page .detail-aside {
  display: grid;
  gap: 18px;
}

.public-page .detail-section-title {
  margin: 0 0 12px;
  font-size: 24px;
}

.public-page .detail-grid {
  display: grid;
  gap: 18px;
}

.public-page .gallery-section {
  margin-top: 24px;
  padding: 30px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.public-page .gallery-section .page-kicker {
  margin: 0;
}

.public-page .gallery-section h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.public-page .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.public-page .form-card,
.public-page .info-panel {
  padding: 26px;
}

.public-page .contact-proof-strip {
  margin: -4px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.public-page .contact-proof-strip article {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.94), rgba(235, 245, 244, 0.92));
  border: 1px solid rgba(29, 111, 117, 0.12);
  box-shadow: 0 14px 26px rgba(24, 18, 13, 0.06);
}

.public-page .contact-proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #1d6f75;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.public-page .contact-proof-strip span {
  color: #544434;
  line-height: 1.75;
  font-size: 14px;
}

.public-page input,
.public-page textarea,
.public-page select {
  border: 1px solid rgba(65, 46, 28, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.public-page .source-list {
  margin-top: 18px;
}

.public-page .source-list a {
  color: #1f1914;
}

.public-page .source-list a:hover {
  color: #8a6f57;
}

.public-page .detail-cover-wide {
  aspect-ratio: 5 / 4;
}

.public-page .detail-cover-landscape {
  aspect-ratio: 16 / 10;
}

.public-page .detail-cover-square {
  aspect-ratio: 1 / 1;
}

.designer-detail-page .detail-cover-wide img {
  object-position: center 16%;
}

.public-page .detail-copy-spaced {
  padding-top: 24px;
}

.public-page .detail-copy-block + .detail-copy-block {
  margin-top: 22px;
}

.public-page .stacked-list {
  display: grid;
  gap: 12px;
}

.public-page .stacked-list p {
  margin: 0;
  color: #544434;
  line-height: 1.8;
}

.public-page .contact-motto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-page .contact-motto-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(243, 235, 225, 0.92);
  border: 1px solid rgba(91, 71, 54, 0.1);
  color: #7d5e45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.public-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.public-page .gallery-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-page .image-lightbox[hidden] {
  display: none;
}

.public-page .image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}

.public-page .image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 14, 10, 0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.public-page .image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 92vw);
  max-height: calc(100vh - 56px);
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.public-page .image-lightbox-dialog.work-media-frame::after {
  right: 28px;
  bottom: 28px;
  background: rgba(24, 18, 13, 0.52);
}

.public-page .image-lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: #efe8df;
}

.public-page .image-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  background: rgba(31, 25, 20, 0.92);
  color: #fff7f0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
}

.public-page .notice-badge {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #f3ebe1;
  color: #5b4736;
  font-size: 14px;
  line-height: 1.7;
}

.public-page .error-badge {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #fff1f1;
  color: #9d2f2f;
  border: 1px solid rgba(157, 47, 47, 0.14);
  font-size: 14px;
  line-height: 1.7;
}

.public-page .stacked-form {
  display: grid;
  gap: 16px;
}

.public-page .form-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.public-page .form-field {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.public-page .form-field span,
.public-page .form-field legend {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5543;
}

.public-page .form-field legend {
  margin-bottom: 0;
}

.public-page .form-helper {
  margin: -2px 0 0;
  color: #8a6f57;
  font-size: 13px;
  line-height: 1.6;
}

.public-page .checkbox-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.public-page .checkbox-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(65, 46, 28, 0.12);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.public-page .checkbox-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 111, 87, 0.34);
}

.public-page .checkbox-chip input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #1f1914;
  flex: 0 0 auto;
}

.public-page .checkbox-chip span {
  color: #1f1914;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.public-page .plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.public-page .plan-choice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 112px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(65, 46, 28, 0.12);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.public-page .plan-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 111, 87, 0.34);
  box-shadow: 0 12px 22px rgba(31, 25, 20, 0.06);
}

.public-page .plan-choice-card input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: #1f1914;
  flex: 0 0 auto;
}

.public-page .plan-choice-copy {
  display: grid;
  gap: 6px;
}

.public-page .plan-choice-copy strong {
  color: #1f1914;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.public-page .plan-choice-copy small {
  color: #8a6f57;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-page .plan-choice-copy em {
  color: #544434;
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.public-page textarea {
  resize: vertical;
  min-height: 180px;
}

.public-page .form-actions {
  padding-top: 4px;
}

.public-page .form-submit-note {
  margin: 10px 0 0;
  color: #6d5a49;
  font-size: 13px;
  line-height: 1.6;
}

.payment-page .payment-hero {
  align-items: center;
}

.payment-page .payment-hero .page-hero-side {
  justify-items: stretch;
}

.payment-status-badge,
.admin-payment-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: #efe6dc;
  color: #654d39;
  font-size: 13px;
  font-weight: 700;
}

.payment-status-awaiting_transfer,
.admin-payment-status-awaiting_transfer {
  background: #fff0cc;
  color: #72520d;
}

.payment-status-pending_verification,
.admin-payment-status-pending_verification {
  background: #dff1f2;
  color: #155f65;
}

.payment-status-needs_correction,
.admin-payment-status-needs_correction {
  background: #ffe3df;
  color: #923d32;
}

.payment-status-verified,
.admin-payment-status-verified {
  background: #deefe5;
  color: #25633d;
}

.payment-booking-code {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #201a16;
  color: #fff4e7;
}

.payment-booking-code small {
  color: #c9af94;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.payment-booking-code strong {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.payment-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.payment-progress article {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(74, 53, 33, 0.08);
  color: #7a6a5c;
}

.payment-progress article.is-current {
  border-color: rgba(181, 90, 43, 0.35);
  box-shadow: inset 0 0 0 1px rgba(181, 90, 43, 0.12);
}

.payment-progress article.is-complete {
  background: linear-gradient(135deg, #f8f3ec, #e6f2ee);
  color: #315c4c;
}

.payment-progress span {
  color: #b28259;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.payment-progress strong {
  font-size: 15px;
}

.payment-progress small {
  font-size: 12px;
}

.payment-page-notice {
  margin-bottom: 22px;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.payment-main-column {
  display: grid;
  gap: 18px;
}

.payment-summary-card,
.payment-waiting-card,
.bank-account-card,
.payment-form-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(74, 53, 33, 0.08);
  box-shadow: 0 18px 34px rgba(24, 18, 13, 0.08);
}

.payment-summary-card h2,
.payment-waiting-card h2,
.bank-account-card h2,
.payment-form-card h2 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
}

.payment-summary-list,
.bank-account-list,
.payment-submitted-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.payment-summary-list div,
.bank-account-list div,
.payment-submitted-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(74, 53, 33, 0.1);
}

.payment-summary-list div:last-child,
.bank-account-list div:last-child,
.payment-submitted-list div:last-child {
  border-bottom: 0;
}

.payment-summary-list dt,
.bank-account-list dt,
.payment-submitted-list dt {
  color: #8a6f57;
  font-size: 13px;
}

.payment-summary-list dd,
.bank-account-list dd,
.payment-submitted-list dd {
  margin: 0;
  color: #251d17;
  font-weight: 700;
}

.booking-record-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #eee2d5;
}
.booking-record-entry > div { display: grid; gap: 4px; }
.booking-record-entry strong { color: #3b2d24; }
.booking-record-entry span { color: #796454; font-size: 12px; line-height: 1.55; }
.booking-record-entry .btn { flex: 0 0 auto; margin: 0; color: #3c2f26; border-color: rgba(65, 48, 36, 0.25); }
.admin-message-title-row { align-items: center; }
.admin-message-title-row h1 { margin: 4px 0 0; }

.payment-waiting-card {
  background: linear-gradient(145deg, #211a16, #483326);
  color: #f8ecdf;
}

.payment-waiting-card h2,
.payment-waiting-card .btn.ghost {
  color: #fff4e8;
}

.payment-waiting-card > p:not(.page-kicker) {
  color: rgba(255, 242, 226, 0.78);
  line-height: 1.85;
}

.payment-warning-card {
  background: linear-gradient(145deg, #4e271f, #7b3e31);
}

.bank-account-card {
  background: linear-gradient(145deg, #171310, #36261d);
  color: #f8ecdf;
}

.bank-account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.bank-account-head h2 {
  color: #fff4e8;
}

.bank-account-head > span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8b58e;
  font-size: 12px;
}

.bank-account-list div {
  border-color: rgba(255, 242, 226, 0.12);
}

.bank-account-list dt {
  color: #c3a385;
}

.bank-account-list dd {
  color: #fff4e8;
}

.bank-account-number dd {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 0.08em;
}

.bank-account-instructions {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 242, 226, 0.12);
  color: rgba(255, 242, 226, 0.72);
  line-height: 1.8;
}

.payment-form-card {
  position: sticky;
  top: 92px;
}

.payment-form-lead,
.payment-form-card > p:not(.page-kicker) {
  color: #6b5847;
  line-height: 1.75;
}

.payment-confirmation-form .form-field small {
  color: #786555;
  line-height: 1.6;
}

.payment-confirmation-form textarea {
  min-height: 110px;
}

.admin-settings-section {
  display: grid;
  gap: 14px;
  margin: 12px 0;
  padding: 18px;
  border: 1px solid #d8e1eb;
  border-radius: 14px;
  background: #f8fbff;
}

.admin-settings-section legend {
  padding: 0 8px;
  font-weight: 700;
}

.admin-payment-panel {
  margin: 20px 0;
}

.admin-payment-panel .title-row {
  align-items: center;
}

.admin-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.admin-payment-grid > div {
  padding: 16px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #d7e8fd;
}

.admin-payment-link {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.admin-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #d8e1eb;
}

.admin-payment-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.secondary-button {
  background: #fff;
  color: #34445a;
  border: 1px solid #bac8d7;
}

.admin-message-content {
  margin: 8px 0 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #d7e8fd;
  color: #1b2b40;
  font: inherit;
  line-height: 1.75;
  white-space: pre-wrap;
}

.admin-document-panel { margin: 20px 0; }
.admin-document-panel .title-row { align-items: center; }
.admin-document-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  margin-top: 18px;
}
.admin-document-grid > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid #d7e8fd;
  border-radius: 14px;
  background: #f8fbff;
}
.table-scroll { max-width: 100%; overflow-x: auto; }
.admin-document-table { min-width: 660px; }
.admin-document-table td:first-child { max-width: 300px; overflow-wrap: anywhere; }
.admin-document-events {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-document-events li {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d7e8fd;
}
.admin-document-events span { color: #66758a; font-size: 12px; }

.public-page .contact-qr-wrap {
  position: relative;
  border-radius: 24px;
  padding: 18px 18px 42px;
  background: rgba(243, 235, 225, 0.76);
}

.public-page .contact-qr-wrap-line {
  box-shadow: inset 0 0 0 1px rgba(6, 199, 85, 0.16);
}

.public-page .contact-qr-wrap-facebook {
  box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.16);
}

.public-page .contact-qr-wrap-instagram {
  box-shadow: inset 0 0 0 1px rgba(238, 42, 123, 0.16);
}

.public-page .contact-qr-wrap-threads {
  box-shadow: inset 0 0 0 1px rgba(15, 15, 16, 0.16);
}

.public-page .contact-qr-label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #6b5543;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.public-page .contact-qr-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.public-page .contact-qr-image {
  width: 100%;
  display: block;
}

.public-page .contact-qr-corner-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(24, 18, 13, 0.12);
}

.public-page .contact-qr-corner-icon .social-link-icon {
  width: 15px;
  height: 15px;
}

.public-page .contact-qr-corner-icon-line {
  background: linear-gradient(135deg, #06c755, #00b900);
  color: #fff;
}

.public-page .contact-qr-corner-icon-facebook {
  background: linear-gradient(135deg, #1877f2, #0f5ed7);
  color: #fff;
}

.public-page .contact-qr-corner-icon-instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 54%, #6228d7);
  color: #fff;
}

.public-page .contact-qr-corner-icon-threads {
  background: linear-gradient(135deg, #0f0f10, #2e2e31);
  color: #fff;
}

.public-page .social-channel-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.public-page .social-link-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(243, 235, 225, 0.76);
  color: #1f1914;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.public-page .social-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(24, 18, 13, 0.08);
  background: rgba(243, 235, 225, 0.96);
}

.public-page .social-link-card-line {
  box-shadow: inset 0 0 0 1px rgba(6, 199, 85, 0.14);
}

.public-page .social-link-card-facebook {
  box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.14);
}

.public-page .social-link-card-instagram {
  box-shadow: inset 0 0 0 1px rgba(238, 42, 123, 0.14);
}

.public-page .social-link-card-threads {
  box-shadow: inset 0 0 0 1px rgba(15, 15, 16, 0.14);
}

.public-page .social-link-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.public-page .social-link-copy {
  display: grid;
  gap: 4px;
}

.public-page .social-link-copy strong {
  color: #1f1914;
  font-size: 16px;
}

.public-page .social-link-copy small {
  color: #6b5543;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-page .contact-qr-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .admin-customer-search-form {
    grid-template-columns: 1fr 1fr;
  }

  .admin-customer-search-form label:first-child {
    grid-column: 1 / -1;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-page .page-hero,
  .public-page .detail-layout,
  .public-page .contact-layout,
  .public-page .contact-proof-strip {
    grid-template-columns: 1fr;
  }

  .public-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-page .contact-qr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-customer-search-form {
    grid-template-columns: 1fr;
  }

  .admin-customer-search-form label:first-child {
    grid-column: auto;
  }

  .admin-assistant-form > div {
    grid-template-columns: 1fr;
  }

  .admin-assistant-result-heading {
    flex-direction: column;
  }

  .footer-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .title-row,
  .analytics-panel-head,
  .analytics-work-head {
    flex-direction: column;
  }

  .table {
    display: block;
    overflow-x: auto;
  }

  .public-page .page-hero,
  .public-page .detail-card,
  .public-page .form-card,
  .public-page .gallery-section,
  .public-page .info-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .public-page .public-card-copy h3,
  .public-page .detail-copy h1,
  .public-page .detail-copy .article-detail-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .public-page .gallery-grid,
  .public-page .gallery-grid-compact {
    grid-template-columns: 1fr;
  }

  .public-page .checkbox-chip-grid {
    grid-template-columns: 1fr;
  }

  .public-page .plan-choice-grid,
  .public-page .form-two-column {
    grid-template-columns: 1fr;
  }

  .payment-progress,
  .payment-layout,
  .admin-payment-grid,
  .admin-document-grid {
    grid-template-columns: 1fr;
  }

  .payment-progress {
    gap: 8px;
  }

  .payment-progress article {
    min-height: auto;
  }

  .payment-summary-card,
  .payment-waiting-card,
  .bank-account-card,
  .payment-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .payment-form-card {
    position: static;
  }

  .payment-summary-list div,
  .bank-account-list div,
  .payment-submitted-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bank-account-head {
    flex-direction: column;
  }
}

.wizard-bookmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  z-index: 20;
}

.wizard-mark {
  border: 1px solid #9fb4cd;
  border-top: 7px solid #4a6d98;
  border-radius: 14px 14px 10px 10px;
  background: #d7e0ea;
  color: #1d3552;
  text-align: center;
  padding: 10px 14px;
  min-width: 110px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(29, 53, 82, 0.14);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.wizard-mark:hover { transform: translateY(-2px); }
.wizard-mark.active {
  background: #c2d1e1;
  border-color: #7b99bc;
  border-top-color: #1f4e86;
  font-weight: 700;
}

.book-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.book-stage-hint {
  color: #4f627b;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: "Times New Roman", "Noto Serif TC", serif;
  font-size: 18px;
  margin-left: 4px;
}

.magic-book {
  --turned: 0;
  --remaining: 4;
  height: 620px;
  position: relative;
  perspective: 3400px;
  border-radius: 20px;
  background: linear-gradient(180deg, #d8dde3, #d2d8df);
  border: 1px solid #b8c1cc;
  box-shadow:
    0 25px 48px rgba(30, 41, 56, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.closed-book {
  position: absolute;
  inset: 26px 120px 26px 120px;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.magic-book.at-cover .closed-book {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.closed-book-shadow {
  position: absolute;
  inset: 18px 12px -8px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 20%, rgba(20, 26, 36, 0.18), rgba(20, 26, 36, 0));
  filter: blur(10px);
}

.closed-book-page-edge {
  position: absolute;
  top: 18px;
  bottom: 8px;
  right: -14px;
  width: 24px;
  border-radius: 0 14px 14px 0;
  background:
    repeating-linear-gradient(
      0deg,
      #ebe8de,
      #ebe8de 3px,
      #d7d1c4 3px,
      #d7d1c4 6px
    );
  box-shadow: inset -2px 0 6px rgba(60, 50, 38, 0.12);
}

.closed-book-cover {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 30px 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(220, 196, 124, 0.14), rgba(220, 196, 124, 0) 32%),
    radial-gradient(circle at 82% 18%, rgba(141, 177, 220, 0.18), rgba(141, 177, 220, 0) 28%),
    linear-gradient(145deg, #1f3654, #2e4b73 55%, #34527c);
  border: 1px solid rgba(215, 226, 243, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    0 22px 34px rgba(28, 40, 58, 0.3);
  color: #eef4ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.closed-book-cover::before,
.closed-book-cover::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(205, 177, 111, 0.38);
  border-radius: 12px;
  pointer-events: none;
}

.closed-book-cover::after {
  inset: 24px;
  border-color: rgba(238, 224, 190, 0.16);
}

.closed-book-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(248, 242, 227, 0.08);
  border: 1px solid rgba(230, 212, 170, 0.22);
}

.closed-book-logo-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #d9c27e, #b89b56);
  color: #1f2f4a;
  font-family: "Times New Roman", "Noto Serif TC", serif;
  font-size: 22px;
  font-weight: 700;
}

.closed-book-logo-text {
  color: #e7d9b0;
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 700;
}

.closed-book-sub {
  margin: 0;
  color: #d2e2fb;
  letter-spacing: 0.24em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.closed-book h2 {
  margin: 0;
  color: #f8fbff;
  font-family: "Times New Roman", "Noto Serif TC", serif;
  font-size: 52px;
  letter-spacing: 0.08em;
}

.closed-book-title {
  margin: 0;
  color: #d9e6f9;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.closed-book-company {
  margin: 0;
  color: #e7edf8;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.page-stack {
  position: absolute;
  top: 26px;
  bottom: 26px;
  background: repeating-linear-gradient(
    0deg,
    #e9ecef,
    #e9ecef 3px,
    #dde2e7 3px,
    #dde2e7 6px
  );
  border: 1px solid #c1c8cf;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: opacity 0.45s ease;
}

.page-stack.left {
  left: 18px;
  width: calc(8px + (var(--turned) * 6px));
  border-radius: 8px 0 0 8px;
}

.page-stack.right {
  right: 18px;
  width: calc(8px + (var(--remaining) * 6px));
  border-radius: 0 8px 8px 0;
}

.base-page {
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: calc(50% - 12px);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.97)),
    repeating-linear-gradient(
      0deg,
      rgba(246, 249, 252, 0.8),
      rgba(246, 249, 252, 0.8) 28px,
      rgba(239, 244, 248, 0.86) 28px,
      rgba(239, 244, 248, 0.86) 29px
    );
  border: 1px solid #c7d0da;
  box-shadow: 0 6px 14px rgba(35, 47, 61, 0.12);
  z-index: 4;
  transition: opacity 0.45s ease, transform 0.8s ease;
}

.base-page.left {
  left: 20px;
  border-radius: 14px 8px 8px 14px;
}

.base-page.right {
  right: 20px;
  border-radius: 8px 14px 14px 8px;
}

.magic-book.at-cover .base-page.left {
  background:
    linear-gradient(135deg, rgba(26, 48, 73, 0.95), rgba(42, 67, 97, 0.95)),
    radial-gradient(circle at 20% 25%, rgba(182, 201, 227, 0.2), transparent 52%);
  border-color: #48658a;
}

.book-spine {
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 20px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: linear-gradient(180deg, #4a5870, #334157);
  box-shadow:
    inset 0 0 10px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 35;
  transition: opacity 0.45s ease;
}

.sheet {
  position: absolute;
  inset: 18px 20px;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 1.72s cubic-bezier(0.18, 0.69, 0.16, 0.98), opacity 0.45s ease;
  z-index: 20;
}

.sheet.is-flipped {
  transform: rotateY(-178deg) translateX(-5px);
}

.sheet::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
  pointer-events: none;
  border-radius: 0 12px 12px 0;
}

.magic-book.at-cover .page-stack,
.magic-book.at-cover .base-page,
.magic-book.at-cover .book-spine,
.magic-book.at-cover .sheet {
  opacity: 0;
}

.page {
  position: absolute;
  top: 0;
  width: calc(50% - 6px);
  height: 100%;
  padding: 26px 20px 22px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.97)),
    repeating-linear-gradient(
      0deg,
      rgba(246, 249, 252, 0.8),
      rgba(246, 249, 252, 0.8) 28px,
      rgba(239, 244, 248, 0.86) 28px,
      rgba(239, 244, 248, 0.86) 29px
    );
  border: 1px solid #c7d0da;
  box-shadow: 0 10px 20px rgba(37, 49, 68, 0.13);
  overflow-y: auto;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.page.front {
  right: 0;
  border-radius: 8px 14px 14px 8px;
}

.page.front::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.page.back {
  left: 0;
  border-radius: 14px 8px 8px 14px;
  transform: rotateY(180deg);
}

.page.back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.page h2 {
  margin-top: 0;
}

.cover-page {
  color: #f2f6ff;
  background:
    linear-gradient(135deg, rgba(24, 49, 80, 0.96), rgba(47, 79, 117, 0.96)),
    radial-gradient(circle at 20% 25%, rgba(196, 218, 248, 0.22), transparent 52%);
  border: 1px solid #3d5f87;
}

.cover-page h1,
.cover-page p {
  color: #f2f6ff;
}

.cover-sub {
  color: #c8dcf8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.cover-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 228, 246, 0.26), rgba(159, 210, 255, 0));
  animation: glowPulse 3s ease-in-out infinite;
}

.company-page .page-tip {
  margin-top: 14px;
  background: #eef2f6;
  border-left: 4px solid #4f6f99;
  border-radius: 8px;
  padding: 12px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.mini-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #d4dbe4;
  border-radius: 10px;
  padding: 8px;
  display: block;
}

.mini-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.mini-card h3 {
  margin: 8px 0 4px;
  font-size: 14px;
}

.mini-card p {
  margin: 0;
  color: #5d6b7d;
  font-size: 12px;
}

.designer-reader {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: start;
}

.designer-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.designer-photo-frame {
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 240, 245, 0.94));
  border: 1px solid #ced7e1;
  box-shadow: 0 10px 20px rgba(42, 55, 73, 0.12);
}

.designer-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}

.designer-photo-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: linear-gradient(145deg, #2a4466, #446891);
  color: #f5f7fb;
  font-family: "Times New Roman", "Noto Serif TC", serif;
  font-size: 26px;
  text-align: center;
  padding: 14px;
}

.designer-chip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.designer-chip {
  border: 1px solid #c9d5e2;
  border-left: 5px solid #8ba7c7;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.94);
  color: #2d455f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.designer-chip:hover {
  transform: translateX(3px);
}

.designer-chip.active {
  background: linear-gradient(180deg, #eef4fb, #dde8f5);
  border-color: #9bb2cc;
  border-left-color: #355f95;
}

.designer-chip-index {
  display: inline-flex;
  min-width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #d8e3ee;
  color: #35506f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.designer-copy {
  min-width: 0;
}

.designer-reader-title {
  margin: -4px 0 12px;
  color: #52657d;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.designer-reader-bio {
  margin: 0 0 12px;
  line-height: 1.75;
}

.designer-reader-resume {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #d4dce5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 250, 0.95));
  white-space: pre-line;
  line-height: 1.7;
}

.designer-reader-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.workflow-step {
  padding: 14px;
  border: 1px solid #d4dbe4;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f3f6f9);
  box-shadow: 0 6px 16px rgba(38, 49, 65, 0.08);
}

.workflow-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #8f9fb2;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  background: #f5f7f9;
}

.workflow-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #2f3f54;
  font-family: "Times New Roman", "Noto Serif TC", serif;
  border-left: 4px solid #33465f;
  padding-left: 8px;
}

.workflow-step ul {
  margin: 0;
  padding-left: 18px;
  color: #2f3f54;
  line-height: 1.55;
  font-size: 14px;
}

.workflow-page .workflow-grid {
  align-content: start;
}

.page-kicker {
  margin: 0 0 8px;
  color: #62768f;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.closing-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.resume-block {
  white-space: pre-line;
  background: #f1f8ff;
  border: 1px solid #d5e7fb;
  border-radius: 10px;
  padding: 12px;
}

.source-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.source-list a {
  color: #1d5fa8;
  text-decoration: none;
}

.source-list a:hover {
  text-decoration: underline;
}

.page-turn-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-turn-controls .ghost {
  background: #dfe7f0;
  color: #1f3654;
}

.page.is-focus {
  animation: pageFlash 0.65s ease;
}

@keyframes pageFlash {
  0% { box-shadow: 0 0 0 0 rgba(56, 88, 128, 0.42); }
  100% { box-shadow: 0 8px 20px rgba(37, 49, 68, 0.12); }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 768px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .thumb { height: 150px; }
  .wizard-bookmarks {
    overflow-x: auto;
    padding-bottom: 6px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .wizard-mark {
    white-space: nowrap;
    border-radius: 12px 12px 8px 8px;
    min-width: auto;
  }
  .book-stage-hint { font-size: 16px; }
  .magic-book {
    height: 730px;
  }
  .closed-book {
    inset: 24px 34px 24px 34px;
  }
  .closed-book h2 {
    font-size: 38px;
  }
  .closed-book-company {
    font-size: 18px;
  }
  .page-stack.left { left: 10px; }
  .page-stack.right { right: 10px; }
  .base-page.left { left: 10px; }
  .base-page.right { right: 10px; }
  .sheet {
    inset: 14px 10px;
  }
  .page {
    width: calc(50% - 4px);
    padding: 18px 10px;
  }
  .designer-reader {
    grid-template-columns: 1fr;
  }
  .designer-chip-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .designer-chip {
    flex: 1 1 140px;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .page-turn-controls {
    flex-wrap: wrap;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-step {
    padding: 12px;
  }
}

body.home-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 137, 89, 0.2), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(104, 73, 52, 0.1), transparent 24%),
    linear-gradient(180deg, #f8f0e7 0%, #fffaf3 48%, #f1e7dc 100%);
  color: #1f1914;
  font-family: "Avenir Next", "PingFang TC", "Noto Sans TC", sans-serif;
}

.home-page .container {
  width: min(1220px, 94vw);
}

.home-page .main-content {
  padding: 20px 0 48px;
}

.home-page .topbar {
  background: rgba(54, 42, 33, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.home-page .brand,
.home-page .nav-links a,
.home-page .link-btn {
  color: #f7ede2;
}

.home-page .brand {
  letter-spacing: 0.08em;
  max-width: min(54vw, 420px);
}

.home-page .nav-links a,
.home-page .link-btn {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: #1f1914;
  font-family: "Songti TC", "Noto Serif TC", "Iowan Old Style", "Palatino Linotype", serif;
  letter-spacing: 0.01em;
}

.home-page .footer {
  border-top: 1px solid rgba(65, 46, 28, 0.1);
  color: #6b5543;
}

.home-page .footer-brand-link,
.home-page .footer-admin-link {
  color: #4a3628;
}

.home-page .btn {
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1f1914, #423126);
  color: #fff7f0;
  box-shadow: 0 16px 24px rgba(31, 25, 20, 0.18);
}

.home-page .btn.ghost {
  background: rgba(255, 248, 240, 0.14);
  color: #fff3e4;
  border: 1px solid rgba(255, 238, 219, 0.24);
}

.home-page .fashion-home {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.home-page.chapter-page:not(.chapter-home-page) .fashion-home {
  padding-top: clamp(8px, 1.6vw, 20px);
}

.home-page .chapter-route-nav {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(91, 71, 54, 0.14);
  border-radius: 26px;
  background: rgba(91, 71, 54, 0.14);
  box-shadow: 0 18px 36px rgba(45, 32, 23, 0.08);
}

.home-page .chapter-route-nav > div,
.home-page .chapter-route-nav > a {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 28px;
  background: rgba(255, 252, 248, 0.96);
}

.home-page .chapter-route-nav > div span,
.home-page .chapter-route-nav > a small {
  color: #a17a58;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .chapter-route-nav strong {
  color: #2d211a;
  font-size: clamp(20px, 2.1vw, 28px);
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .chapter-route-nav > a {
  justify-items: end;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease;
}

.home-page .chapter-route-nav > a:hover,
.home-page .chapter-route-nav > a:focus-visible {
  background: #f1e4d5;
}

.home-page .section-kicker {
  margin: 0;
  color: #aa825d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.home-page .glass-panel {
  background: rgba(255, 249, 241, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 45px rgba(24, 18, 13, 0.18);
  backdrop-filter: blur(18px);
}

.home-page .fashion-hero {
  --mx: 0.5;
  --my: 0.5;
  position: relative;
  min-height: 720px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.94) 42%, rgba(255, 250, 244, 0) 42%),
    #f8f0e7;
  border: 1px solid rgba(74, 57, 45, 0.14);
  box-shadow: 0 30px 74px rgba(38, 27, 19, 0.18);
}

.home-page .fashion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at calc(var(--mx) * 100%) calc(var(--my) * 100%), rgba(184, 137, 89, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 250, 244, 0.52) 0%, rgba(255, 250, 244, 0.1) 44%, rgba(31, 22, 16, 0.05) 100%);
  pointer-events: none;
  z-index: 2;
  transition: background 0.35s ease;
}

.home-page .hero-stage {
  min-height: inherit;
  padding: 0;
  position: relative;
}

.home-page .hero-media,
.home-page .hero-slide {
  position: absolute;
  inset: 0;
}

.home-page .hero-media {
  left: 42%;
}

.home-page .hero-empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 48px;
  text-align: center;
  color: #f7ede2;
  background:
    radial-gradient(circle at top, rgba(185, 144, 94, 0.3), transparent 30%),
    linear-gradient(135deg, #17120f, #2b2018);
}

.home-page .hero-empty-state h1 {
  color: #fff5eb;
  font-size: clamp(42px, 6vw, 72px);
  margin: 0;
}

.home-page .hero-empty-state p:last-child {
  margin: 0;
  color: rgba(247, 237, 226, 0.78);
}

.home-page .hero-slide {
  opacity: 0;
  transition: opacity 0.95s ease;
}

.home-page .hero-slide.is-active {
  opacity: 1;
}

.home-page .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease;
  filter: saturate(0.9) contrast(1.02) brightness(1.03);
}

.home-page .hero-slide.is-active img {
  transform: scale(1);
}

.home-page .hero-slide-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.68), rgba(255, 250, 244, 0.08) 34%, rgba(26, 18, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 8, 8, 0) 56%, rgba(10, 8, 8, 0.16) 100%);
  transition: background 0.35s ease, opacity 0.35s ease;
}

.home-page .hero-overlay-grid {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  align-items: stretch;
}

.home-page .hero-conversion-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  min-width: 0;
  padding: clamp(44px, 5vw, 68px) clamp(24px, 4.1vw, 52px);
}

.home-page .hero-conversion-copy h1 {
  margin: 0;
  max-width: min(390px, 100%);
  color: #211914;
  font-size: clamp(36px, 3.35vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  word-break: keep-all;
  overflow-wrap: normal;
}

.home-page .hero-conversion-copy h1 span {
  display: block;
}

.home-page .hero-conversion-copy .btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #4a392d;
  color: #fff8ef;
}

.home-page .hero-conversion-copy .hero-actions {
  margin-top: 0;
}

.home-page .hero-conversion-copy .btn.ghost {
  background: rgba(255, 255, 255, 0.74);
  color: #4a392d;
  border-color: rgba(74, 57, 45, 0.18);
  box-shadow: none;
}

.home-page .hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
  margin-top: 8px;
}

.home-page .hero-proof-list div {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(74, 57, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.home-page .hero-proof-list strong {
  color: #2f221a;
  font-size: 18px;
  line-height: 1;
}

.home-page .hero-proof-list span {
  color: #796757;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.home-page .hero-visual-layer {
  position: relative;
  min-height: inherit;
}

.home-page .hero-project-caption {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 4vw, 50px);
  bottom: clamp(22px, 4vw, 46px);
  width: min(360px, calc(100% - 56px));
  min-height: 170px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: 14px;
  background: rgba(47, 34, 26, 0.86);
  border-color: rgba(255, 245, 233, 0.22);
  box-shadow: 0 22px 48px rgba(10, 8, 7, 0.3);
  backdrop-filter: blur(16px) saturate(1.08);
}

.home-page .hero-project-kicker {
  margin: 0 0 8px;
  color: rgba(255, 244, 231, 0.64);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-page .hero-project-title {
  flex: 0 1 auto;
  margin: 0;
  color: #fff7ed;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  transition: font-size 0.22s ease;
}

.home-page .hero-project-title-en {
  flex: 0 1 auto;
  margin: 10px 0 0;
  color: rgba(255, 244, 231, 0.72);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  transition: font-size 0.22s ease, letter-spacing 0.22s ease;
}

.home-page .hero-project-title-en[hidden] {
  display: none;
}

.home-page .hero-project-link {
  flex: 0 0 auto;
  width: fit-content;
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 244, 231, 0.3);
  color: #fff7ed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-page .hero-project-link:hover,
.home-page .hero-project-link:focus-visible {
  gap: 18px;
  color: #efd1aa;
  border-color: rgba(239, 209, 170, 0.72);
}

.home-page .hero-stack {
  width: min(700px, 100%);
  display: grid;
  gap: 18px;
}

.home-page .hero-copy {
  padding: 36px;
  border-radius: 30px;
  max-width: none;
  transform: none;
}

.home-page .fashion-hero:hover::before {
  background:
    radial-gradient(circle at calc(var(--mx) * 100%) calc(var(--my) * 100%), rgba(184, 137, 89, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(255, 250, 244, 0.48) 0%, rgba(255, 250, 244, 0.08) 44%, rgba(31, 22, 16, 0.04) 100%);
}

.home-page .fashion-hero:hover .hero-slide.is-active img {
  filter: saturate(0.94) contrast(1.04) brightness(1.05);
}

.home-page .fashion-hero:hover .hero-slide.is-active .hero-slide-wash {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.58), rgba(255, 250, 244, 0.04) 34%, rgba(26, 18, 13, 0.06) 100%),
    linear-gradient(180deg, rgba(10, 8, 8, 0) 58%, rgba(10, 8, 8, 0.12) 100%);
}

.home-page .hero-copy h1 {
  margin: 10px 0 16px;
  max-width: 620px;
  color: #fff3e6;
  font-size: 54px;
  line-height: 1.1;
}

.home-page .hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page .hero-lead-steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-page .hero-lead-steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 238, 219, 0.14);
  color: rgba(255, 243, 230, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.home-page .hero-process-link {
  background: rgba(255, 255, 255, 0.08);
  color: #fff5ea;
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .hero-process-link:hover {
  color: #fff5ea;
  border-color: rgba(255, 255, 255, 0.28);
}

.home-page .hero-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.home-page .hero-meta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-page .hero-meta-label {
  color: rgba(255, 243, 230, 0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-page .hero-meta-copy strong {
  color: #fff4e9;
  font-size: 28px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .hero-meta-copy span:last-child {
  color: rgba(255, 243, 230, 0.72);
  font-size: 14px;
}

.home-page .hero-index {
  color: #f3ddbf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-page .hero-mood {
  border-radius: 28px;
  padding: 20px 22px;
}

.home-page .hero-mood-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.home-page .hero-mood-label {
  margin: 0;
  color: rgba(255, 243, 230, 0.72);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .hero-mood-count {
  color: #f3dcbf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.home-page .mood-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 238, 219, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff4e6;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-page .mood-card {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 238, 219, 0.1);
}

.home-page .mood-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff4e6;
  font-size: 14px;
}

.home-page .mood-card span {
  display: block;
  color: rgba(255, 243, 230, 0.76);
  line-height: 1.75;
  font-size: 13px;
}

.home-page .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}

.home-page .section-heading h1,
.home-page .section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1;
  text-wrap: balance;
}

.home-page .section-description {
  margin: 0;
  max-width: 34ch;
  color: #6d5a49;
  line-height: 1.8;
  font-size: 15px;
}

.home-page .lookbook-panel,
.home-page .workflow-section {
  padding-top: 8px;
}

.home-page .lookbook-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.home-page .lookbook-rotation-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-page .lookbook-nav {
  width: auto;
  margin-top: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(62, 45, 28, 0.12);
  background: rgba(255, 252, 248, 0.88);
  color: #3a2a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: none;
}

.home-page .lookbook-counter {
  min-width: 84px;
  text-align: center;
  color: #8a6f57;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .lookbook-rotation-shell {
  position: relative;
  padding: 6px 0 18px;
}

.home-page .lookbook-rotation {
  position: relative;
  min-height: 620px;
  perspective: 1800px;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.home-page .lookbook-rotator-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(360px, calc(100% - 36px));
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  background: #161210;
  color: #fbf3ea;
  box-shadow: 0 22px 42px rgba(24, 18, 13, 0.14);
  border: 1px solid rgba(48, 34, 24, 0.08);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.38s ease, box-shadow 0.38s ease;
  transform-style: preserve-3d;
}

.home-page .lookbook-rotator-card.is-active {
  box-shadow: 0 34px 60px rgba(24, 18, 13, 0.22);
}

.home-page .lookbook-rotator-card.is-flipping .lookbook-image-wrap img {
  animation: lookbookImageFlip 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-page .lookbook-rotator-card.is-flipping .lookbook-content {
  animation: lookbookCopyPulse 0.72s ease;
}

.home-page .lookbook-rotator-card.is-hidden {
  opacity: 0;
}

.home-page .lookbook-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.home-page .lookbook-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.home-page .lookbook-rotator-card.is-active:hover .lookbook-image-wrap img {
  transform: scale(1.05);
}

.home-page .lookbook-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 15, 13, 0.68);
  border: 1px solid rgba(255, 245, 232, 0.14);
  color: #fff4e6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .lookbook-content {
  padding: 22px;
}

.home-page .lookbook-eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 243, 230, 0.68);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .lookbook-content h3 {
  margin: 0 0 16px;
  color: #fff4e6;
  font-size: 32px;
  line-height: 1.04;
}

.home-page .lookbook-card-link {
  display: inline-flex;
}

.home-page .lookbook-rotator-card:not(.is-active) .lookbook-card-link {
  pointer-events: none;
  opacity: 0.54;
}

.home-page .inline-link {
  color: #f2d8b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-page .inline-link:hover {
  color: #fff1de;
}

.home-page .home-project-finder .inline-link,
.home-page .home-story-preview .inline-link,
.home-page .home-faq-preview .inline-link {
  color: #3f3025;
}

.home-page .home-project-finder .inline-link:hover,
.home-page .home-story-preview .inline-link:hover,
.home-page .home-faq-preview .inline-link:hover {
  color: #8a6547;
}

.home-page .editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
}

.home-page .editorial-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(74, 53, 33, 0.08);
  box-shadow: 0 18px 34px rgba(24, 18, 13, 0.08);
}

.home-page .wjt-story {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 96px;
  overflow: hidden;
  display: grid;
  gap: 34px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 2%, rgba(190, 138, 91, 0.28), transparent 34%),
    linear-gradient(140deg, #171310 0%, #292019 56%, #3d2b20 100%);
  box-shadow: 0 28px 52px rgba(24, 18, 13, 0.2);
  color: #f8eee3;
}

.home-page .wjt-story::before {
  content: "WJT";
  position: absolute;
  z-index: -1;
  top: -0.2em;
  right: -0.03em;
  color: rgba(255, 244, 230, 0.035);
  font-size: clamp(140px, 27vw, 360px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  pointer-events: none;
}

.home-page .wjt-story-lead {
  display: grid;
  gap: 20px;
}

.home-page .wjt-story-lead h2 {
  margin: 0;
  max-width: 20ch;
  color: #fff4e8;
  font-size: clamp(36px, 5.3vw, 68px);
  line-height: 1.12;
  text-wrap: balance;
}

.home-page .wjt-story-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 980px;
}

.home-page .wjt-story-intro p {
  margin: 0;
  color: rgba(255, 241, 226, 0.78);
  font-size: 16px;
  line-height: 2;
}

.home-page .wjt-story blockquote {
  margin: 4px 0 0;
  max-width: 780px;
  padding: 18px 0 18px 24px;
  border-left: 2px solid #d6ae83;
  color: #fff4e8;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.65;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .wjt-story-chapters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-page .wjt-story-chapter {
  min-height: 300px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 241, 226, 0.12);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.home-page .wjt-story-chapter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #d8b58e;
}

.home-page .wjt-story-chapter-head span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-page .wjt-story-chapter-head small {
  font-size: 11px;
  letter-spacing: 0.2em;
}

.home-page .wjt-story-chapter h3 {
  margin: 54px 0 14px;
  color: #fff4e8;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.22;
}

.home-page .wjt-story-chapter p {
  margin: 0;
  color: rgba(255, 241, 226, 0.72);
  line-height: 1.9;
}

.home-page .wjt-story-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 241, 226, 0.12);
}

.home-page .wjt-story-actions > p {
  margin: 0;
  max-width: 50ch;
  color: rgba(255, 241, 226, 0.8);
  line-height: 1.9;
}

.home-page .wjt-story-actions .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.home-page .wjt-story-actions .btn {
  background: linear-gradient(135deg, #f3dfc8, #d0ad88);
  color: #211914;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.home-page .wjt-story-actions .btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff3e4;
  border-color: rgba(255, 238, 219, 0.2);
}

.home-page .manifesto-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 190, 143, 0.28), rgba(224, 190, 143, 0));
  pointer-events: none;
}

.home-page .editorial-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 0.98;
}

.home-page .editorial-copy {
  margin: 0;
  max-width: 44ch;
  color: #544434;
  line-height: 1.85;
  white-space: pre-line;
}

.home-page .mini-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-page .metric-tile {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(119, 90, 61, 0.08);
}

.home-page .metric-tile span {
  display: block;
  color: #8a6f57;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .metric-tile strong {
  display: block;
  margin-top: 10px;
  color: #1f1914;
  font-size: 34px;
  line-height: 1;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .designer-spotlight-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
}

.home-page .designer-spotlight-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(145deg, #221a16, #4a382b);
}

.home-page .designer-spotlight-media.has-photo::after {
  content: "WJT";
  position: absolute;
  left: 50%;
  top: calc(50% + 1em);
  transform: translate(-50%, -50%);
  color: rgba(255, 244, 230, 0.84);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 18px rgba(31, 25, 20, 0.18);
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  pointer-events: none;
}

.home-page .designer-spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-page .designer-spotlight-media .designer-spotlight-badge {
  display: none !important;
}

.home-page .designer-spotlight-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #fff4e6;
  font-size: 32px;
  text-align: center;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .designer-spotlight-fallback[hidden] {
  display: none !important;
}

.home-page .designer-spotlight-media.has-photo .designer-spotlight-fallback {
  display: none !important;
}

.home-page .designer-spotlight-title {
  margin: -2px 0 12px;
  color: #8a6f57;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .designer-spotlight-copy p:last-of-type {
  color: #544434;
  line-height: 1.8;
}

.home-page .designer-pill-list {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .designer-pill {
  width: auto;
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f3ebe1;
  color: #5b4736;
  font-size: 13px;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-page .designer-pill:hover {
  transform: translateY(-1px);
}

.home-page .designer-pill.is-active {
  background: #1f1914;
  color: #fff4e7;
  border-color: rgba(31, 25, 20, 0.08);
}

.home-page .designer-spotlight-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.home-page .designer-more-link {
  color: #1f1914;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.home-page .designer-more-link:hover {
  color: #8a6f57;
}

.home-page .designer-spotlight-card .btn.ghost {
  background: #1f1914;
  color: #fff5ea;
  border-color: transparent;
}

.home-page .brand-essence-section {
  padding-top: 6px;
}

.home-page .engineering-spotlight-section {
  display: grid;
  gap: 18px;
}

.home-page .engineering-spotlight-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
}

.home-page .engineering-spotlight-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  background: linear-gradient(160deg, #201816, #4a3428);
}

.home-page .engineering-spotlight-media.has-photo::after {
  content: "WJT";
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255, 244, 230, 0.86);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 18px rgba(31, 25, 20, 0.18);
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  pointer-events: none;
}

.home-page .engineering-spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-page .engineering-spotlight-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #fff4e6;
  font-size: 32px;
  text-align: center;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .engineering-spotlight-fallback[hidden] {
  display: none !important;
}

.home-page .engineering-spotlight-copy {
  display: grid;
  gap: 14px;
}

.home-page .engineering-certificate-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(31, 25, 20, 0.95), rgba(81, 57, 39, 0.92));
  color: #fff5ea;
}

.home-page .engineering-certificate-panel strong {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .engineering-certificate-panel p {
  margin: 0;
  color: rgba(255, 244, 230, 0.88);
  line-height: 1.85;
}

.home-page .engineering-certificate-panel .cert-pill-list {
  margin-top: 2px;
}

.home-page .engineering-pill-list {
  margin: 4px 0 0;
}

.home-page .engineering-pill.is-active {
  background: linear-gradient(135deg, #1f1914, #5b4432);
}

.home-page .brand-manifesto-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: 590px;
  padding: clamp(36px, 5.5vw, 76px);
  border: 1px solid rgba(91, 71, 54, 0.16);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(183, 139, 99, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(239, 227, 214, 0.94));
  box-shadow: 0 28px 54px rgba(57, 41, 28, 0.1);
}

.home-page .brand-manifesto-shell::before {
  content: "WJT";
  position: absolute;
  right: -0.03em;
  bottom: -0.22em;
  color: rgba(80, 58, 42, 0.035);
  font-size: clamp(170px, 25vw, 360px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  pointer-events: none;
}

.home-page .brand-manifesto-lead,
.home-page .brand-promise-list {
  position: relative;
  z-index: 1;
}

.home-page .brand-manifesto-lead {
  display: grid;
  gap: 22px;
}

.home-page .brand-manifesto-lead h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.12;
  text-wrap: balance;
}

.home-page .brand-manifesto-intro {
  margin: 0;
  max-width: 48ch;
  color: #655143;
  font-size: 16px;
  line-height: 2;
}

.home-page .brand-manifesto-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  padding-top: 4px;
}

.home-page .brand-manifesto-actions .btn {
  margin: 0;
}

.home-page .brand-manifesto-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #392b22;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-underline-offset: 6px;
}

.home-page .brand-manifesto-text-link span {
  transition: transform 180ms ease;
}

.home-page .brand-manifesto-text-link:hover span,
.home-page .brand-manifesto-text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.home-page .brand-promise-list {
  display: grid;
  align-self: stretch;
  border-top: 1px solid rgba(91, 71, 54, 0.18);
}

.home-page .brand-promise-list-label {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(91, 71, 54, 0.18);
  color: #8c6d53;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-page .brand-promise-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-content: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(91, 71, 54, 0.18);
}

.home-page .brand-promise-mark {
  align-self: center;
  color: #8f463c;
  font-size: clamp(48px, 4.4vw, 62px);
  line-height: 1;
  text-align: center;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
}

.home-page .brand-promise-item:nth-of-type(2) .brand-promise-mark {
  color: #3f817b;
}

.home-page .brand-promise-item:nth-of-type(3) .brand-promise-mark {
  color: #b88959;
}

.home-page .brand-promise-item h3 {
  margin: 0 0 9px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.25;
}

.home-page .brand-promise-item p {
  margin: 0;
  color: #6d5949;
  font-size: 14px;
  line-height: 1.9;
}

.home-page .cert-strip {
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(135deg, #1a1512, #2b2019 54%, #3f2b1e 100%);
  box-shadow: 0 24px 42px rgba(24, 18, 13, 0.14);
}

.home-page .cert-strip .section-heading h2,
.home-page .cert-strip .section-description {
  color: #fff4e6;
}

.home-page .cert-strip .section-kicker {
  color: #d9b893;
}

.home-page .cert-strip .section-description {
  color: rgba(255, 243, 230, 0.74);
}

.home-page .cert-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page .cert-pill {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 230, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff3e4;
  font-size: 14px;
}

.home-page .workflow-fashion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-page .workflow-fashion-step {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(74, 53, 33, 0.08);
  box-shadow: 0 18px 34px rgba(24, 18, 13, 0.08);
  min-height: 230px;
}

.home-page .workflow-number {
  display: inline-block;
  margin-bottom: 24px;
  color: #aa825d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.home-page .workflow-fashion-step h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.04;
}

.home-page .workflow-fashion-step p {
  margin: 0;
  color: #544434;
  line-height: 1.8;
}

.home-page .contact-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 300px;
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, #1a1411, #30231b 58%, #7a5637 130%);
  box-shadow: 0 28px 48px rgba(24, 18, 13, 0.18);
}

.home-page .contact-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 205, 159, 0.24), rgba(239, 205, 159, 0));
  pointer-events: none;
}

.home-page .contact-cta-copy {
  position: relative;
  z-index: 1;
}

.home-page .contact-cta-copy h2 {
  margin: 8px 0 14px;
  color: #fff4e8;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.home-page .contact-cta-copy p:last-of-type {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 243, 230, 0.78);
  line-height: 1.8;
}

.home-page .contact-cta-side {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
}

.home-page .contact-side-label {
  margin: 0;
  color: rgba(255, 243, 230, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .contact-side-note {
  margin: 0;
  color: rgba(255, 243, 230, 0.78);
  line-height: 1.75;
}

.home-page .contact-side-actions {
  display: grid;
  gap: 10px;
}

.home-page .contact-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.9);
  color: #1f1914;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-page .contact-side-btn:hover {
  color: #8a6f57;
}

.home-page .contact-qr {
  width: 180px;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
}

.process-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(32, 109, 236, 0.16), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(3, 165, 132, 0.14), transparent 22%),
    linear-gradient(180deg, #151617 0%, #1a1a1b 42%, #141515 100%);
  color: #f2ece3;
}

.process-page .topbar {
  background: rgba(10, 10, 11, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-page .brand,
.process-page .nav-links a,
.process-page .link-btn {
  color: #f6eee3;
}

.process-page h1,
.process-page h2,
.process-page h3 {
  color: #f6eee3;
}

.process-page .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #bcaf9f;
}

.process-page .main-content {
  display: grid;
  gap: 24px;
  padding: 28px 0 74px;
}

.process-page .page-kicker,
.process-page .process-divider,
.process-page .process-hero-side-kicker,
.process-page .company-panel-kicker,
.process-page .trade-column-title,
.process-page .craft-profile-kicker,
.process-page .promise-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.process-page .page-kicker {
  color: #b99e80;
}

.process-page .page-hero {
  color: #2b2119;
}

.process-page .page-hero h1,
.process-page .page-hero h2,
.process-page .page-hero h3 {
  color: #241c16;
}

.process-page .page-hero .page-kicker {
  color: #9d734d;
}

.process-page .page-hero .page-lead {
  color: #514132;
}

.process-page .page-hero .page-tag {
  background: #f3ebe1;
  border: 1px solid rgba(91, 71, 54, 0.14);
  color: #4d3b2c;
}

.process-page .page-hero.process-hero,
.process-page .company-panel,
.process-page .process-copy-panel,
.process-page .trade-system-grid,
.process-page .promise-card,
.process-page .craft-profile-card,
.process-page .gallery-section.process-measurement-panel,
.process-page .discount-panel {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}

.process-page .page-hero.process-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 44px;
  grid-template-columns: minmax(0, 1.22fr) 320px;
  gap: 28px;
  background:
    radial-gradient(circle at 80% 100%, rgba(179, 120, 69, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(29, 30, 31, 0.98), rgba(18, 19, 20, 0.96) 62%, rgba(20, 53, 99, 0.56) 120%);
}

.process-page .page-hero.process-hero::before {
  content: "";
  position: absolute;
  inset: auto -16% -46% 46%;
  height: 420px;
  background: radial-gradient(circle, rgba(26, 116, 250, 0.18), transparent 64%);
  pointer-events: none;
}

.process-page .process-hero-copy,
.process-page .process-hero-side-card {
  position: relative;
  z-index: 1;
}

.process-page .process-hero-copy {
  display: grid;
  gap: 16px;
}

.process-page .process-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.94;
}

.process-page .process-hero-intro {
  display: grid;
  gap: 6px;
}

.process-page .process-hero-brand {
  margin: 0;
  color: #fff6ea;
  font-size: 44px;
  font-weight: 700;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  letter-spacing: 0.12em;
}

.process-page .process-hero-line {
  margin: 0;
  color: #cdbbaa;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.process-page .process-hero .page-lead {
  max-width: 56ch;
  color: #ddd1c4;
  line-height: 1.9;
}

.process-page .process-hero-side {
  padding-top: 0;
}

.process-page .process-hero-side-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-page .process-hero-side-kicker {
  margin: 0;
  color: #c6a98a;
  font-size: 12px;
  font-weight: 700;
}

.process-page .page-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4e9dc;
}

.process-page .process-hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.process-page .process-hero-metric {
  padding: 15px 12px;
  border-radius: 18px;
  text-align: center;
  background: rgba(8, 8, 9, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-page .process-hero-metric strong {
  display: block;
  color: #fff3e3;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.process-page .process-hero-metric span {
  display: block;
  margin-top: 8px;
  color: #b7a493;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-page .process-section {
  display: grid;
  gap: 18px;
}

.process-page .process-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #bfb1a4;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
}

.process-page .process-divider::before,
.process-page .process-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process-page .company-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-page .company-panel {
  padding: 28px 22px 22px;
  background: linear-gradient(180deg, rgba(35, 35, 36, 0.96), rgba(25, 25, 26, 0.96));
}

.process-page .company-panel-0 {
  box-shadow:
    inset 0 0 0 1px rgba(44, 122, 240, 0.42),
    0 26px 56px rgba(0, 0, 0, 0.28);
}

.process-page .company-panel-1 {
  box-shadow:
    inset 0 0 0 1px rgba(0, 178, 130, 0.42),
    0 26px 56px rgba(0, 0, 0, 0.28);
}

.process-page .company-panel-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.process-page .company-panel-0 .company-panel-kicker {
  color: #2c82ff;
}

.process-page .company-panel-1 .company-panel-kicker {
  color: #00aa83;
}

.process-page .company-panel h2 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 3vw, 40px);
}

.process-page .company-panel-description {
  margin: 0;
  color: #ddd0c3;
  line-height: 1.9;
}

.process-page .company-panel-list {
  margin-top: 18px;
}

.process-page .company-panel-list p {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 12px 0;
  color: #f2e9de;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-page .company-panel-list p span {
  color: #8f7d6b;
}

.process-page .process-prologue {
  padding: 4px 0 8px;
}

.process-page .process-prologue p {
  margin: 0;
  color: #f1e7da;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.95;
}

.process-page .engineering-step-list {
  display: grid;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(32, 32, 33, 0.96), rgba(22, 22, 23, 0.96));
}

.process-page .engineering-step-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  background: rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-page .engineering-step-card:first-child {
  border-top: 0;
}

.process-page .engineering-step-index {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(18, 18, 19, 0.52), rgba(26, 26, 27, 0.16));
}

.process-page .engineering-step-index strong {
  color: #247cff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.process-page .engineering-step-index span {
  color: #c0b0a1;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.process-page .engineering-step-body {
  padding: 24px 22px 22px;
}

.process-page .engineering-step-body h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
}

.process-page .engineering-step-body p {
  margin: 0 0 16px;
  color: #ddd1c4;
  line-height: 1.9;
}

.process-page .engineering-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-page .engineering-tag-list span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5ecde;
  font-size: 13px;
}

.process-page .trade-system-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  background: linear-gradient(180deg, rgba(34, 34, 35, 0.96), rgba(24, 24, 25, 0.98));
}

.process-page .trade-column {
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-page .trade-column:last-child {
  border-right: 0;
}

.process-page .trade-column-title {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
}

.process-page .trade-design .trade-column-title {
  color: #2c82ff;
}

.process-page .trade-base .trade-column-title {
  color: #00aa83;
}

.process-page .trade-finish .trade-column-title {
  color: #d37b3f;
}

.process-page .trade-mep .trade-column-title {
  color: #c9a444;
}

.process-page .trade-close .trade-column-title {
  color: #8f71ff;
}

.process-page .trade-column-list {
  display: grid;
}

.process-page .trade-column-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-page .trade-column-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.process-page .trade-column-item strong {
  display: block;
  color: #f8eee1;
  font-size: 17px;
  line-height: 1.4;
}

.process-page .trade-column-item span {
  display: block;
  margin-top: 3px;
  color: #cbbbab;
  line-height: 1.7;
}

.process-page .process-copy-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(35, 35, 36, 0.96), rgba(25, 25, 26, 0.96));
}

.process-page .process-copy-panel h2,
.process-page .plan-card h3,
.process-page .discount-panel h2 {
  margin: 0 0 14px;
}

.process-page .process-copy-panel p,
.process-page .discount-panel p:last-of-type,
.process-page .promise-card p,
.process-page .craft-profile-card > p:last-of-type {
  margin: 0;
  color: #ddd1c4;
  line-height: 1.95;
}

.process-page .craft-profile-grid,
.process-page .promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-page .craft-profile-card,
.process-page .promise-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(180deg, rgba(35, 35, 36, 0.96), rgba(24, 24, 25, 0.96));
}

.process-page .craft-profile-card::before,
.process-page .promise-card::before {
  content: "";
  position: absolute;
  inset: auto -32px -64px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(42, 114, 237, 0.14), transparent 66%);
  pointer-events: none;
}

.process-page .craft-profile-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.process-page .craft-profile-kicker,
.process-page .promise-kicker {
  margin: 0 0 10px;
  color: #b99e80;
  font-size: 12px;
  font-weight: 700;
}

.process-page .craft-profile-card h3,
.process-page .promise-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
}

.process-page .craft-profile-mark {
  display: grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7ede0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-page .gallery-section.process-measurement-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(35, 35, 36, 0.96), rgba(24, 24, 25, 0.96));
}

.process-page .gallery-section.process-measurement-panel h2 {
  color: #f6eee3;
}

.process-page .plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-page .plan-card {
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(43, 43, 44, 0.96), rgba(28, 28, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-page .plan-card-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(164, 98, 42, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(17, 66, 134, 0.62), rgba(28, 28, 29, 0.96) 62%, rgba(90, 57, 34, 0.62) 122%);
}

.process-page .plan-card-featured,
.process-page .plan-card-featured h3,
.process-page .plan-card-featured p {
  color: #fff4e6;
}

.process-page .plan-price {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5ebde;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-page .plan-card-featured .plan-price {
  background: rgba(255, 244, 230, 0.12);
  color: #fff4e6;
}

.process-page .plan-card h3 {
  font-size: clamp(26px, 2.8vw, 34px);
}

.process-page .stacked-list p {
  color: #ece1d5;
  border-color: rgba(255, 255, 255, 0.1);
}

.process-page .discount-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 117, 67, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(31, 31, 32, 0.98), rgba(19, 19, 20, 0.98) 62%, rgba(17, 70, 138, 0.46) 124%);
}

.process-page .discount-panel h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.process-page .discount-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-page .btn {
  background: linear-gradient(135deg, #f5e8d8, #dbc7b1);
  color: #1f1914;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.process-page .btn:hover {
  color: #1f1914;
}

.process-page .btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f7eee3;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1180px) {
  .process-page .page-hero.process-hero,
  .process-page .company-panel-grid,
  .process-page .craft-profile-grid,
  .process-page .promise-grid,
  .process-page .plan-grid,
  .process-page .discount-panel {
    grid-template-columns: 1fr;
  }

  .process-page .trade-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .process-page .trade-column {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(35, 35, 36, 0.96), rgba(24, 24, 25, 0.96));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 820px) {
  .process-page .page-hero.process-hero,
  .process-page .gallery-section.process-measurement-panel,
  .process-page .process-copy-panel,
  .process-page .discount-panel {
    padding: 26px 22px;
  }

  .process-page .process-hero-brand {
    font-size: 32px;
  }

  .process-page .process-hero-metric-grid,
  .process-page .trade-system-grid {
    grid-template-columns: 1fr;
  }

  .process-page .company-panel-grid,
  .process-page .craft-profile-grid,
  .process-page .promise-grid,
  .process-page .plan-grid {
    grid-template-columns: 1fr;
  }

  .process-page .engineering-step-card {
    grid-template-columns: 1fr;
  }

  .process-page .engineering-step-index {
    justify-items: start;
    gap: 8px;
    padding: 20px 22px 0;
    border-right: 0;
    background: transparent;
  }

  .process-page .engineering-step-body {
    padding-top: 18px;
  }
}

@media (max-width: 1080px) {
  .home-page .hero-overlay-grid,
  .home-page .editorial-grid,
  .home-page .contact-cta {
    grid-template-columns: 1fr;
  }

  .home-page .fashion-hero {
    min-height: 760px;
    background: #1f1712;
  }

  .home-page .fashion-hero::before {
    background:
      linear-gradient(180deg, rgba(18, 13, 10, 0.12) 0%, rgba(18, 13, 10, 0.24) 46%, rgba(18, 13, 10, 0.7) 100%),
      radial-gradient(circle at 80% 18%, rgba(148, 72, 61, 0.18), transparent 24%);
  }

  .home-page .hero-media {
    left: 0;
  }

  .home-page .hero-slide-wash {
    background:
      linear-gradient(180deg, rgba(8, 6, 5, 0.04) 20%, rgba(8, 6, 5, 0.72) 100%),
      linear-gradient(90deg, rgba(8, 6, 5, 0.16), rgba(8, 6, 5, 0.02) 58%);
  }

  .home-page .hero-overlay-grid {
    align-items: end;
  }

  .home-page .hero-conversion-copy {
    position: relative;
    z-index: 5;
    min-height: inherit;
    align-content: end;
    padding: clamp(36px, 6vw, 58px);
    padding-right: min(46vw, 430px);
  }

  .home-page .hero-conversion-copy h1 {
    color: #fff8ef;
    font-size: clamp(36px, 6.4vw, 50px);
  }

  .home-page .hero-conversion-copy .section-kicker {
    color: rgba(255, 248, 239, 0.82);
  }

  .home-page .hero-conversion-copy .btn.ghost {
    background: rgba(255, 248, 239, 0.92);
    color: #3c2d22;
  }

  .home-page .hero-proof-list div {
    background: rgba(255, 248, 239, 0.12);
    border-color: rgba(255, 248, 239, 0.22);
  }

  .home-page .hero-proof-list strong,
  .home-page .hero-proof-list span {
    color: #fff8ef;
  }

  .home-page .hero-visual-layer {
    position: absolute;
    inset: 0;
    min-height: 0;
    pointer-events: none;
  }

  .home-page .hero-project-caption {
    pointer-events: auto;
  }

  .home-page .hero-side {
    padding-top: 0;
  }

  .home-page .workflow-fashion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .brand-manifesto-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-page .brand-manifesto-lead h2 {
    max-width: 16ch;
  }

  .home-page .wjt-story-chapters {
    grid-template-columns: 1fr;
  }

  .home-page .wjt-story-chapter {
    min-height: auto;
  }

  .home-page .wjt-story-chapter h3 {
    margin-top: 30px;
  }

  .home-page .wjt-story-actions {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-page .wjt-story-actions .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .home-page .container {
    width: min(100%, 94vw);
  }

  .home-page .nav-wrap {
    align-items: flex-start;
  }

  .home-page .fashion-hero {
    min-height: 720px;
    min-height: calc(100dvh - 92px);
    border-radius: 26px;
  }

  .home-page .wjt-story {
    gap: 28px;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .home-page .wjt-story-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page .wjt-story blockquote {
    padding-left: 18px;
  }

  .home-page .wjt-story-chapter {
    padding: 22px;
  }

  .home-page .wjt-story-actions .hero-actions,
  .home-page .wjt-story-actions .btn {
    width: 100%;
  }

  .home-page .hero-stage {
    padding: 0;
  }

  .home-page .hero-conversion-copy {
    gap: 16px;
    padding: 156px 18px 172px;
    padding-bottom: max(172px, calc(env(safe-area-inset-bottom) + 172px));
    background: linear-gradient(180deg, rgba(20, 14, 10, 0) 0%, rgba(20, 14, 10, 0.82) 58%, rgba(20, 14, 10, 0.9) 100%);
  }

  .home-page .hero-conversion-copy h1 {
    max-width: 11.6ch;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.12;
  }

  .home-page .hero-conversion-copy .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 350px;
  }

  .home-page .hero-conversion-copy .btn {
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  }

  .home-page .hero-proof-list {
    max-width: 350px;
    gap: 7px;
  }

  .home-page .hero-proof-list div {
    min-height: 66px;
    padding: 10px;
  }

  .home-page .hero-proof-list strong {
    font-size: 15px;
  }

  .home-page .hero-proof-list span {
    font-size: 11px;
  }

  .home-page .hero-project-caption {
    display: none;
  }

  .home-page .hero-copy,
  .home-page .hero-thumbs,
  .home-page .hero-mood,
  .home-page .editorial-card,
  .home-page .cert-strip,
  .home-page .contact-cta {
    border-radius: 24px;
  }

  .home-page .hero-copy {
    padding: 24px 20px;
    max-width: none;
  }

  .home-page .hero-copy h1 {
    max-width: 100%;
    font-size: 38px;
  }

  .home-page .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hero-thumbs {
    overflow-x: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
  }

  .home-page .hero-thumb {
    min-width: 220px;
  }

  .home-page .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .chapter-route-nav {
    grid-template-columns: 1fr;
  }

  .home-page .chapter-route-nav > div,
  .home-page .chapter-route-nav > a {
    min-height: 92px;
    padding: 20px 22px;
  }

  .home-page .chapter-route-nav > a {
    justify-items: start;
  }

  .home-page .section-description {
    max-width: none;
  }

  .home-page .lookbook-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .lookbook-rotation-controls {
    width: 100%;
    justify-content: space-between;
  }

  .home-page .lookbook-rotation {
    min-height: 520px;
  }

  .home-page .lookbook-rotator-card {
    min-height: 430px;
    width: min(280px, calc(100% - 24px));
  }

  .home-page .lookbook-content h3,
  .home-page .workflow-fashion-step h3 {
    font-size: 26px;
  }

  .home-page .brand-manifesto-shell {
    gap: 34px;
    padding: 36px 24px;
    border-radius: 26px;
  }

  .home-page .brand-manifesto-lead {
    gap: 18px;
  }

  .home-page .brand-manifesto-lead h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .home-page .brand-manifesto-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .brand-promise-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .home-page .brand-promise-mark {
    font-size: 44px;
  }

  .home-page .brand-promise-item:last-child p {
    padding-right: 64px;
  }

.home-page .designer-spotlight-card {
  grid-template-columns: 1fr;
}

.home-page .designer-spotlight-media {
    width: min(100%, 320px);
    min-height: 540px;
    margin: 0 auto;
  }

  .home-page .engineering-spotlight-card {
    grid-template-columns: 1fr;
  }

  .home-page .engineering-spotlight-media {
    width: min(100%, 340px);
    min-height: 560px;
    margin: 0 auto;
  }

  .home-page .designer-spotlight-media.has-photo::after {
    top: calc(52% + 1em);
  }

  .home-page .designer-spotlight-footer {
    align-items: flex-start;
  }

  .home-page .mood-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-lead-steps {
    grid-template-columns: 1fr;
  }

  .home-page .mini-metrics,
  .home-page .workflow-fashion-grid {
    grid-template-columns: 1fr;
  }

  .home-page .contact-qr {
    width: 160px;
  }

  .designer-detail-page .detail-cover-wide {
    aspect-ratio: 4 / 5;
  }

  .designer-detail-page .detail-cover-wide img {
    object-position: center top;
  }

  .process-page .plan-grid,
  .process-page .discount-panel,
  .process-page .process-step-card {
    grid-template-columns: 1fr;
  }

  .process-page .process-step-no {
    width: 72px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .fashion-hero::before,
  .home-page .hero-slide,
  .home-page .hero-slide img,
  .home-page .hero-thumb,
  .home-page .lookbook-rotator-card,
  .home-page .lookbook-image-wrap img,
  .home-page .lookbook-content {
    transition: none;
    animation: none;
  }

  .home-page .hero-copy {
    transform: none;
  }
}

@keyframes lookbookImageFlip {
  0% {
    transform: scale(1) rotateY(0deg);
    filter: saturate(1);
  }
  42% {
    transform: scale(1.06) rotateY(16deg);
    filter: saturate(1.18) brightness(1.05);
  }
  100% {
    transform: scale(1) rotateY(0deg);
    filter: saturate(1);
  }
}

@keyframes lookbookCopyPulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  38% {
    transform: translateY(-8px);
    opacity: 0.82;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes designerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: 0.72; }
}

.craftsmen-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(38, 130, 238, 0.08), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(183, 111, 50, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f1e9 0%, #f2e7db 48%, #efe4d9 100%);
  color: #2f241d;
}

.craftsmen-page .topbar {
  background: rgba(32, 24, 19, 0.76);
}

.craftsmen-page .main-content {
  display: grid;
  gap: 24px;
  padding: 28px 0 74px;
}

.craftsmen-page .page-hero.craftsmen-hero,
.craftsmen-page .craftsmen-section,
.craftsmen-page .craftsmen-closing-card {
  border-radius: 32px;
  border: 1px solid rgba(70, 50, 33, 0.08);
  box-shadow: 0 24px 48px rgba(31, 22, 17, 0.08);
}

.craftsmen-page .page-hero.craftsmen-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 44px;
  grid-template-columns: minmax(0, 1.16fr) 340px;
  gap: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 104, 211, 0.24), transparent 32%),
    radial-gradient(circle at 82% 100%, rgba(192, 124, 61, 0.24), transparent 28%),
    linear-gradient(140deg, rgba(29, 24, 21, 0.98), rgba(37, 30, 26, 0.96) 56%, rgba(62, 55, 46, 0.94) 100%);
  color: #f8efe3;
}

.craftsmen-page .page-hero.craftsmen-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -38% 48%;
  height: 360px;
  background: radial-gradient(circle, rgba(243, 229, 209, 0.14), transparent 62%);
  pointer-events: none;
}

.craftsmen-page .craftsmen-hero-copy,
.craftsmen-page .craftsmen-hero-side {
  position: relative;
  z-index: 1;
}

.craftsmen-page .craftsmen-hero-copy {
  display: grid;
  gap: 14px;
}

.craftsmen-page .page-hero.craftsmen-hero .page-kicker,
.craftsmen-page .craft-story-growth-kicker,
.craftsmen-page .craftsmen-side-kicker {
  color: #d9b28f;
}

.craftsmen-page .page-hero.craftsmen-hero h1 {
  margin: 0;
  max-width: 10ch;
  color: #fff5e9;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.93;
}

.craftsmen-page .craftsmen-hero-subtitle {
  margin: 0;
  color: #f0dfcb;
  font-size: clamp(22px, 2.5vw, 30px);
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  line-height: 1.2;
}

.craftsmen-page .page-hero.craftsmen-hero .page-lead {
  max-width: 54ch;
  color: #d9cabc;
  line-height: 1.95;
}

.craftsmen-page .craftsmen-hero-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.craftsmen-page .craftsmen-side-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.craftsmen-page .craftsmen-side-card p {
  margin: 0;
  color: #efe3d7;
  line-height: 1.85;
}

.craftsmen-page .craftsmen-side-kicker,
.craftsmen-page .craft-story-growth-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.craftsmen-page .craftsmen-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.craftsmen-page .craftsmen-metric-card {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(12, 10, 9, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.craftsmen-page .craftsmen-metric-card strong {
  display: block;
  color: #fff3e4;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
}

.craftsmen-page .craftsmen-metric-card span {
  display: block;
  margin-top: 10px;
  color: #d3c0ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.craftsmen-page .craftsmen-section {
  display: grid;
  gap: 22px;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 164, 127, 0.12), transparent 26%),
    rgba(255, 252, 248, 0.86);
}

.craftsmen-page .craftsmen-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #8f7055;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.craftsmen-page .craftsmen-divider::before,
.craftsmen-page .craftsmen-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(91, 65, 43, 0.14);
}

.craftsmen-page .craftsmen-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 20px;
  align-items: end;
}

.craftsmen-page .craftsmen-section-head h2,
.craftsmen-page .craftsmen-closing-card h2,
.craftsmen-page .craft-story-heading h2 {
  margin: 10px 0 0;
}

.craftsmen-page .craftsmen-section-head p:last-child,
.craftsmen-page .craftsmen-closing-card p {
  margin: 0;
  color: #5a4737;
  line-height: 1.95;
}

.craftsmen-page .craftsmen-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.craftsmen-page .craft-story-card {
  --craft-accent: #7f634d;
  --craft-accent-rgb: 127, 99, 77;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(248, 240, 231, 0.98));
  border: 1px solid rgba(95, 71, 48, 0.12);
  box-shadow: 0 22px 44px rgba(30, 21, 16, 0.08);
}

.craftsmen-page .craft-story-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(var(--craft-accent-rgb), 0.78), transparent 88%);
}

.craftsmen-page .craft-story-card::after {
  content: "";
  position: absolute;
  inset: auto -36px -72px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(var(--craft-accent-rgb), 0.18), transparent 68%);
  pointer-events: none;
}

.craftsmen-page .craft-story-card-wood {
  --craft-accent: #8b612c;
  --craft-accent-rgb: 139, 97, 44;
}

.craftsmen-page .craft-story-card-utility {
  --craft-accent: #2f6f93;
  --craft-accent-rgb: 47, 111, 147;
}

.craftsmen-page .craft-story-card-paint {
  --craft-accent: #99654d;
  --craft-accent-rgb: 153, 101, 77;
}

.craftsmen-page .craft-story-card-masonry {
  --craft-accent: #7d6b58;
  --craft-accent-rgb: 125, 107, 88;
}

.craftsmen-page .craft-story-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  padding: 28px;
}

.craftsmen-page .craft-story-top {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.craftsmen-page .craft-story-mark-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: start;
}

.craftsmen-page .craft-story-mark {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: linear-gradient(180deg, #201b18, #312821);
  color: #fff5e8;
  font-size: 64px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.craftsmen-page .craft-story-latin {
  display: grid;
  gap: 2px;
  color: var(--craft-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.craftsmen-page .craft-story-role {
  margin: 0;
  color: var(--craft-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.craftsmen-page .craft-story-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}

.craftsmen-page .craft-story-quote {
  margin: 16px 0 0;
  color: #2f241d;
  font-size: 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  line-height: 1.9;
}

.craftsmen-page .craft-story-body {
  margin: 0;
  color: #5b4738;
  line-height: 1.95;
}

.craftsmen-page .craft-story-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.craftsmen-page .craft-story-tag-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 71, 48, 0.12);
  color: #4a3728;
  font-size: 13px;
}

.craftsmen-page .craft-story-growth {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(95, 71, 48, 0.12);
}

.craftsmen-page .craft-story-growth p {
  margin: 0;
  color: #5a4737;
  line-height: 1.9;
}

.craftsmen-page .craftsmen-closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 100%, rgba(36, 111, 217, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(248, 240, 231, 0.98));
}

.craftsmen-page .craftsmen-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .craftsmen-page .page-hero.craftsmen-hero,
  .craftsmen-page .craftsmen-section-head,
  .craftsmen-page .craftsmen-story-grid,
  .craftsmen-page .craftsmen-closing-card {
    grid-template-columns: 1fr;
  }

  .craftsmen-page .craftsmen-closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .craftsmen-page .page-hero.craftsmen-hero,
  .craftsmen-page .craftsmen-section,
  .craftsmen-page .craftsmen-closing-card {
    padding: 24px;
  }

  .craftsmen-page .craftsmen-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .craftsmen-page .craft-story-top {
    grid-template-columns: 1fr;
  }

  .craftsmen-page .craft-story-mark-panel {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
  }

  .craftsmen-page .craft-story-mark {
    width: 92px;
    height: 92px;
    font-size: 54px;
  }
}

@media (max-width: 560px) {
  .craftsmen-page .craftsmen-metric-grid {
    grid-template-columns: 1fr;
  }

  .craftsmen-page .craft-story-shell {
    padding: 22px;
  }

  .craftsmen-page .craft-story-quote {
    font-size: 17px;
  }

  .craftsmen-page .craft-story-mark-panel {
    grid-template-columns: 1fr;
  }

  .craftsmen-page .craftsmen-closing-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.site-assistant {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 12px;
  color: #201915;
  font-family: "Noto Sans TC", "PingFang TC", sans-serif;
  letter-spacing: 0;
}

.site-assistant * {
  box-sizing: border-box;
}

.site-assistant-nudge {
  position: relative;
  width: min(310px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  overflow: hidden;
  border: 1px solid rgba(72, 54, 41, 0.14);
  border-radius: 18px 18px 4px 18px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 18px 44px rgba(35, 26, 20, 0.2);
}

.site-assistant-nudge[hidden] {
  display: none;
}

.site-assistant-nudge-main,
.site-assistant-nudge-close {
  width: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  font-family: inherit;
}

.site-assistant-nudge-main {
  display: grid;
  gap: 3px;
  padding: 15px 10px 15px 17px;
  background: transparent;
  color: #392b22;
  text-align: left;
}

.site-assistant-nudge-main span {
  color: #8a6a4f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-assistant-nudge-main strong {
  color: #2f241d;
  font-size: 16px;
}

.site-assistant-nudge-main small {
  color: #756052;
  font-size: 12px;
}

.site-assistant-nudge-close {
  align-self: start;
  min-height: 42px;
  padding: 0;
  background: transparent;
  color: #927e6d;
  font-size: 20px;
}

.site-assistant-panel {
  width: min(430px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 108px));
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(67, 50, 37, 0.14);
  box-shadow: 0 24px 70px rgba(35, 26, 20, 0.22);
}

.site-assistant-panel[hidden] {
  display: none;
}

.site-assistant-head {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  background: linear-gradient(135deg, #6f5d4a, #4b382b);
  color: #fffaf4;
}

.site-assistant-title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.site-assistant-title strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-assistant-mark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
}

.site-assistant-close,
.site-assistant-toggle,
.site-assistant-form button,
.site-assistant-quick button {
  width: auto;
  margin: 0;
  font-family: inherit;
}

.site-assistant-close {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf4;
  font-size: 24px;
  line-height: 1;
}

.site-assistant-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(251, 249, 246, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(47, 128, 216, 0.09), transparent 32%);
}

.site-assistant-message {
  width: fit-content;
  max-width: 88%;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.site-assistant-message-bot {
  justify-self: start;
  background: #fff;
  border: 1px solid rgba(67, 50, 37, 0.12);
  color: #2f2822;
}

.site-assistant-message-user {
  justify-self: end;
  background: #163a5c;
  color: #fff;
}

.site-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.site-assistant-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(31, 69, 105, 0.16);
  background: #f4f8fc;
  color: #163a5c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.site-assistant-lead-card {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 117, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #eef7f5, #fffaf4);
}

.site-assistant-lead-card[hidden] {
  display: none;
}

.site-assistant-lead-heading {
  display: grid;
  gap: 5px;
}

.site-assistant-lead-heading > span {
  color: #2d7477;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-assistant-lead-heading strong {
  color: #30251e;
  font-size: 16px;
  line-height: 1.45;
}

.site-assistant-lead-heading p {
  margin: 0;
  color: #786557;
  font-size: 12px;
  line-height: 1.65;
}

.site-assistant-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-assistant-lead-card label {
  display: grid;
  gap: 5px;
  margin: 0;
}

.site-assistant-lead-card label > span {
  color: #5b483b;
  font-size: 11px;
  font-weight: 800;
}

.site-assistant-lead-card input,
.site-assistant-lead-card select,
.site-assistant-lead-card textarea {
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(67, 50, 37, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  color: #2d241e;
  font: inherit;
  font-size: 13px;
}

.site-assistant-lead-card input,
.site-assistant-lead-card select {
  height: 42px;
  padding: 0 10px;
}

.site-assistant-lead-card textarea {
  min-height: 82px;
  padding: 10px;
  resize: vertical;
}

.site-assistant-lead-question {
  grid-column: 1 / -1;
}

.site-assistant-lead-card .site-assistant-lead-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.site-assistant-lead-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #2d7477;
}

.site-assistant-lead-consent span {
  line-height: 1.55;
}

.site-assistant-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-assistant-lead-status {
  min-height: 18px;
  margin: 0;
  color: #9a3d35;
  font-size: 12px;
  line-height: 1.5;
}

.site-assistant-lead-status.is-success {
  color: #216c54;
}

.site-assistant-lead-submit {
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f5f64, #2d7b77);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
}

.site-assistant-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid rgba(67, 50, 37, 0.09);
  background: #fff;
}

.site-assistant-quick button {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(67, 50, 37, 0.18);
  background: #fbfaf8;
  color: #4b382b;
  font-size: 13px;
  font-weight: 700;
}

.site-assistant-quick .site-assistant-quick-primary {
  border-color: rgba(38, 112, 114, 0.22);
  background: #e8f4f1;
  color: #1f6365;
}

.site-assistant-quick .site-assistant-quick-more-toggle {
  grid-column: 1 / -1;
  min-height: 30px;
  padding: 5px 10px;
  background: transparent;
  border-color: transparent;
  color: #786557;
  font-size: 12px;
}

.site-assistant-quick-extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.site-assistant-quick-extra[hidden] {
  display: none;
}

.site-assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(67, 50, 37, 0.09);
  background: #fff;
}

.site-assistant-form input {
  min-width: 0;
  width: 100%;
  height: 46px;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(67, 50, 37, 0.16);
  background: #fbfaf8;
  color: #201915;
  font-size: 14px;
}

.site-assistant-form button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 8px;
  background: #7a6a58;
  color: #fff;
  font-size: 18px;
}

.site-assistant-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: end;
  justify-items: end;
  gap: 10px;
  width: 228px;
  height: 86px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-assistant-toggle-bubble {
  position: relative;
  align-self: center;
  max-width: 132px;
  padding: 10px 12px;
  border: 1px solid rgba(67, 50, 37, 0.14);
  border-radius: 16px 16px 4px 16px;
  background: rgba(255, 252, 247, 0.98);
  color: #3f3027;
  box-shadow: 0 12px 30px rgba(35, 26, 20, 0.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.site-assistant-toggle-bubble::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 14px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(67, 50, 37, 0.14);
  border-bottom: 1px solid rgba(67, 50, 37, 0.14);
  background: rgba(255, 252, 247, 0.98);
  transform: rotate(-45deg);
}

.site-assistant-toggle img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  transform-origin: 50% 72%;
  filter: drop-shadow(0 8px 10px rgba(45, 29, 19, 0.22));
}

.site-assistant-toggle:hover img,
.site-assistant-toggle:focus-visible img {
  transform: translateY(-1px) rotate(-3deg) scale(1.04);
}

.site-assistant.is-open .site-assistant-toggle img {
  transform: scale(0.94);
}

.site-assistant.is-open .site-assistant-toggle-bubble {
  opacity: 0;
  transform: translateY(4px) scale(0.96);
  pointer-events: none;
}

.site-assistant button:hover,
.site-assistant-actions a:hover {
  transform: translateY(-1px);
}

.site-assistant button:focus-visible,
.site-assistant a:focus-visible,
.site-assistant input:focus-visible,
.site-assistant select:focus-visible,
.site-assistant textarea:focus-visible {
  outline: 3px solid rgba(47, 128, 216, 0.32);
  outline-offset: 2px;
}

.site-assistant button:disabled,
.site-assistant input:disabled,
.site-assistant select:disabled,
.site-assistant textarea:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (prefers-reduced-motion: no-preference) {
  .site-assistant button,
  .site-assistant-actions a {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  }

  .site-assistant-toggle img {
    transition: transform 180ms ease;
  }

  .site-assistant-toggle-bubble {
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-assistant-nudge:not([hidden]) {
    animation: site-assistant-nudge-in 360ms ease-out both;
  }
}

@keyframes site-assistant-nudge-in {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 760px) {
  .site-assistant {
    left: max(6px, env(safe-area-inset-left));
    right: max(6px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .site-assistant-panel {
    width: 100%;
    height: min(680px, calc(100vh - 128px));
    height: min(680px, calc(100dvh - 128px));
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
  }

  .site-assistant-head {
    min-height: 54px;
    padding: 0 14px;
  }

  .site-assistant-body {
    gap: 10px;
    padding: 12px;
  }

  .site-assistant-message {
    max-width: 96%;
    padding: 12px;
  }

  .site-assistant-nudge {
    width: min(292px, calc(100vw - 24px));
  }

  .site-assistant-lead-grid {
    grid-template-columns: 1fr;
  }

  .site-assistant-quick,
  .site-assistant-form {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-assistant-toggle {
    grid-template-columns: minmax(0, 1fr) 66px;
    width: min(214px, calc(100vw - 24px));
    height: 66px;
  }

  .site-assistant-toggle-bubble {
    max-width: 124px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .site-assistant-toggle img {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 420px) {
  .site-assistant-panel {
    grid-template-rows: auto minmax(280px, 1fr) auto auto;
  }

  .site-assistant-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 2026 conversion architecture: navigation, case finder, measurement and trust content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #211a15;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.skip-link:focus { transform: translateY(0); }

.public-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.public-page .brand-mark {
  display: block;
  width: 46px;
  height: 44px;
  flex: 0 0 auto;
}

.public-page .brand-copy {
  display: grid;
  gap: 2px;
}

.public-page .brand-name {
  display: block;
}

.public-page .brand small {
  color: rgba(255, 250, 244, 0.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.public-page .nav-links { gap: 4px; }

.public-page .nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.public-page .nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: #fff;
}

.public-page .conversion-page-hero {
  align-items: end;
  min-height: 420px;
  background:
    radial-gradient(circle at 88% 12%, rgba(213, 186, 157, 0.22), transparent 28%),
    linear-gradient(145deg, #2a211b 0%, #554438 58%, #786555 100%);
  border: 0;
  color: #fff8f1;
  box-shadow: 0 28px 70px rgba(44, 32, 23, 0.18);
}

.public-page .conversion-page-hero h1,
.public-page .conversion-page-hero .page-lead,
.public-page .conversion-page-hero .page-kicker { color: #fff8f1; }
.public-page .conversion-page-hero .page-lead { max-width: 760px; color: rgba(255, 248, 241, 0.78); }
.public-page .conversion-page-hero .page-tag { color: #fff8f1; border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.08); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
  color: #756453;
  font-size: 13px;
}

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

.conversion-dock {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(71, 54, 41, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.94);
  box-shadow: 0 18px 48px rgba(37, 27, 20, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.conversion-dock a {
  min-width: 84px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #4b3b2f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.conversion-dock a span { font-size: 10px; letter-spacing: 0.04em; }
.conversion-dock .conversion-dock-primary { background: #49392e; color: #fffaf4; }
.public-page .footer { padding-bottom: 104px; }

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(243, 235, 225, 0.7);
  color: #5c4a3b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #49392e;
}

.privacy-consent-compact { grid-column: 1 / -1; margin-bottom: 0; }

/* Home conversion sections */
.home-page .home-project-finder,
.home-page .home-measurement-preview,
.home-page .home-resource-hub,
.home-page .testimonial-placeholder-section,
.home-page .home-faq-preview {
  width: min(1240px, 100%);
  margin: 34px auto 0;
}

.home-project-finder {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 50px);
  border: 1px solid rgba(91, 70, 53, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(246, 238, 228, 0.94)),
    #f7f1e9;
  box-shadow: 0 20px 48px rgba(47, 34, 24, 0.08);
}

.home-finder-copy h2,
.home-measurement-preview h2,
.home-resource-hub h2,
.testimonial-placeholder-section h2,
.home-faq-preview h2 { margin: 6px 0 12px; color: #2c211a; font-family: "Noto Serif TC", serif; }
.home-finder-copy p { color: #665547; line-height: 1.8; }

.home-finder-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-finder-groups > div {
  display: grid;
  gap: 9px;
  padding: 20px;
  border: 1px solid rgba(91, 70, 53, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.74);
}

.home-finder-groups strong { margin-bottom: 4px; color: #7e6855; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.home-finder-groups a { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-bottom: 1px solid rgba(91, 70, 53, 0.1); color: #2f251e; text-decoration: none; font-weight: 700; }
.home-finder-groups a::after { content: "→"; color: #9d8169; }

.home-measurement-preview {
  scroll-margin-top: 96px;
  padding: clamp(26px, 4vw, 54px);
  border-radius: 34px;
  background: #241d18;
  color: #f7eee5;
}

.home-measurement-preview .section-heading h2,
.home-measurement-preview .section-description,
.home-measurement-preview .section-kicker { color: inherit; }
.home-measurement-preview .section-description { color: rgba(247, 238, 229, 0.7); }

.home-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.home-plan-grid article {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}
.home-plan-grid article.is-featured { background: #f2e6d8; color: #2a211a; }
.home-plan-grid span { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.home-plan-grid strong { margin: 16px 0 9px; font-family: "Noto Serif TC", serif; font-size: clamp(22px, 2.6vw, 34px); }
.home-plan-grid p { margin: 0 0 18px; color: inherit; line-height: 1.7; opacity: 0.76; }
.home-plan-grid a {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 11px 16px;
  border-radius: 999px;
  background: #f2e6d8;
  color: #2a211a;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.home-plan-grid a:hover {
  transform: translateY(-2px);
  background: #fff3e5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.home-plan-grid article.is-featured a {
  background: #2a211a;
  color: #fff5e9;
}
.home-plan-rule { margin: 20px 0 0; color: rgba(247, 238, 229, 0.68); font-size: 13px; line-height: 1.75; }
.home-plan-rule a { color: #f4d8bb; }

.home-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-resource-grid article { min-height: 190px; padding: 24px; border: 1px solid rgba(83, 63, 48, 0.13); border-radius: 24px; background: #fffdf9; }
.home-resource-grid .home-resource-lead,
.home-resource-grid .home-resource-journal { grid-column: span 3; min-height: 220px; background: linear-gradient(135deg, #eee4d8, #faf6ef); }
.home-resource-grid span { color: #8c725b; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.home-resource-grid h3 { margin: 10px 0; color: #2b211a; font-family: "Noto Serif TC", serif; font-size: 25px; }
.home-resource-grid p { color: #655447; line-height: 1.75; }

.testimonial-placeholder-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.testimonial-placeholder-grid article { min-height: 190px; padding: 24px; border-radius: 24px; background: #f3eee7; }
.testimonial-placeholder-grid span { color: #8e755f; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.testimonial-placeholder-grid h3 { margin: 28px 0 10px; color: #30251d; }
.testimonial-placeholder-grid p { color: #786657; }

/* Work finder */
.work-finder {
  position: sticky;
  top: 74px;
  z-index: 8;
  margin: 24px 0 38px;
  padding: 22px;
  border: 1px solid rgba(88, 67, 51, 0.13);
  border-radius: 26px;
  background: rgba(255, 252, 248, 0.95);
  box-shadow: 0 20px 50px rgba(54, 40, 29, 0.1);
  backdrop-filter: blur(18px);
}

.work-finder-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 18px; }
.work-finder-heading h2 { margin: 4px 0 0; color: #2b211a; font-family: "Noto Serif TC", serif; }
.work-finder-heading > p { max-width: 390px; margin: 0; color: #786656; font-size: 13px; }

.work-filter-form {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(124px, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.work-filter-form label { margin: 0; color: #6a5747; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.work-filter-form input,
.work-filter-form select { min-height: 46px; margin-top: 6px; border-color: rgba(84, 62, 45, 0.16); border-radius: 12px; background: #fff; color: #2b211a; }
.filter-reset { min-height: 46px; margin: 0; border: 1px solid rgba(84, 62, 45, 0.16); border-radius: 12px; background: #eee5dc; color: #4d3d31; font-weight: 800; }
.work-filter-status { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; color: #756253; font-size: 12px; }
.work-filter-status strong { color: #30251e; }

.project-catalog { display: grid; gap: 28px; }
.project-card { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr); min-height: 440px; overflow: hidden; border: 1px solid rgba(84, 62, 45, 0.12); border-radius: 28px; background: #fffdf9; box-shadow: 0 20px 54px rgba(53, 39, 28, 0.08); }
.project-card[hidden] { display: none; }
.project-card-media { position: relative; min-height: 440px; overflow: hidden; background: #e6ded5; }
.project-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-card-media img { transform: scale(1.025); }
.project-card-index,
.project-data-note { position: absolute; top: 18px; padding: 8px 10px; border-radius: 999px; background: rgba(39, 29, 22, 0.74); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; backdrop-filter: blur(12px); }
.project-card-index { left: 18px; }
.project-data-note { right: 18px; }
.project-card-body { display: grid; align-content: center; padding: clamp(24px, 4vw, 48px); }
.project-card-title-row { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.project-card-title-row h2 { margin: 5px 0 16px; font-family: "Noto Serif TC", serif; font-size: clamp(28px, 3vw, 42px); }
.project-card-title-row h2 a { color: #2b211a; text-decoration: none; }
.project-card-title-row > span { padding: 8px 10px; border-radius: 999px; background: #eee6dc; color: #6f5947; font-size: 11px; font-weight: 800; white-space: nowrap; }
.project-card-body > p { color: #68574a; line-height: 1.85; }
.project-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 20px 0; }
.project-facts div { padding: 12px; border-radius: 14px; background: #f4eee7; }
.project-facts dt { color: #927962; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.project-facts dd { margin: 5px 0 0; color: #34281f; font-size: 13px; font-weight: 800; }
.project-card-actions { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.project-consult-link { color: #775f4d; font-size: 13px; font-weight: 800; }
.work-empty-result { padding: 58px; border-radius: 28px; background: #f2ebe2; text-align: center; }

/* Case detail */
.case-hero { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); min-height: 600px; overflow: hidden; border-radius: 34px; background: #2a211b; color: #fff7ef; }
.case-hero-copy { display: grid; align-content: center; padding: clamp(30px, 5vw, 70px); }
.case-hero-copy .page-kicker,
.case-hero-copy h1 { color: inherit; }
.case-hero-copy h1 { margin: 10px 0 20px; font-family: "Noto Serif TC", serif; font-size: clamp(40px, 5vw, 72px); line-height: 1.08; }
.case-hero-copy > p:not(.page-kicker) { color: rgba(255, 247, 239, 0.76); line-height: 1.9; }
.case-hero-media { min-height: 600px; overflow: hidden; }
.case-hero-media a,
.case-hero-media img { width: 100%; height: 100%; display: block; }
.case-hero-media img { object-fit: cover; }

.case-fact-bar { margin: 18px 0 32px; padding: 20px 24px; border: 1px solid rgba(82, 61, 45, 0.12); border-radius: 22px; background: #fffdf9; }
.case-fact-bar dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }
.case-fact-bar dl div { padding: 5px 16px; border-left: 1px solid rgba(82, 61, 45, 0.12); }
.case-fact-bar dl div:first-child { border-left: 0; }
.case-fact-bar dt { color: #927861; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.case-fact-bar dd { margin: 7px 0 0; color: #2f241d; font-size: 14px; font-weight: 800; }
.case-data-disclaimer { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid rgba(82, 61, 45, 0.1); color: #816d5c; font-size: 12px; }

.case-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.case-story-card { min-height: 250px; padding: clamp(24px, 3vw, 38px); border-radius: 26px; background: #f2ebe3; }
.case-story-card-lead { background: #42352b; color: #fff7ef; }
.case-story-card h2 { margin: 8px 0 18px; color: inherit; font-family: "Noto Serif TC", serif; }
.case-story-card p:last-child { margin: 0; color: inherit; line-height: 1.9; opacity: 0.82; }
.case-narrative { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 30px; margin-top: 14px; padding: clamp(26px, 4vw, 52px); border-radius: 26px; background: #e8ded2; }
.case-narrative h2 { margin: 6px 0; color: #2d221b; font-family: "Noto Serif TC", serif; }
.case-narrative > p { margin: 0; color: #5f4e41; line-height: 2; }

.case-progress-section,
.case-gallery-section,
.case-conversion-panel,
.related-projects { margin-top: 54px; }
.case-progress-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.case-progress-card { min-height: 180px; padding: 22px; border: 1px dashed rgba(83, 62, 47, 0.24); border-radius: 20px; background: #faf6f0; }
.case-progress-card.has-assets { border-style: solid; background: #ece2d7; }
.case-progress-card > span { color: #9a8068; font-size: 11px; font-weight: 900; letter-spacing: 0.16em; }
.case-progress-card h3 { margin: 30px 0 8px; color: #32271f; }
.case-progress-card p { margin: 0; color: #786555; font-size: 13px; line-height: 1.65; }
.case-gallery-section .section-heading > span { color: #8a715c; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; }
.case-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.case-gallery-grid a { min-height: 430px; overflow: hidden; border-radius: 24px; }
.case-gallery-grid img { width: 100%; height: 100%; display: block; object-fit: cover; }
.case-conversion-panel { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 30px; align-items: center; padding: clamp(28px, 5vw, 64px); border-radius: 30px; background: #2b221c; color: #fff7ef; }
.case-conversion-panel h2 { margin: 8px 0 16px; color: inherit; font-family: "Noto Serif TC", serif; font-size: clamp(30px, 4vw, 48px); }
.case-conversion-panel p { color: rgba(255, 247, 239, 0.72); line-height: 1.8; }
.case-conversion-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.case-conversion-actions .btn { text-align: center; }
.case-conversion-actions .inline-link { color: #f0d7bd; text-align: center; }
.related-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.related-project-grid article > a { height: 260px; display: block; overflow: hidden; border-radius: 20px; }
.related-project-grid img { width: 100%; height: 100%; object-fit: cover; }
.related-project-grid h3 { margin: 6px 0; }
.related-project-grid h3 a { color: #30251e; text-decoration: none; }

/* Measurement process */
.measurement-plans,
.full-process,
.before-measure-checklist,
.faq-preview { margin-top: 46px; }
.measurement-plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.measurement-plan-card { position: relative; display: grid; align-content: start; min-height: 480px; padding: clamp(26px, 4vw, 46px); border: 1px solid rgba(81, 61, 46, 0.14); border-radius: 30px; background: #f7f1e9; }
.measurement-plan-card.is-featured { background: #2b221c; color: #fff7ef; }
.measurement-plan-badge { position: absolute; top: 20px; right: 20px; padding: 8px 10px; border-radius: 999px; background: #e7c7a6; color: #3a2b20; font-size: 10px; font-weight: 900; }
.measurement-plan-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.measurement-plan-head span { font-size: 11px; font-weight: 900; letter-spacing: 0.16em; }
.measurement-plan-head strong { font-family: "Noto Serif TC", serif; font-size: clamp(32px, 4vw, 52px); }
.measurement-plan-card h3 { margin: 46px 0 12px; color: inherit; font-family: "Noto Serif TC", serif; font-size: 28px; }
.measurement-plan-card p { color: inherit; line-height: 1.8; opacity: 0.74; }
.measurement-plan-card ul { display: grid; gap: 12px; margin: 22px 0 32px; padding: 0; list-style: none; }
.measurement-plan-card li { position: relative; padding-left: 26px; }
.measurement-plan-card li::before { content: "✓"; position: absolute; left: 0; color: #a88362; font-weight: 900; }
.measurement-plan-card .btn { align-self: end; margin-top: auto; text-align: center; }
.discount-rule { margin-top: 16px; padding: 22px 26px; border-radius: 20px; background: #e9dfd3; }
.discount-rule strong { color: #34271f; }
.discount-rule p { margin: 8px 0; color: #5d4b3e; line-height: 1.75; }
.discount-rule span { color: #8c6b50; font-size: 12px; font-weight: 700; }
.process-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-timeline li { min-height: 230px; padding: 22px; border-radius: 22px; background: #f2ebe3; }
.process-timeline li > span { color: #9a7f67; font-size: 11px; font-weight: 900; letter-spacing: 0.16em; }
.process-timeline h3 { margin: 38px 0 10px; color: #33271f; }
.process-timeline p { margin: 0; color: #756253; font-size: 13px; line-height: 1.75; }
.before-measure-checklist { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px; padding: clamp(26px, 4vw, 50px); border-radius: 28px; background: #332920; color: #fff7ef; }
.before-measure-checklist h2 { color: inherit; font-family: "Noto Serif TC", serif; }
.before-measure-checklist ul { display: grid; gap: 12px; margin: 0; padding-left: 20px; color: rgba(255, 247, 239, 0.78); }

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid rgba(81, 61, 46, 0.13); border-radius: 18px; background: #fffdf9; }
.faq-list summary { min-height: 64px; display: flex; align-items: center; gap: 16px; padding: 16px 20px; color: #30251d; font-weight: 800; cursor: pointer; }
.faq-list summary::marker { color: #9a7f67; }
.faq-list details p { margin: 0; padding: 0 20px 22px; color: #6f5c4d; line-height: 1.85; }
.faq-sources { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin: -8px 20px 22px; padding-top: 14px; border-top: 1px solid rgba(81, 61, 46, 0.1); }
.faq-sources strong { color: #4e3b2e; font-size: 12px; letter-spacing: 0.1em; }
.faq-sources a { color: #7f5f44; font-size: 12px; line-height: 1.6; text-underline-offset: 3px; }
.faq-sources a:hover { color: #3d2d22; }
.faq-list-large summary { min-height: 76px; font-size: 17px; }
.faq-list-large summary span { color: #9a7f67; font-size: 11px; letter-spacing: 0.12em; }
.faq-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: 22px; margin-top: 34px; align-items: start; }
.faq-contact-card { position: sticky; top: 92px; padding: 30px; border-radius: 26px; background: #30261f; color: #fff8f1; }
.faq-contact-card h2 { color: inherit; font-family: "Noto Serif TC", serif; }
.faq-contact-card p { color: rgba(255, 248, 241, 0.74); line-height: 1.8; }
.faq-contact-card .btn,
.faq-contact-card .inline-link { margin-top: 10px; }

/* Material library */
.material-filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0; }
.material-filter button { min-height: 44px; margin: 0; border: 1px solid rgba(81, 61, 46, 0.15); border-radius: 999px; background: #f0e8de; color: #584536; font-weight: 800; }
.material-filter button.is-active { background: #3a2e25; color: #fff; }
.material-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.material-card { position: relative; min-height: 470px; padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(81, 61, 46, 0.13); border-radius: 28px; background: #fffdf9; }
.material-card[hidden] { display: none; }
.material-card-index { position: absolute; top: 24px; right: 24px; color: #b09a86; font-size: 12px; font-weight: 900; }
.material-card h2 { margin: 8px 0 24px; color: #30251e; font-family: "Noto Serif TC", serif; font-size: 32px; }
.material-price-note { display: grid; gap: 7px; padding: 16px; border-radius: 16px; background: #f1e9df; }
.material-price-note span { color: #957960; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.material-price-note strong { color: #4b3a2e; line-height: 1.6; }
.material-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.material-columns h3 { color: #47372c; font-size: 14px; }
.material-columns ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; color: #715e4e; font-size: 13px; line-height: 1.65; }
.material-suitable { display: flex; gap: 12px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(81, 61, 46, 0.12); color: #725d4c; font-size: 13px; }
.material-disclaimer { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 28px; margin-top: 40px; padding: clamp(26px, 4vw, 48px); border-radius: 28px; background: #e9dfd3; }
.material-disclaimer h2 { color: #30251e; font-family: "Noto Serif TC", serif; }
.material-disclaimer ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.material-disclaimer li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.54); color: #5b483a; }
.material-disclaimer li span { color: #987b62; font-weight: 900; }

/* Site journal */
.journal-principles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 30px 0; }
.journal-principles article { min-height: 220px; padding: 22px; border-radius: 22px; background: #eee6dc; }
.journal-principles span { color: #9d8169; font-size: 11px; font-weight: 900; letter-spacing: 0.14em; }
.journal-principles h2 { margin: 38px 0 10px; color: #332820; font-size: 20px; }
.journal-principles p { margin: 0; color: #746253; font-size: 13px; line-height: 1.75; }
.journal-status-panel { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin: 30px 0; padding: 26px; border: 1px solid rgba(81, 61, 46, 0.13); border-radius: 22px; background: #fffdf9; }
.journal-status-panel h2 { margin: 6px 0 0; color: #30251e; }
.journal-status-panel > p { max-width: 620px; color: #6f5b4b; line-height: 1.8; }
.journal-project-list { display: grid; gap: 18px; }
.journal-project-card { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); gap: 30px; align-items: center; min-height: 390px; padding: 18px; border: 1px solid rgba(81, 61, 46, 0.12); border-radius: 28px; background: #fffdf9; }
.journal-project-media { position: relative; height: 360px; overflow: hidden; border-radius: 20px; background: #e9e0d6; }
.journal-project-media img { width: 100%; height: 100%; object-fit: cover; }
.journal-project-media > span { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; border-radius: 999px; background: rgba(42, 32, 24, 0.74); color: #fff; font-size: 10px; font-weight: 800; }
.journal-project-card h2 { margin: 7px 0 14px; color: #30251e; font-family: "Noto Serif TC", serif; font-size: 34px; }
.journal-project-card p { color: #715e4e; line-height: 1.8; }

.compact-conversion-cta { margin-top: 48px; }

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .public-page .nav-wrap { position: relative; flex-direction: row; align-items: center; }
  .public-page .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(53, 43, 35, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }
  .public-page .nav-links.is-open { display: grid; }
  .public-page .nav-links a { justify-content: center; min-height: 46px; }
  .work-filter-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-reset { width: 100%; }
  .case-fact-bar dl { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; }
  .case-fact-bar dl div:nth-child(4) { border-left: 0; }
  .process-timeline,
  .journal-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .conversion-dock { left: max(8px, env(safe-area-inset-left)); right: max(8px, env(safe-area-inset-right)); bottom: max(8px, env(safe-area-inset-bottom)); transform: none; border-radius: 18px; }
  .conversion-dock a { flex: 1 1 0; min-width: 0; min-height: 54px; flex-direction: column; gap: 2px; padding: 6px 4px; font-size: 11px; }
  .site-assistant { bottom: max(88px, calc(env(safe-area-inset-bottom) + 88px)); }
  .site-assistant-panel {
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
  }
  .site-assistant.is-open .site-assistant-toggle {
    display: none;
  }
  .public-page .footer { padding-bottom: 112px; }
  .home-project-finder,
  .case-hero,
  .case-narrative,
  .case-conversion-panel,
  .before-measure-checklist,
  .material-disclaimer,
  .journal-project-card,
  .faq-layout { grid-template-columns: 1fr; }
  .home-plan-grid,
  .home-resource-grid,
  .testimonial-placeholder-grid,
  .measurement-plan-grid,
  .material-library-grid { grid-template-columns: 1fr; }
  .home-resource-grid .home-resource-lead,
  .home-resource-grid .home-resource-journal { grid-column: auto; }
  .case-hero { min-height: 0; }
  .case-hero-media { min-height: 460px; }
  .case-fact-bar dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-fact-bar dl div,
  .case-fact-bar dl div:nth-child(4) { border-left: 1px solid rgba(82, 61, 45, 0.12); }
  .case-fact-bar dl div:nth-child(odd) { border-left: 0; }
  .case-progress-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-gallery-grid { grid-template-columns: 1fr; }
  .case-gallery-grid a { min-height: 360px; }
  .related-project-grid { grid-template-columns: 1fr; }
  .faq-contact-card { position: static; }
  .journal-project-media { height: 320px; }
  .work-finder { position: static; }
  .project-card { grid-template-columns: 1fr; }
  .booking-record-entry { align-items: stretch; flex-direction: column; }
  .booking-record-entry .btn { width: 100%; }
  .project-card-media { min-height: 380px; }
}

@media (max-width: 620px) {
  .public-page .brand { gap: 8px; }
  .public-page .brand-mark { width: 38px; height: 36px; }
  .public-page .conversion-page-hero { min-height: 500px; padding: 26px; }
  .contact-page .page-hero h1 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.08;
    white-space: nowrap;
  }
  .contact-page .page-hero .page-tag-list {
    flex-wrap: nowrap;
    gap: 7px;
  }
  .contact-page .page-hero .page-tag {
    padding: 8px 9px;
    font-size: clamp(10.5px, 2.85vw, 12px);
    white-space: nowrap;
  }
  .home-page .home-finder-copy h2 {
    font-size: clamp(21px, 5.6vw, 24px);
    line-height: 1.2;
    white-space: nowrap;
  }
  .home-page .brand-manifesto-lead h2 {
    max-width: none;
    font-size: clamp(14px, 3.75vw, 16px);
    line-height: 1.3;
    white-space: nowrap;
  }
  .public-page .nav-links { grid-template-columns: 1fr; max-height: calc(100vh - 100px); overflow-y: auto; }
  .home-finder-groups,
  .work-filter-form,
  .case-story-grid,
  .project-facts,
  .process-timeline,
  .journal-principles,
  .material-columns { grid-template-columns: 1fr; }
  .work-finder-heading,
  .work-filter-status,
  .journal-status-panel { align-items: flex-start; flex-direction: column; }
  .project-card-media { min-height: 300px; }
  .project-card-title-row { display: grid; }
  .project-card-title-row > span { justify-self: start; }
  .case-hero-copy { padding: 28px 24px; }
  .case-hero-media { min-height: 330px; }
  .case-fact-bar dl { grid-template-columns: 1fr; }
  .case-fact-bar dl div,
  .case-fact-bar dl div:nth-child(4) { padding: 10px 0; border-left: 0; border-bottom: 1px solid rgba(82, 61, 45, 0.1); }
  .case-progress-grid { grid-template-columns: 1fr; }
  .case-gallery-grid a { min-height: 290px; }
  .material-card { min-height: 0; }
  .conversion-dock a[data-conversion-action="works"] { display: none; }
}

/* Process page · warm roadmap refresh */
.process-page {
  background:
    radial-gradient(circle at 9% 7%, rgba(190, 146, 103, 0.15), transparent 23%),
    radial-gradient(circle at 92% 24%, rgba(224, 198, 168, 0.22), transparent 25%),
    linear-gradient(180deg, #f5eee4 0%, #fbf7f1 48%, #f1e8dd 100%);
  color: #342920;
}

.process-page .topbar {
  background: rgba(70, 59, 51, 0.96);
  border-bottom-color: rgba(255, 246, 236, 0.12);
}

.process-page .brand,
.process-page .nav-links a,
.process-page .link-btn {
  color: #fff7ed;
}

.process-page .main-content {
  gap: 0;
  padding-top: 28px;
}

.process-page h1,
.process-page h2,
.process-page h3 {
  color: #30251d;
}

.process-page .page-kicker {
  color: #9b7452;
}

.process-page .conversion-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  min-height: 520px;
  padding: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 10%, rgba(229, 190, 145, 0.24), transparent 28%),
    linear-gradient(140deg, #211a16 0%, #48372c 54%, #80634f 112%);
  box-shadow: 0 30px 64px rgba(49, 35, 25, 0.2);
}

.process-page .conversion-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 246, 235, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 246, 235, 0.16) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(115deg, transparent 8%, #000 65%, #000 100%);
}

.process-page .conversion-page-hero h1,
.process-page .conversion-page-hero .page-kicker,
.process-page .conversion-page-hero .page-lead {
  color: #fff7ed;
}

.process-page .conversion-page-hero h1 {
  max-width: 13ch;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 1.04;
}

.process-page .conversion-page-hero .page-lead {
  max-width: 58ch;
  color: rgba(255, 245, 233, 0.76);
  font-size: 16px;
}

.process-page .process-hero-route {
  align-self: stretch;
  align-content: center;
  gap: 22px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(18, 14, 12, 0.3);
  border: 1px solid rgba(255, 244, 230, 0.16);
  backdrop-filter: blur(14px);
}

.process-page .process-hero-route ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-page .process-hero-route li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  min-height: 78px;
  padding-bottom: 16px;
}

.process-page .process-hero-route li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: -2px;
  left: 20px;
  border-left: 1px dashed rgba(239, 207, 171, 0.46);
}

.process-page .process-hero-route li > span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9cfb1;
  color: #33261d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-page .process-hero-route strong,
.process-page .process-hero-route small {
  grid-column: 2;
}

.process-page .process-hero-route strong {
  align-self: end;
  color: #fff7ed;
  font-size: 16px;
}

.process-page .process-hero-route small {
  margin-top: 3px;
  color: rgba(255, 245, 233, 0.6);
  font-size: 12px;
}

.process-page .process-hero-actions {
  display: grid;
  gap: 12px;
}

.process-page .process-hero-actions .btn {
  width: 100%;
  text-align: center;
}

.process-page .process-hero-actions .inline-link {
  justify-self: center;
  color: #f0d3b4;
}

.process-page .measurement-plans,
.process-page .full-process,
.process-page .before-measure-checklist,
.process-page .faq-preview,
.process-page .compact-conversion-cta {
  margin-top: 34px;
}

.process-page .compact-conversion-cta .btn.ghost,
.process-page .compact-conversion-cta .btn.ghost:hover,
.process-page .compact-conversion-cta .btn.ghost:focus-visible {
  background: rgba(255, 248, 240, 0.94);
  border-color: rgba(65, 46, 28, 0.12);
  color: #2f251e;
}

.process-page .measurement-plans {
  scroll-margin-top: 96px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(88, 66, 49, 0.1);
  box-shadow: 0 24px 52px rgba(52, 38, 28, 0.09);
}

.process-page .measurement-plans .section-heading h2,
.process-page .full-process .section-heading h2,
.process-page .faq-preview .section-heading h2 {
  color: #30251d;
}

.process-page .measurement-plans .section-description,
.process-page .full-process .section-description {
  color: #6f5c4c;
}

.process-page .measurement-plan-common {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #ece1d4;
  color: #5b4738;
}

.process-page .measurement-plan-common strong {
  margin-right: 4px;
  color: #32261d;
}

.process-page .measurement-plan-common span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.process-page .measurement-plan-grid {
  gap: 18px;
}

.process-page .measurement-plan-card {
  min-height: 620px;
  color: #34281f;
  border-color: rgba(79, 58, 43, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(205, 174, 142, 0.2), transparent 31%),
    #f8f1e8;
  box-shadow: 0 18px 40px rgba(53, 39, 29, 0.1);
}

.process-page .measurement-plan-card.is-featured {
  color: #fff7ed;
  border-color: rgba(255, 241, 224, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(205, 148, 95, 0.28), transparent 34%),
    linear-gradient(150deg, #241c17 0%, #3b2c23 58%, #6f4d37 120%);
  box-shadow: 0 24px 48px rgba(42, 29, 21, 0.2);
}

.process-page .measurement-plan-fit,
.process-page .measurement-plan-badge {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: #e7d6c2;
  color: #493527;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.process-page .measurement-plan-badge {
  top: 22px;
  right: 24px;
  background: #ecd0aa;
  color: #39281d;
}

.process-page .measurement-plan-head {
  margin-top: 28px;
  align-items: center;
}

.process-page .measurement-plan-head span {
  color: #9a7657;
}

.process-page .measurement-plan-head small {
  color: #7c6857;
  font-size: 12px;
  font-weight: 700;
}

.process-page .measurement-plan-card.is-featured .measurement-plan-head span,
.process-page .measurement-plan-card.is-featured .measurement-plan-head small {
  color: rgba(255, 241, 224, 0.64);
}

.process-page .measurement-plan-price {
  display: block;
  margin-top: 9px;
  color: #2f241c;
  font-family: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 600;
  line-height: 1;
}

.process-page .measurement-plan-card.is-featured .measurement-plan-price {
  color: #fff6eb;
}

.process-page .measurement-plan-card h3 {
  margin: 30px 0 12px;
  color: #30251d;
  font-size: clamp(27px, 3vw, 36px);
}

.process-page .measurement-plan-card.is-featured h3 {
  color: #fff6eb;
}

.process-page .measurement-plan-card > p:not(.measurement-plan-note) {
  margin: 0;
  color: #665344;
  opacity: 1;
}

.process-page .measurement-plan-card.is-featured > p:not(.measurement-plan-note) {
  color: rgba(255, 243, 230, 0.72);
}

.process-page .measurement-plan-deliverables {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(79, 58, 43, 0.12);
}

.process-page .measurement-plan-card.is-featured .measurement-plan-deliverables {
  border-color: rgba(255, 241, 224, 0.14);
}

.process-page .measurement-plan-deliverables > strong {
  color: #5a4332;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.process-page .measurement-plan-card.is-featured .measurement-plan-deliverables > strong {
  color: #e9caab;
}

.process-page .measurement-plan-card ul {
  margin: 16px 0 22px;
}

.process-page .measurement-plan-card li {
  color: #3f3127;
}

.process-page .measurement-plan-card.is-featured li {
  color: #fff2e4;
}

.process-page .measurement-plan-note {
  margin: 0 0 22px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(124, 93, 67, 0.08);
  color: #745a45;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  opacity: 1;
}

.process-page .measurement-plan-card.is-featured .measurement-plan-note {
  background: rgba(255, 244, 231, 0.08);
  color: #f0d1b0;
}

.process-page .measurement-plan-card .btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2f251e;
  color: #fff7ee;
}

.process-page .measurement-plan-card.is-featured .btn {
  background: #f1dfca;
  color: #2d221b;
}

.process-page .measurement-plan-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #352a22;
  color: #fff5ea;
}

.process-page .measurement-plan-help > div {
  display: grid;
  gap: 4px;
}

.process-page .measurement-plan-help span {
  color: rgba(255, 244, 232, 0.68);
  font-size: 13px;
}

.process-page .measurement-plan-help .inline-link {
  flex: 0 0 auto;
  color: #f0d2b3;
}

.process-page .discount-rule {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 22px;
  align-items: center;
  background: #e8ddd0;
  border: 1px solid rgba(79, 58, 43, 0.08);
}

.process-page .discount-rule strong {
  grid-row: span 2;
  font-size: 18px;
}

.process-page .discount-rule p {
  margin: 0 0 5px;
}

.process-page .full-process {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    linear-gradient(rgba(98, 74, 55, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 74, 55, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #eee2d5, #f9f4ed 65%);
  background-size: 56px 56px, 56px 56px, auto;
  border: 1px solid rgba(88, 66, 49, 0.1);
  box-shadow: 0 24px 48px rgba(52, 38, 28, 0.08);
}

.process-page .process-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 18px;
}

.process-page .process-map-legend span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(84, 62, 45, 0.1);
  color: #735a46;
  font-size: 12px;
  font-weight: 800;
}

.process-page .process-timeline {
  gap: 16px;
}

.process-page .process-timeline li {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(84, 62, 45, 0.1);
  box-shadow: 0 14px 28px rgba(57, 42, 30, 0.08);
}

.process-page .process-timeline li:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -18px;
  width: 20px;
  border-top: 2px dotted #b9926d;
}

.process-page .process-timeline li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #392d24;
  color: #f4ddc5;
  font-size: 12px;
}

.process-page .process-timeline small {
  display: block;
  margin-top: 28px;
  color: #aa805d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.process-page .process-timeline h3 {
  margin: 8px 0 10px;
  color: #33271f;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
}

.process-page .process-timeline p {
  color: #756253;
}

.process-page .before-measure-checklist {
  background:
    radial-gradient(circle at 100% 0%, rgba(210, 158, 106, 0.22), transparent 34%),
    linear-gradient(135deg, #241c17, #4a372b);
  box-shadow: 0 24px 46px rgba(49, 35, 25, 0.14);
}

.process-page .before-measure-checklist h2 {
  color: #fff7ed;
}

.process-page .faq-list details {
  background: rgba(255, 253, 249, 0.92);
}

.process-page .footer {
  border-top-color: rgba(75, 55, 41, 0.12);
}

@media (max-width: 1120px) {
  .process-page .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-page .process-timeline li::after {
    display: none;
  }

  .process-page .process-timeline li:nth-child(odd):not(:last-child)::after {
    display: block;
    content: "";
    position: absolute;
    top: 46px;
    right: -18px;
    width: 20px;
    border-top: 2px dotted #b9926d;
  }
}

@media (max-width: 900px) {
  .process-page .conversion-page-hero {
    grid-template-columns: 1fr;
  }

  .process-page .process-hero-route {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
    align-items: center;
  }
}

@media (max-width: 820px) {
  .process-page .measurement-plan-card {
    min-height: 0;
  }

  .process-page .measurement-plan-help,
  .process-page .discount-rule {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .process-page .discount-rule strong {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .process-page .conversion-page-hero {
    min-height: 0;
    padding: 28px 22px;
  }

  .process-page .conversion-page-hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .process-page .process-hero-route {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .process-page .measurement-plans,
  .process-page .full-process {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .process-page .measurement-plan-common {
    align-items: flex-start;
  }

  .process-page .measurement-plan-common strong {
    width: 100%;
  }

  .process-page .measurement-plan-card {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .process-page .measurement-plan-badge {
    position: static;
    margin-bottom: 4px;
  }

  .process-page .measurement-plan-head {
    margin-top: 22px;
  }

  .process-page .measurement-plan-price {
    font-size: 46px;
  }

  .process-page .measurement-plan-help .inline-link {
    flex: auto;
  }

  .process-page .discount-rule {
    display: grid;
    padding: 20px;
  }

  .process-page .process-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-page .process-timeline li {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
  }

  .process-page .process-timeline li::after,
  .process-page .process-timeline li:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  .process-page .process-timeline li:not(:last-child)::after {
    display: block;
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    bottom: -16px;
    left: 47px;
    width: 0;
    height: 16px;
    border-top: 0;
    border-left: 2px dotted #b9926d;
  }

  .process-page .process-timeline li > span {
    grid-row: 1 / span 3;
  }

  .process-page .process-timeline small,
  .process-page .process-timeline h3,
  .process-page .process-timeline p {
    grid-column: 2;
  }

  .process-page .process-timeline small {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* 2026 conversion tools: booking, calculator, guide and authorized stories */
.form-intro-note {
  margin: -4px 0 22px;
  color: #735f4e;
  line-height: 1.75;
}

.calculator-prefill-note {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(116, 85, 57, 0.16);
  border-radius: 16px;
  background: #f0e4d6;
  color: #3f3026;
}

.calculator-prefill-note span { color: #705a48; font-size: 13px; }

.form-section-heading,
.calculator-section-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 16px 0 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(75, 56, 41, 0.12);
}

.form-section-heading > span,
.calculator-section-heading > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #3c2e25;
  color: #f7e8d8;
  font-size: 11px;
  font-weight: 900;
}

.form-section-heading div,
.calculator-section-heading div { display: grid; gap: 2px; }
.form-section-heading strong,
.calculator-section-heading strong { color: #382b22; font-size: 16px; }
.form-section-heading small,
.calculator-section-heading small { color: #8a7564; font-size: 12px; }
.schedule-helper { margin: -4px 0 8px; }

.home-resource-grid .home-resource-tool {
  grid-column: span 3;
  min-height: 210px;
  background: #332820;
  color: #fff8ef;
}
.home-resource-grid .home-resource-tool:nth-last-child(1) { background: #c7a27f; color: #271d16; }
.home-resource-grid .home-resource-tool h3,
.home-resource-grid .home-resource-tool p { color: inherit; }
.home-resource-grid .home-resource-tool p { opacity: 0.76; }
.home-resource-grid .home-resource-tool .public-link { color: inherit; }

.story-preview-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 28px;
  background: linear-gradient(135deg, #2f251e, #504034);
  color: #fff8ef;
}
.story-preview-empty > div:first-child > span { color: #d8b28e; font-size: 11px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.story-preview-empty h3 { margin: 12px 0; color: inherit; font-family: "Noto Serif TC", serif; font-size: clamp(24px, 3vw, 34px); }
.story-preview-empty p { margin: 0; color: rgba(255, 248, 239, 0.7); line-height: 1.75; }
.story-preview-formats { display: grid; gap: 9px; }
.story-preview-formats span { padding: 10px 13px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 999px; color: #fff8ef; text-align: center; font-size: 12px; }
.story-preview-empty .public-link { color: #fff8ef; white-space: nowrap; }

.calculator-page .calculator-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(208, 162, 119, 0.35), transparent 30%),
    linear-gradient(135deg, #251c17, #503b2e);
}
.calculator-hero-note { padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.08); color: #fff8ef; }
.calculator-hero-note strong { display: block; margin-bottom: 8px; }
.calculator-hero-note p { margin: 0; color: rgba(255,248,239,.72); line-height: 1.7; }

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 22px;
  margin: 34px 0;
}
.calculator-form,
.calculator-result {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(72, 53, 39, 0.12);
  border-radius: 30px;
  background: #fffdf9;
  box-shadow: 0 22px 50px rgba(48, 35, 25, 0.07);
}
.calculator-field-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.calculator-field-grid .form-field { align-content: start; }
.calculator-field-grid input,
.calculator-field-grid select {
  width: 100%;
  height: 48px;
  min-height: 48px;
}
.calculator-section-heading { margin: 0 0 22px; padding-top: 0; border-top: 0; }
.calculator-section-heading:not(:first-child) { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(75, 56, 41, 0.12); }
.calculator-option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.calculator-option {
  min-height: 104px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(75, 56, 41, 0.15);
  border-radius: 18px;
  cursor: pointer;
}
.calculator-option:has(input:checked) { border-color: #8e6b4d; background: #f0e4d6; }
.calculator-option input { width: 20px; height: 20px; margin-top: 2px; accent-color: #4a392d; }
.calculator-option span { display: grid; gap: 6px; }
.calculator-option strong { color: #3c2d23; }
.calculator-option small { color: #837061; line-height: 1.5; }
.calculator-bathroom-field { grid-column: 1 / -1; }

.calculator-result {
  position: sticky;
  top: 90px;
  align-self: start;
  background: #2d231d;
  color: #fff8ef;
}
.calculator-result-label { display: block; margin: 18px 0 8px; color: rgba(255,248,239,.64); font-size: 13px; }
.calculator-result > strong { display: block; color: inherit; font-family: "Noto Serif TC", serif; font-size: clamp(30px, 4vw, 47px); line-height: 1.2; }
.calculator-result > p { color: rgba(255,248,239,.72); line-height: 1.75; }
.calculator-breakdown { display: grid; gap: 0; margin: 26px 0; border-block: 1px solid rgba(255,255,255,.13); }
.calculator-breakdown div { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.calculator-breakdown div:last-child { border-bottom: 0; }
.calculator-breakdown span { color: rgba(255,248,239,.62); }
.calculator-breakdown strong { color: #fff8ef; text-align: right; }
.calculator-exclusions { margin: 0 0 24px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.07); }
.calculator-exclusions strong { font-size: 13px; }
.calculator-exclusions p { margin: 6px 0 0; color: rgba(255,248,239,.64); font-size: 12px; line-height: 1.65; }
.calculator-booking-link { width: 100%; margin-bottom: 16px; }
.calculator-result .inline-link { color: #f1d0af; }
.calculator-method { margin: 34px 0; padding: clamp(26px, 4vw, 48px); border-radius: 30px; background: #eee5da; }
.calculator-method h2 { margin: 5px 0 24px; color: #33261e; font-family: "Noto Serif TC", serif; }
.calculator-method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.calculator-method-grid article { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.62); }
.calculator-method-grid span { color: #9b7656; font-size: 11px; font-weight: 900; }
.calculator-method-grid strong { display: block; margin: 12px 0 8px; color: #382a21; }
.calculator-method-grid p { margin: 0; color: #776354; line-height: 1.7; }
.calculator-version-note { margin: 20px 0 0; color: #816c5c; font-size: 12px; }

.stories-page .stories-hero {
  background:
    linear-gradient(90deg, rgba(30,22,18,.92), rgba(30,22,18,.48)),
    linear-gradient(135deg, #2b211b, #765c49);
}
.story-consent-mark { display: inline-flex; padding: 9px 13px; border-radius: 999px; background: #e7c29f; color: #35271e; font-size: 12px; font-weight: 900; }
.stories-hero .page-hero-side p { color: rgba(255,248,239,.72); line-height: 1.7; }
.story-list { display: grid; gap: 28px; margin: 34px 0; }
.story-card { overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); border-radius: 30px; background: #f1e8de; }
.story-media { min-height: 480px; background: #221a16; }
.story-media iframe,
.story-media video,
.story-media img { width: 100%; height: 100%; display: block; border: 0; object-fit: cover; }
.story-media-placeholder { width: 100%; height: 100%; min-height: 480px; display: grid; place-content: center; gap: 5px; color: #f6e8d9; text-align: center; background: radial-gradient(circle, #5b4637, #241b16); }
.story-media-placeholder span { font-family: "Noto Serif TC", serif; font-size: 52px; }
.story-media-placeholder small { letter-spacing: .18em; text-transform: uppercase; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 54px); }
.story-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.story-meta span { padding: 7px 10px; border: 1px solid rgba(77,56,42,.15); border-radius: 999px; color: #7e6654; font-size: 11px; }
.story-copy h2 { margin: 18px 0; color: #30231b; font-family: "Noto Serif TC", serif; }
.story-copy blockquote { margin: 0 0 18px; padding-left: 18px; border-left: 3px solid #a57d5c; color: #4b392c; font-family: "Noto Serif TC", serif; font-size: 20px; line-height: 1.7; }
.story-copy p { color: #765f4e; line-height: 1.85; }
.story-copy .public-link { margin-top: 18px; }
.story-empty-state { margin: 34px 0; padding: clamp(32px, 6vw, 72px); border-radius: 34px; background: #f0e7dc; text-align: center; }
.story-empty-state > p { max-width: 720px; margin-inline: auto; color: #735f50; line-height: 1.8; }
.story-empty-state h2 { color: #33261e; font-family: "Noto Serif TC", serif; }
.story-format-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin: 32px 0; text-align: left; }
.story-format-grid article { padding: 24px; border-radius: 22px; background: #fffdf9; }
.story-format-grid span { color: #a17b5c; font-size: 11px; font-weight: 900; }
.story-format-grid h3 { margin: 18px 0 8px; color: #382a21; }
.story-format-grid p { margin: 0; color: #7a6656; line-height: 1.7; }
.story-empty-state .hero-actions { justify-content: center; }

.guide-hero { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr); gap: clamp(30px,6vw,80px); align-items: center; margin: 24px 0 48px; padding: clamp(28px,5vw,64px); border-radius: 34px; background: #2b211b; color: #fff8ef; }
.guide-cover-preview { aspect-ratio: .72; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(26px,4vw,48px); border: 1px solid rgba(255,255,255,.22); background: linear-gradient(155deg,#eee0cf 0 35%,#ad8262 35% 55%,#46352a 55%); color: #281e18; box-shadow: 0 28px 60px rgba(0,0,0,.28); transform: rotate(-2deg); }
.guide-cover-preview > span { font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.guide-cover-preview > strong { color: #fff9f1; font-family: "Noto Serif TC",serif; font-size: clamp(30px,4vw,54px); line-height: 1.3; }
.guide-cover-preview > small { color: rgba(255,249,241,.76); line-height: 1.6; }
.guide-hero-copy h1 { color: inherit; font-family: "Noto Serif TC",serif; font-size: clamp(38px,5vw,64px); line-height: 1.18; }
.guide-hero-copy > p { color: rgba(255,248,239,.75); line-height: 1.8; }
.guide-hero-copy ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.guide-hero-copy li { position: relative; padding-left: 28px; }
.guide-hero-copy li::before { content: "✓"; position: absolute; left: 0; color: #e0b38b; font-weight: 900; }
.guide-download-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: 24px; margin: 0 0 40px; }
.guide-content-list { padding: clamp(26px,4vw,46px); border-radius: 30px; background: #efe6dc; }
.guide-content-list h2 { color: #34271f; font-family: "Noto Serif TC",serif; }
.guide-content-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.guide-content-grid article { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.72); }
.guide-content-grid span { color: #9b7656; font-size: 11px; font-weight: 900; }
.guide-content-grid strong { display: block; margin: 16px 0 8px; color: #3e3026; }
.guide-content-grid p { margin: 0; color: #7a6656; line-height: 1.7; }
.guide-form-card { padding: clamp(26px,4vw,42px); border: 1px solid rgba(72,53,39,.12); border-radius: 30px; background: #fffdf9; box-shadow: 0 22px 50px rgba(48,35,25,.08); }
.guide-form-card h2 { margin: 5px 0 8px; color: #34271f; font-family: "Noto Serif TC",serif; }
.guide-form-card > p { color: #786354; line-height: 1.7; }
.guide-form-card .btn { width: 100%; }

@media (max-width: 980px) {
  .calculator-shell,
  .guide-download-layout,
  .story-card { grid-template-columns: 1fr; }
  .calculator-result { position: static; }
  .guide-hero { grid-template-columns: minmax(220px,.65fr) minmax(0,1.35fr); gap: 32px; }
  .story-media { min-height: 420px; }
  .story-preview-empty { grid-template-columns: 1fr; align-items: start; }
  .story-preview-formats { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .calculator-field-grid,
  .calculator-method-grid,
  .story-format-grid,
  .guide-content-grid { grid-template-columns: 1fr; }
  .calculator-option-grid { grid-template-columns: 1fr; }
  .guide-hero { grid-template-columns: 1fr; padding: 28px 22px; }
  .guide-cover-preview { width: min(300px, 82%); margin: 0 auto; }
  .story-preview-formats { grid-template-columns: 1fr; }
  .story-media,
  .story-media-placeholder { min-height: 300px; }
  .home-resource-grid .home-resource-tool { grid-column: auto; }
}

@media (max-width: 520px) {
  .form-section-heading,
  .calculator-section-heading { align-items: flex-start; }
  .calculator-form,
  .calculator-result,
  .guide-content-list,
  .guide-form-card { padding: 24px 20px; border-radius: 24px; }
  .calculator-result > strong { font-size: 30px; }
  .calculator-breakdown div { display: grid; gap: 5px; }
  .calculator-breakdown strong { text-align: left; }
}

/* 2026 Phase 1 homepage milestone: restrained header, one-image hero, five projects, one design-build case. */
body.site-menu-open {
  overflow: hidden;
}

.public-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #20252a;
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid rgba(32, 37, 42, 0.12);
  backdrop-filter: none;
}

.public-page .site-header .nav-wrap {
  min-height: 76px;
  padding: 10px 0;
}

.public-page .site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: none;
  color: #20252a;
  text-decoration: none;
}

.public-page .site-header .brand-mark {
  width: 42px;
  height: 40px;
}

.public-page .site-header .brand-name {
  color: #20252a;
  font-family: "Songti TC", "Noto Serif TC", "Iowan Old Style", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.12em !important;
  white-space: nowrap;
}

.site-header-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.public-page .site-projects-link,
.public-page .site-header .nav-toggle {
  color: #20252a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em !important;
  text-decoration: none;
}

.public-page .site-projects-link {
  position: relative;
  padding: 12px 0;
}

.public-page .site-projects-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.public-page .site-projects-link:hover::after,
.public-page .site-projects-link:focus-visible::after,
.public-page .site-projects-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.public-page .site-header .nav-toggle {
  width: auto;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 8px 0 8px 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.public-page .site-header .nav-toggle > span {
  width: auto;
  height: auto;
  display: inline-flex;
  margin: 0;
  background: transparent;
  border-radius: 0;
}

.public-page .site-header .site-menu-icon {
  width: 24px;
  display: grid !important;
  gap: 5px;
}

.public-page .site-header .site-menu-icon i {
  width: 24px;
  height: 1px;
  display: block;
  background: #20252a;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: clamp(14px, 2vw, 26px);
  color: #f7f3ec;
  background: rgba(11, 17, 21, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu-panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(24px, 4vw, 58px);
  background:
    radial-gradient(circle at 85% 15%, rgba(43, 99, 137, 0.26), transparent 28%),
    #171d21;
  transform: translateY(-14px);
  transition: transform 260ms cubic-bezier(0.2, 0.72, 0.28, 1);
}

.site-menu.is-open .site-menu-panel {
  transform: translateY(0);
}

.site-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-menu-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: #fffaf2;
  font-family: "Songti TC", "Noto Serif TC", serif;
  font-size: 23px;
  text-decoration: none;
}

.site-menu-brand small {
  color: rgba(255, 250, 242, 0.52);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em !important;
}

.site-menu-close {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 8px 0 8px 12px;
  color: #fffaf2;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-menu-close span {
  font-size: 12px;
}

.site-menu-close b {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.site-menu-content {
  display: grid;
  grid-template-columns: minmax(90px, 0.28fr) minmax(320px, 1.2fr) minmax(240px, 0.52fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  padding-top: clamp(36px, 7vh, 80px);
}

.site-menu-index,
.site-menu-aside > p {
  margin: 0;
  color: rgba(255, 250, 242, 0.48);
  font-size: 10px;
  letter-spacing: 0.18em !important;
}

.site-menu-index {
  align-self: start;
  writing-mode: vertical-rl;
}

.site-menu-links {
  display: grid;
}

.site-menu-links > a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  color: rgba(255, 250, 242, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.site-menu-links > a span {
  font-size: 10px;
  letter-spacing: 0.12em !important;
}

.site-menu-links > a strong {
  font-family: "Songti TC", "Noto Serif TC", serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.site-menu-links > a:hover,
.site-menu-links > a:focus-visible,
.site-menu-links > a[aria-current="page"] {
  padding-left: 9px;
  color: #fffaf2;
}

.site-menu-aside {
  display: grid;
  gap: 14px;
  align-self: end;
  padding-bottom: 8px;
}

.site-menu-aside > a {
  width: fit-content;
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.site-menu-aside .site-menu-cta {
  margin-top: 18px;
  padding-bottom: 8px;
  color: #fffaf2;
  border-bottom: 1px solid currentColor;
}

.chapter-home-page {
  background: #f2efe8;
}

.chapter-home-page .main-content {
  padding-top: 18px;
}

.chapter-home-page .fashion-home {
  gap: clamp(70px, 10vw, 142px);
}

.phase1-hero {
  position: relative;
  min-height: clamp(650px, calc(100dvh - 112px), 900px);
  overflow: hidden;
  border-radius: 2px;
  background: #252729;
}

.phase1-hero-media,
.phase1-hero-media img,
.phase1-hero-placeholder,
.phase1-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phase1-hero-media {
  margin: 0;
}

.phase1-hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04);
}

.phase1-hero-placeholder {
  background: linear-gradient(135deg, #26313a, #14191d);
}

.phase1-hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 15, 17, 0.7) 0%, rgba(11, 15, 17, 0.2) 54%, rgba(11, 15, 17, 0.16) 100%),
    linear-gradient(180deg, rgba(11, 15, 17, 0.1) 45%, rgba(11, 15, 17, 0.58) 100%);
}

.phase1-hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 82px);
  bottom: clamp(44px, 8vh, 92px);
  max-width: 1050px;
}

.phase1-hero-copy > p,
.phase1-section-heading > div:first-child > p,
.phase1-build-intro > p:first-child {
  margin: 0 0 24px;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em !important;
}

.phase1-hero-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.phase1-hero-copy h1 {
  margin: 0;
  color: #fffdf8;
  font-family: "Songti TC", "Noto Serif TC", "Iowan Old Style", serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.02em !important;
  text-wrap: balance;
}

.phase1-hero-copy > a {
  width: fit-content;
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding-bottom: 8px;
  color: #fffdf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.phase1-hero-project {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 58px);
  top: clamp(24px, 4vh, 46px);
  bottom: auto;
  display: grid;
  justify-items: end;
  gap: 5px;
  color: #fffdf8;
  text-decoration: none;
}

.phase1-hero-project span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.18em !important;
}

.phase1-hero-project strong {
  font-family: "Songti TC", "Noto Serif TC", serif;
  font-size: 19px;
  font-weight: 500;
}

.phase1-projects {
  display: grid;
  gap: clamp(54px, 8vw, 100px);
}

.phase1-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.6fr);
  gap: clamp(30px, 8vw, 120px);
  align-items: end;
  padding: 0 clamp(0px, 2vw, 28px);
}

.phase1-section-heading > div:first-child > p {
  color: #335f7c;
}

.phase1-section-heading h2,
.phase1-build-intro h2 {
  margin: 0;
  color: #20252a;
  font-family: "Songti TC", "Noto Serif TC", serif;
  font-size: clamp(44px, 6.2vw, 80px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em !important;
}

.phase1-section-heading > div:last-child {
  display: grid;
  gap: 20px;
  padding-bottom: 6px;
}

.phase1-section-heading > div:last-child p,
.phase1-build-intro > p:not(:first-child) {
  margin: 0;
  color: #5d6265;
  font-size: 15px;
  line-height: 1.9;
}

.phase1-section-heading a,
.phase1-build-intro a {
  width: fit-content;
  padding-bottom: 6px;
  color: #20252a;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em !important;
  text-decoration: none;
}

.phase1-project-list {
  display: grid;
  gap: clamp(72px, 12vw, 160px);
}

.phase1-project {
  width: 78%;
}

.phase1-project--large {
  width: 90%;
}

.phase1-project--right {
  width: 66%;
  margin-left: auto;
}

.phase1-project--portrait {
  width: 48%;
  margin-left: 8%;
}

.phase1-project--wide {
  width: 100%;
}

.phase1-project--closing {
  width: 62%;
  margin-left: 22%;
}

.phase1-project-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d8d4cc;
}

.phase1-project--right .phase1-project-media {
  aspect-ratio: 4 / 3;
}

.phase1-project--portrait .phase1-project-media {
  aspect-ratio: 3 / 4;
}

.phase1-project--wide .phase1-project-media {
  aspect-ratio: 2 / 1;
}

.phase1-project--closing .phase1-project-media {
  aspect-ratio: 5 / 4;
}

.phase1-project-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.2, 0.72, 0.28, 1), filter 300ms ease;
}

.phase1-project-media > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(18, 22, 24, 0.74);
  font-size: 9px;
  letter-spacing: 0.12em !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.phase1-project-media:hover img,
.phase1-project-media:focus-visible img {
  transform: scale(1.025);
  filter: saturate(0.92);
}

.phase1-project-media:hover > span,
.phase1-project-media:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.phase1-project-meta {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(32, 37, 42, 0.18);
}

.phase1-project-meta > span {
  color: #335f7c;
  font-size: 10px;
  letter-spacing: 0.14em !important;
}

.phase1-project-meta h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.phase1-project-meta h3 a {
  color: #20252a;
  text-decoration: none;
}

.phase1-project-meta p {
  margin: 8px 0 0;
  color: #737779;
  font-size: 11px;
  text-transform: uppercase;
}

.phase1-empty {
  padding: 50px;
  color: #5d6265;
  border: 1px solid rgba(32, 37, 42, 0.14);
}

.phase1-build {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(44px, 7vw, 94px);
  color: #f4f1e9;
  background:
    radial-gradient(circle at 0 10%, rgba(53, 103, 137, 0.34), transparent 28%),
    #1b2125;
}

.phase1-build-intro {
  position: sticky;
  top: 112px;
  height: fit-content;
  display: grid;
  gap: 26px;
}

.phase1-build-intro > p:first-child {
  margin-bottom: 0;
  color: #9eb8c9;
}

.phase1-build-intro h2 {
  color: #fffdf8;
  font-size: clamp(40px, 5vw, 68px);
}

.phase1-build-intro > p:not(:first-child) {
  color: rgba(244, 241, 233, 0.64);
}

.phase1-build-intro a {
  color: #f4f1e9;
}

.phase1-build-sequence {
  display: grid;
}

.phase1-build-stage {
  min-height: 68vh;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(42px, 7vh, 80px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.phase1-build-stage:first-child {
  padding-top: 0;
}

.phase1-build-stage:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.phase1-build-stage-copy > span {
  color: #9eb8c9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em !important;
}

.phase1-build-stage-copy h3 {
  max-width: 16ch;
  margin: 14px 0;
  color: #fffdf8;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.2;
}

.phase1-build-stage-copy p {
  max-width: 46ch;
  margin: 0;
  color: rgba(244, 241, 233, 0.64);
  line-height: 1.8;
}

.phase1-build-stage figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
}

.phase1-build-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .site-menu-content {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .site-menu-aside {
    grid-column: 2;
    margin-top: 18px;
  }

  .phase1-section-heading,
  .phase1-build {
    grid-template-columns: 1fr;
  }

  .phase1-build-intro {
    position: static;
  }

  .phase1-build-stage {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .public-page .site-header .nav-wrap {
    min-height: 66px;
    flex-direction: row;
    align-items: center;
  }

  .public-page .site-header .brand-mark {
    width: 36px;
    height: 34px;
  }

  .public-page .site-header .brand-name {
    font-size: 18px;
  }

  .public-page .site-projects-link {
    display: none;
  }

  .public-page .site-header .nav-toggle {
    min-width: 76px;
    min-height: 46px;
    justify-content: flex-end;
  }

  .site-menu {
    padding: 0;
  }

  .site-menu-panel {
    padding: 22px 20px max(26px, env(safe-area-inset-bottom));
  }

  .site-menu-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 20px;
  }

  .site-menu-close span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .site-menu-content {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: start;
    overflow-y: auto;
    padding-top: 28px;
  }

  .site-menu-index {
    display: none;
  }

  .site-menu-links > a {
    padding: 13px 0;
  }

  .site-menu-links > a strong {
    font-size: clamp(28px, 9vw, 40px);
  }

  .site-menu-aside {
    grid-column: 1;
    gap: 12px;
    margin-top: 0;
  }

  .chapter-home-page .main-content {
    width: 100%;
    padding-top: 0;
  }

  .chapter-home-page .fashion-home {
    gap: 78px;
  }

  .phase1-hero {
    min-height: calc(100dvh - 66px);
    border-radius: 0;
  }

  .phase1-hero-media img {
    object-position: 58% center;
  }

  .phase1-hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 15, 17, 0.08) 20%, rgba(11, 15, 17, 0.78) 100%),
      linear-gradient(90deg, rgba(11, 15, 17, 0.38), rgba(11, 15, 17, 0.06));
  }

  .phase1-hero-copy {
    right: 22px;
    left: 22px;
    bottom: max(96px, calc(env(safe-area-inset-bottom) + 82px));
  }

  .phase1-hero-copy > p {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .phase1-hero-copy h1 {
    font-size: clamp(39px, 11.8vw, 52px);
    line-height: 1.16;
  }

  .phase1-hero-copy > a {
    margin-top: 28px;
  }

  .phase1-hero-project {
    top: auto;
    right: 22px;
    bottom: 24px;
  }

  .phase1-projects,
  .phase1-build,
  .chapter-home-page .brand-essence-section,
  .chapter-home-page .cert-strip,
  .chapter-home-page .chapter-route-nav {
    margin-right: 3vw;
    margin-left: 3vw;
  }

  .phase1-section-heading {
    gap: 28px;
    padding: 0;
  }

  .phase1-section-heading h2 {
    font-size: clamp(39px, 11.6vw, 54px);
  }

  .phase1-project-list {
    gap: 78px;
  }

  .phase1-project,
  .phase1-project--large,
  .phase1-project--right,
  .phase1-project--portrait,
  .phase1-project--wide,
  .phase1-project--closing {
    width: 100%;
    margin-left: 0;
  }

  .phase1-project-media,
  .phase1-project--right .phase1-project-media,
  .phase1-project--wide .phase1-project-media,
  .phase1-project--closing .phase1-project-media {
    aspect-ratio: 4 / 3;
  }

  .phase1-project--portrait .phase1-project-media {
    aspect-ratio: 3 / 4;
  }

  .phase1-project-media > span {
    display: none;
  }

  .phase1-project-meta {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .phase1-project-meta h3 {
    font-size: 30px;
  }

  .phase1-build {
    gap: 52px;
    padding: 48px 22px;
  }

  .phase1-build-intro {
    position: static;
  }

  .phase1-build-intro h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .phase1-build-stage {
    min-height: 0;
    gap: 20px;
    padding: 48px 0;
  }

  .phase1-build-stage:first-child {
    padding-top: 0;
  }

  .phase1-build-stage-copy h3 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-menu,
  .site-menu-panel,
  .phase1-project-media img,
  .phase1-project-media > span {
    transition: none;
  }
}
