:root {
  --ink: #443b37;
  --muted: #756a64;
  --cream: #f8f5f0;
  --paper: #fffdf9;
  --rose: #ad8f83;
  --rose-dark: #826b62;
  --sage: #aab3a2;
  --line: #e7ded7;
  --white: #fff;
  --shadow: 0 18px 50px rgba(80, 64, 55, 0.09);
  --radius: 28px;
  --serif: "Noto Serif TC", "Songti TC", serif;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.85;
  letter-spacing: 0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.narrow {
  width: min(790px, calc(100% - 40px));
  margin: auto;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px;
  z-index: 100;
}
.top-note {
  font-size: 13px;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 6px 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 222, 215, 0.8);
}
.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand strong {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 5px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--rose-dark);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--rose-dark);
  color: white;
  border: 1px solid var(--rose-dark);
  font-weight: 600;
  transition: 0.2s;
}
.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(130, 107, 98, 0.2);
}
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rose);
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  padding: 8px;
}
.hero {
  min-height: 650px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbf7f2 0%, #f3ece6 52%, #eef1ea 100%);
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero:before {
  width: 430px;
  height: 430px;
  background: rgba(255, 255, 255, 0.58);
  right: -80px;
  top: 70px;
}
.hero:after {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(130, 107, 98, 0.25);
  right: 13%;
  bottom: -140px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--rose-dark);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px;
}
.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 0 22px;
}
.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-art {
  height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.arch {
  width: 78%;
  height: 100%;
  border-radius: 200px 200px 24px 24px;
  background: linear-gradient(
    160deg,
    rgba(173, 143, 131, 0.72),
    rgba(170, 179, 162, 0.45)
  );
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  padding: 40px;
}
.arch strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.arch span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.28em;
  margin-top: 16px;
}
.leaf {
  position: absolute;
  width: 110px;
  height: 210px;
  border: 1px solid rgba(68, 59, 55, 0.28);
  border-radius: 100% 0 100% 0;
  transform: rotate(20deg);
  right: 2%;
  top: 15%;
}
.leaf:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 190px;
  background: rgba(68, 59, 55, 0.24);
  transform: rotate(-28deg);
  left: 38px;
  top: 5px;
}
.section {
  padding: 100px 0;
}
.section.soft {
  background: var(--cream);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.section-head h2,
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin: 0;
}
.section-head p {
  max-width: 580px;
  color: var(--muted);
  margin: 0;
}
.kicker {
  color: var(--rose-dark);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.15em;
}
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 18px 0 10px;
}
.card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}
.text-link {
  font-size: 13px;
  color: var(--rose-dark);
  font-weight: 700;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.visual-panel {
  min-height: 460px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #d9c8be, #aab3a2);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.visual-panel:before {
  content: "1987";
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--serif);
  font-size: 92px;
  color: rgba(255, 255, 255, 0.18);
}
.visual-panel p {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.6;
  margin: 0;
}
.feature-list {
  display: grid;
  gap: 18px;
}
.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
}
.feature i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eee5df;
  display: grid;
  place-items: center;
  font-style: normal;
  color: var(--rose-dark);
}
.feature h3 {
  margin: 2px 0 5px;
  font-size: 17px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.quote {
  padding: 75px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  text-align: center;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 850px;
}
.quote small {
  color: #d9cec8;
  letter-spacing: 0.15em;
}
.price-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.price-box {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child {
  border: 0;
}
.price-row span:last-child {
  white-space: nowrap;
  font-weight: 600;
}
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.info-strip > div {
  padding: 26px 30px;
  background: #fff;
}
.info-strip > div + div {
  border-left: 1px solid var(--line);
}
.info-strip small {
  display: block;
  color: var(--rose-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.info-strip strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.page-hero {
  padding: 115px 0 75px;
  background: linear-gradient(135deg, #f8f3ef, #eef1ea);
  text-align: center;
}
.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}
.breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.prose {
  font-size: 16px;
}
.prose h2 {
  margin: 58px 0 20px;
}
.prose h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 35px 0 10px;
}
.prose p {
  color: #5f5550;
}
.notice {
  background: #f4eee9;
  border-left: 3px solid var(--rose);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}
.service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.meta-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(80, 64, 55, 0.06);
}
.meta-card small {
  color: var(--muted);
  display: block;
}
.meta-card strong {
  font-family: var(--serif);
  font-size: 18px;
}
.price-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.price-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.price-group h2,
.price-group h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 15px;
  font-size: 26px;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
th,
td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
th {
  background: #f1ebe6;
  font-size: 13px;
  color: var(--rose-dark);
}
td:last-child,
th:last-child {
  text-align: right;
  white-space: nowrap;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 20px 24px;
  border: 0;
  background: none;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-item.open button span:last-child {
  transform: rotate(45deg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.post-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  background: #fff;
}
.post-card time {
  font-size: 12px;
  color: var(--rose-dark);
}
.post-card h2,
.post-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}
.post-card p {
  color: var(--muted);
  font-size: 14px;
}
.post-meta {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}
.cta-section {
  padding: 80px 0;
  background: #e8ded7;
}
.cta-box {
  text-align: center;
}
.cta-box h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 12px;
}
.cta-box p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 650px;
}
.site-footer {
  padding: 60px 0 95px;
  background: var(--ink);
  color: #eee7e2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.12em;
}
.site-footer p,
.site-footer a {
  color: #cfc4be;
  font-size: 14px;
}
.footer-links {
  display: grid;
  gap: 7px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-top: 42px;
  font-size: 12px;
  color: #aa9e98;
}
.mobile-bar {
  display: none;
}
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    min-height: auto;
    padding: 85px 0;
  }
  .hero-grid,
  .two-col,
  .price-preview {
    grid-template-columns: 1fr;
  }
  .hero-art {
    height: 340px;
    order: -1;
  }
  .arch {
    width: 68%;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 75px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-meta {
    grid-template-columns: 1fr;
  }
  .price-groups {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .container,
  .narrow {
    width: min(100% - 30px, 1120px);
  }
  .top-note {
    font-size: 11px;
  }
  .nav-wrap {
    height: 66px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand small {
    display: none;
  }
  .nav {
    top: 66px;
  }
  .hero {
    padding: 58px 0;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-art {
    height: 275px;
  }
  .arch {
    width: 74%;
  }
  .arch strong {
    font-size: 28px;
  }
  .leaf {
    height: 150px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 15px;
  }
  .actions .btn {
    width: 100%;
  }
  .cards,
  .blog-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }
  .info-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .section {
    padding: 58px 0;
  }
  .two-col {
    gap: 38px;
  }
  .visual-panel {
    min-height: 350px;
    padding: 30px;
  }
  .visual-panel p {
    font-size: 24px;
  }
  .quote {
    padding: 45px 22px;
  }
  .price-groups {
    gap: 14px;
  }
  .price-group {
    padding: 22px 18px;
  }
  .page-hero {
    padding: 80px 0 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .site-footer {
    padding-bottom: 110px;
  }
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 9px 12px;
    gap: 8px;
  }
  .mobile-bar a {
    min-height: 44px;
    font-size: 13px;
  }
  .mobile-bar .secondary {
    background: #fff;
  }
  .cta-box h2 {
    font-size: 32px;
  }
  .service-meta {
    margin-top: 24px;
  }
  .table-wrap {
    margin: 0 -15px;
  }
  th,
  td {
    padding: 12px 15px;
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.hero-line {
  white-space: nowrap;
}
.services-heading {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}
.services-title {
  white-space: nowrap;
}
.services-intro {
  display: grid;
  max-width: none !important;
  margin: 0 !important;
}
.services-intro-line {
  white-space: nowrap;
}
.quote-indent {
  display: inline-block;
  padding-left: 2em;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .services-title {
    font-size: clamp(25px, 6vw, 38px);
  }
  .services-intro-line {
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .quote-indent {
    padding-left: 0;
  }
}

/* Brand photography */
.brand {
  position: relative;
  width: 190px;
  height: 60px;
  flex: 0 0 190px;
  overflow: hidden;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/eelin-logo.png") center center / 430px auto
    no-repeat;
}
.brand strong,
.brand small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.hero-art {
  border-radius: 200px 200px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-care-panel {
  background:
    linear-gradient(180deg, rgba(39, 31, 28, 0.06), rgba(39, 31, 28, 0.7)),
    url("../images/treatment-room-private.jpg") center / cover no-repeat;
}
.home-care-panel::before {
  content: none;
}
.home-care-panel p {
  font-size: 27px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.photo-card,
.portrait-photo,
.service-photo,
.location-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.photo-card {
  min-height: 300px;
}
.photo-card img,
.service-photo img,
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-photo {
  height: 650px;
}
.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.service-photo,
.location-photo {
  min-height: 430px;
}
.facial-intro {
  align-items: stretch;
}
.closed-note {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
}
.line-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #63775f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
}
.line-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(99, 119, 95, 0.22);
}
@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .photo-card {
    min-height: 360px;
  }
  .portrait-photo {
    height: 720px;
    order: -1;
  }
}
@media (max-width: 600px) {
  .home-care-panel p {
    font-size: 20px;
  }
  .brand {
    width: 145px;
    height: 54px;
    flex-basis: 145px;
  }
  .brand::before {
    background-size: 350px auto;
  }
  .photo-card {
    min-height: 245px;
  }
  .portrait-photo {
    height: 520px;
  }
  .service-photo,
  .location-photo {
    min-height: 300px;
  }
}
