:root {
  --ink: #22231f;
  --muted: #69665d;
  --paper: #f7f1e8;
  --surface: #fffaf3;
  --line: #ded0bf;
  --accent: #ba3f22;
  --accent-dark: #7e251b;
  --gold: #c67721;
  --moss: #2e3d35;
  --shadow: 0 22px 50px rgba(52, 35, 20, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(46, 61, 53, .05) 1px, transparent 1px),
    linear-gradient(180deg, #fbf7ef 0%, var(--paper) 42%, #f4eadc 100%);
  background-size: 72px 72px, auto;
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(251, 247, 239, .9);
  border-bottom: 1px solid rgba(222, 208, 191, .75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3f403a;
  font-size: 15px;
}

.nav-cta {
  color: #fff;
  background: var(--accent);
  padding: 10px 14px;
  border-radius: 8px;
}

.section-band,
.section-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  padding: clamp(56px, 8vw, 112px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(52px, 7vw, 96px) 0;
  align-items: start;
}

.hero {
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(34px, 5vw, 80px);
  padding-bottom: clamp(42px, 6vw, 84px);
}

.landing-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: min(760px, calc(100vh - 76px));
  margin: 0;
  padding-left: clamp(20px, 7vw, 96px);
  padding-right: clamp(20px, 7vw, 96px);
  grid-template-columns: minmax(0, 620px) minmax(360px, 520px);
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(46, 61, 53, .055) 1px, transparent 1px),
    linear-gradient(180deg, #fbf7ef 0%, #f4eadc 100%);
  background-size: 72px 72px, auto;
}

.landing-hero::after {
  display: none;
}

.landing-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.landing-hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.02;
}

.landing-hero .hero-text {
  max-width: 560px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-photo-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(222, 208, 191, .95);
  border-radius: 8px;
  background: #efe3d3;
  box-shadow: var(--shadow);
}

.hero-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(34, 35, 31, .42) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 250, 243, .22), transparent 34%);
}

.hero-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) contrast(1.08) saturate(.86);
}

.hero-photo-panel span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  color: #fffaf3;
  background: rgba(34, 35, 31, .52);
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(64px, 11vw, 132px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.13;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(20px, 2.3vw, 28px);
  color: #3b3933;
  line-height: 1.65;
}

.hero-actions, .location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  background: rgba(255, 250, 243, .76);
  color: var(--moss);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin-top: 34px;
}

.quick-facts div {
  min-height: 98px;
  padding: 18px;
  background: rgba(255, 250, 243, .72);
}

dt {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

dd {
  margin: 0;
  color: #34342f;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(198, 119, 33, .20), transparent 32%),
    linear-gradient(145deg, rgba(255, 250, 243, .95), rgba(232, 218, 199, .75));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(46, 61, 53, .16);
  inset: 34px;
  border-radius: 50%;
}

.hero-visual::after {
  inset: 72px;
  border-color: rgba(186, 63, 34, .16);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(78%, 420px);
  height: auto;
  mix-blend-mode: multiply;
}

.photo-hero {
  align-items: stretch;
  min-height: 560px;
  background: #efe3d3;
}

.photo-hero::before {
  z-index: 1;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 250, 243, .82) 0%, rgba(255, 250, 243, .18) 46%, transparent 68%);
}

.photo-hero::after {
  display: none;
}

.photo-hero img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 82% center;
  mix-blend-mode: normal;
  filter: brightness(1.04) contrast(1.06) saturate(.92);
  transform: scale(1.28);
  transform-origin: 82% center;
}

.visual-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(300px, calc(100% - 48px));
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 250, 243, .9);
  box-shadow: 0 16px 32px rgba(46, 61, 53, .13);
}

.visual-note span {
  display: block;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.intent-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-gallery {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.simple-gallery .section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.compact-heading h2 {
  margin-bottom: 0;
}

.concerns {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.concerns .section-heading,
.concern-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.concern-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 250, 243, .88);
}

.concern-grid span {
  color: var(--gold);
  font-weight: 900;
}

.concern-grid strong {
  display: block;
  margin: 44px 0 10px;
  color: var(--accent-dark);
  font-size: 21px;
}

.concern-grid p {
  margin-bottom: 0;
}

.method-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-points {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.method-points article {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 250, 243, .9);
}

.method-points strong {
  color: var(--accent-dark);
  font-size: 22px;
}

.method-points span {
  color: var(--muted);
  line-height: 1.75;
}

.visual-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.visual-row figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #efe3d3;
  box-shadow: 0 18px 42px rgba(52, 35, 20, .10);
  aspect-ratio: 4 / 3;
}

.visual-row img,
.visual-row video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.07) saturate(.9);
}

.visual-row .photo-interior {
  object-position: center;
}

.visual-row .photo-service-close {
  object-position: 58% center;
  filter: brightness(1.08) contrast(1.08) saturate(.86);
}

.visual-row .photo-service-wide {
  object-position: center 38%;
  filter: brightness(1.07) contrast(1.09) saturate(.84);
}

.visual-row figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 243, .9);
  color: #34342f;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(34, 35, 31, .12);
}

.services {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  background: #26352f;
  color: #fff8ed;
}

.services p, .services .eyebrow { color: #e7cab0; }

.services .section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: rgba(255, 250, 243, .22);
  border: 1px solid rgba(255, 250, 243, .22);
}

.service-list.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 240px;
  padding: 28px;
  background: #2f4139;
}

.service-index {
  color: #d59757;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 42px;
  color: #fff;
}

.service-card p {
  color: #dccdbb;
}

.sticky {
  position: sticky;
  top: 104px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--accent-dark);
}

.timeline span {
  color: var(--muted);
  line-height: 1.75;
}

.checker {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  background: #f0e2d2;
}

.checker .section-heading,
.checker-layout {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.checker-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  gap: 24px;
}

.check-form,
.check-result,
.price-table,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .86);
  border-radius: 8px;
}

.check-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.check-form label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}

.check-form input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.check-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--moss);
  font-weight: 900;
  cursor: pointer;
}

.check-result {
  padding: 24px;
}

.check-result span {
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.price-table {
  overflow: hidden;
}

.price-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--accent-dark);
  font-weight: 900;
  white-space: nowrap;
}

.training-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.training-strip div {
  width: min(900px, 100%);
}

.seo-links {
  border-top: 1px solid var(--line);
}

.seo-links .section-heading,
.link-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.link-grid a {
  display: grid;
  gap: 8px;
  min-height: 140px;
  padding: 22px;
  background: rgba(255, 250, 243, .9);
}

.link-grid strong {
  color: var(--accent-dark);
  font-size: 20px;
}

.link-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.sub-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(48px, 7vw, 84px);
}

.sub-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.08;
}

.sub-hero p {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 23px);
}

.content-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.content-photo-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: brightness(1.06) contrast(1.07) saturate(.88);
  box-shadow: var(--shadow);
}

.content-block {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.info-list,
.step-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.info-list div,
.step-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 250, 243, .9);
}

.info-list strong,
.step-list strong {
  color: var(--accent-dark);
  font-size: 20px;
}

.info-list span,
.step-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.step-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-list span {
  color: var(--gold);
  font-weight: 900;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  background: #22231f;
  color: #fff7ec;
}

footer p {
  margin: 6px 0 0;
  color: #d6c8b8;
}

footer a {
  color: #e5a561;
  font-weight: 800;
}

.dashboard-body {
  background: #f5efe5;
}

.dashboard-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding: 22px 0 26px;
}

.dashboard-top h1 {
  font-size: clamp(42px, 7vw, 78px);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric,
.panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .9);
}

.metric {
  padding: 20px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.metric strong {
  font-size: 32px;
}

.panel {
  margin-top: 16px;
  padding: 20px;
  overflow-x: auto;
}

.panel h2 {
  font-size: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  padding: 13px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--accent-dark);
  font-size: 13px;
}

.status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eee2d4;
  color: #6c3a1c;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section-grid,
  .checker-layout,
  .location {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-photo-panel {
    min-height: 360px;
  }

  .hero-photo-panel img {
    min-height: 360px;
  }

  .quick-facts,
  .service-list,
  .service-list.three,
  .visual-row,
  .concern-grid,
  .link-grid,
  .content-photo-grid,
  .step-list,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .concern-grid article {
    min-height: auto;
  }

  .concern-grid strong {
    margin-top: 24px;
  }

  .visual-row figure {
    aspect-ratio: 16 / 11;
  }

  .sticky {
    position: static;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-table div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-table span {
    white-space: normal;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section-band,
  .section-grid {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 58px;
  }

  .photo-hero,
  .photo-hero img {
    min-height: 460px;
  }

  .visual-row figcaption {
    position: static;
    border-left: 0;
    box-shadow: none;
  }
}
