:root {
  --paper: #fbf9f5;
  --paper-deep: #f3eee6;
  --cream: #eadcc8;
  --sand: #d8c2a5;
  --sage: #91a69a;
  --sage-deep: #587064;
  --sky: #88a5b2;
  --ink: #403a34;
  --ink-soft: #6f675f;
  --line: rgba(64, 58, 52, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(66, 57, 48, 0.09);
  --shadow-soft: 0 10px 30px rgba(66, 57, 48, 0.07);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1160px;
  --font-serif: "Noto Serif TC", "Songti TC", "PMingLiU", Georgia, serif;
  --font-sans: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 220, 200, 0.62), transparent 25%),
    radial-gradient(circle at 88% 28%, rgba(145, 166, 154, 0.18), transparent 24%),
    linear-gradient(180deg, #fdfcf9 0%, var(--paper) 46%, #f7f3ed 100%);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 10vw, 124px);
}

.section--compact {
  padding-block: clamp(54px, 7vw, 84px);
}

.section--tint {
  background: rgba(234, 220, 200, 0.32);
  border-block: 1px solid var(--line);
}

.section--sage {
  background: var(--sage-deep);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section--sage .eyebrow {
  color: #dce8e1;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.95;
}

.section--sage .lead,
.section--sage .muted {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--ink-soft);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  border-bottom: 1px solid rgba(64, 58, 52, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 78px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: 50% 24%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand__text {
  display: grid;
  line-height: 1.3;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand__sub {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.nav__links {
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a:not(.button) {
  position: relative;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav__links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__links a[aria-current="page"] {
  color: var(--ink);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 5px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--sage-deep);
  box-shadow: 0 10px 24px rgba(88, 112, 100, 0.2);
}

.button--primary:hover {
  box-shadow: 0 15px 30px rgba(88, 112, 100, 0.28);
}

.button--light {
  color: var(--sage-deep);
  background: var(--white);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(64, 58, 52, 0.24);
}

.button--small {
  min-height: 42px;
  padding: 8px 17px;
  font-size: 0.82rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(62px, 9vw, 116px) clamp(76px, 11vw, 138px);
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(88, 112, 100, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(88, 112, 100, 0.035),
    0 0 0 104px rgba(136, 165, 178, 0.03);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

.hero__copy {
  max-width: 720px;
}

.hero__title {
  font-size: clamp(2.35rem, 4.4vw, 4.05rem);
  line-height: 1.28;
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.hero__title em {
  display: block;
  color: var(--sage-deep);
  font-style: normal;
}

.hero__copy .lead {
  max-width: 660px;
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  line-height: 1.85;
}

.hero__visual {
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
}

.hero__orb {
  position: absolute;
  inset: 6% 4% 4%;
  z-index: -1;
  background: linear-gradient(140deg, rgba(234, 220, 200, 0.9), rgba(145, 166, 154, 0.2));
  border-radius: 50%;
  filter: blur(1px);
}

.hero__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(430px, 48vw, 600px);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 25px rgba(65, 54, 44, 0.12));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, 0.9) 83%, rgba(0, 0, 0, 0.55) 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, 0.9) 83%, rgba(0, 0, 0, 0.55) 90%, transparent 100%);
}

.hero__note {
  position: absolute;
  right: -10px;
  bottom: 24px;
  max-width: 215px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.55;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.metric {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.74);
}

.metric strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.metric span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.section-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card--flat {
  box-shadow: none;
}

.section--sage .card--flat {
  color: var(--ink);
}

.section--sage .card--flat .muted {
  color: #544d46;
}

.card--featured {
  background: var(--sage-deep);
  color: var(--white);
  border-color: transparent;
}

.card--featured .muted,
.card--featured .card__meta {
  color: rgba(255, 255, 255, 0.72);
}

.card__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--sage-deep);
  background: rgba(145, 166, 154, 0.14);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
}

.card__meta {
  margin-bottom: 12px;
  color: var(--sage-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--sage-deep);
  font-weight: 700;
  text-decoration: none;
}

.card__link::after {
  content: "→";
  transition: transform 180ms ease;
}

.card__link:hover::after {
  transform: translateX(4px);
}

.icon-star {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--sage-deep);
  background: rgba(145, 166, 154, 0.14);
  border-radius: 50%;
  font-size: 1.1rem;
}

.check-list,
.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li,
.plain-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  position: absolute;
  top: 0.02em;
  left: 0;
  color: var(--sage-deep);
  content: "✓";
  font-weight: 800;
}

.plain-list li::before {
  position: absolute;
  top: 0.7em;
  left: 4px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--sage);
  border-radius: 50%;
}

.price-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.price {
  margin-block: 10px 18px;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1;
}

.price small {
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 400;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding: 0 0 34px 76px;
  counter-increment: step;
}

.step:not(:last-child)::before {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 23px;
  width: 1px;
  content: "";
  background: var(--line);
}

.step::after {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  content: counter(step, decimal-leading-zero);
  color: var(--sage-deep);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.9rem;
}

.testimonial {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial blockquote {
  margin: 0 0 26px;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  line-height: 1.9;
}

.testimonial footer {
  padding-top: 16px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.testimonial footer a {
  color: var(--sage-deep);
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.profile__image-wrap {
  position: relative;
}

.profile__image-wrap::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  content: "";
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.profile__image {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-mark {
  margin-bottom: 18px;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--sage-deep);
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq__answer {
  max-width: 760px;
  padding: 0 48px 22px 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 116px);
  background: rgba(234, 220, 200, 0.32);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: 18%;
  right: 7%;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(88, 112, 100, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(88, 112, 100, 0.035);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.notice {
  padding: 18px 22px;
  color: var(--ink-soft);
  background: rgba(136, 165, 178, 0.1);
  border: 1px solid rgba(136, 165, 178, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.notice strong {
  color: var(--ink);
}

.data-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
}

.data-table th,
.data-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  width: 34%;
  background: rgba(234, 220, 200, 0.3);
  font-weight: 700;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 6vw, 64px);
  overflow: hidden;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  top: -90px;
  right: 7%;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.site-footer {
  padding-block: 58px 28px;
  background: #343b37;
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 46px;
}

.footer__brand {
  max-width: 420px;
}

.footer__title {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li + li {
  margin-top: 8px;
}

.footer__links a {
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.floating-line {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #587064;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(52, 59, 55, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.floating-line:hover {
  transform: translateY(-3px);
}

:focus-visible {
  outline: 3px solid rgba(136, 165, 178, 0.62);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    background: rgba(251, 249, 245, 0.98);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease;
  }

  .nav__links[data-open="true"] {
    max-height: 440px;
    padding: 12px 20px 22px;
    border-bottom-color: var(--line);
    opacity: 1;
  }

  .nav__links li {
    border-bottom: 1px solid var(--line);
  }

  .nav__links li:last-child {
    padding-top: 14px;
    border-bottom: 0;
  }

  .nav__links a:not(.button) {
    display: block;
    padding-block: 13px;
  }

  .nav__links .button {
    width: 100%;
  }

  .hero__grid,
  .price-panel,
  .profile {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__visual {
    width: min(100%, 380px);
  }

  .hero__note {
    right: 0;
  }

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

  .profile__image-wrap {
    max-width: 560px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 68px;
  }

  .brand__sub {
    display: none;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__grid {
    gap: 48px;
  }

  .hero__note {
    position: static;
    margin: -10px auto 0;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    display: flex;
    gap: 12px;
    align-items: baseline;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    margin-top: 16px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .page-hero::after {
    right: -120px;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--line);
  }

  .data-table th {
    padding-bottom: 5px;
    border-bottom: 0;
  }

  .data-table td {
    padding-top: 5px;
  }

  .cta-panel {
    padding: 34px 26px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    display: block;
  }

  .floating-line {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* About and policy pages */
.nav-wrap {
  display: flex;
  min-height: 78px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.nav-wrap .brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: 50% 24%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-wrap .brand span {
  display: grid;
  line-height: 1.3;
}

.nav-wrap .brand strong {
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
}

.nav-wrap .brand small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"] {
  color: var(--sage-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--ink);
}

.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;
}

.button-small {
  padding: 10px 18px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 999px;
}

.section-soft {
  background: rgba(234, 220, 200, 0.32);
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 96px);
}

.align-center {
  align-items: center;
}

.center {
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.text-link {
  color: var(--sage-deep);
  font-weight: 700;
  text-decoration: none;
}

.portrait-card {
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.portrait-card img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: calc(var(--radius-lg) - 8px);
}

.portrait-card figcaption {
  padding: 16px 8px 5px;
  font-family: var(--font-serif);
  font-weight: 700;
}

.portrait-card figcaption small {
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 400;
}

.large-copy {
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
  line-height: 2;
}

.top-gap {
  margin-top: 54px;
}

.value-grid {
  display: grid;
  gap: 20px;
}

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

.value-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}

.section-sage {
  padding-block: clamp(72px, 10vw, 124px);
  background: #e7eee9;
  border-block: 1px solid rgba(88, 112, 100, 0.18);
}

.logo-showcase {
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.logo-showcase img {
  width: 100%;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose section + section {
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.link-panel {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.link-panel p {
  margin-bottom: 0;
}

.stack-links {
  display: grid;
  gap: 10px;
  white-space: nowrap;
}

.cta-section {
  padding-top: 20px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  color: var(--white);
  background: var(--sage-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-card .eyebrow {
  color: #dce8e1;
}

.cta-card h2 {
  margin-bottom: 10px;
}

.cta-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 48px;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-brand span {
  display: grid;
}

.footer-grid a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(40px, 7vw, 90px);
  justify-content: center;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  height: fit-content;
  gap: 9px;
  padding: 24px;
  background: var(--paper-deep);
  border-radius: var(--radius-sm);
}

.legal-nav strong {
  margin-bottom: 8px;
}

.legal-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.legal-content section {
  scroll-margin-top: 110px;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.meta-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.not-found {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding-block: 60px;
}

.not-found img {
  margin: 0 auto 28px;
  border-radius: 50%;
}

/* Booking and private administration */
.page-hero--compact {
  min-height: auto;
  padding-block: clamp(70px, 10vw, 112px) clamp(48px, 7vw, 76px);
}

.booking-section {
  padding-top: 28px;
}

.booking-tabs,
.admin-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.booking-tabs button,
.admin-filters button {
  padding: 13px 18px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
}

.booking-tabs button[aria-selected="true"],
.admin-filters button[aria-pressed="true"] {
  color: var(--ink);
  font-weight: 700;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.booking-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 40px;
  align-items: end;
  padding: clamp(28px, 6vw, 54px);
  background: linear-gradient(135deg, rgba(234, 220, 200, 0.5), rgba(145, 166, 154, 0.16));
  border-bottom: 1px solid var(--line);
}

.form-heading h2,
.form-heading p {
  margin-bottom: 0;
}

.booking-form {
  padding: clamp(26px, 6vw, 54px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-grid > label,
.form-grid fieldset,
.admin-record__controls label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input:not([type="radio"]):not([type="checkbox"]),
.form-grid select,
.form-grid textarea,
.admin-record__controls select,
.admin-record__controls textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(64, 58, 52, 0.24);
  border-radius: 10px;
  outline: 0;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.admin-record__controls select:focus,
.admin-record__controls textarea:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(88, 112, 100, 0.14);
}

.form-grid textarea,
.admin-record__controls textarea {
  resize: vertical;
}

.form-grid fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.form-grid legend {
  padding-inline: 6px;
  font-weight: 700;
}

.form-grid small,
.admin-record__controls label {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 400;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.choice-row label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 400;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px;
  background: var(--paper-deep);
  border-radius: 12px;
}

.consent-row input {
  margin-top: 7px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  min-height: 0;
  margin: 18px 0;
  padding: 0;
  border-radius: 10px;
}

.form-status:not(:empty) {
  padding: 14px 16px;
}

.form-status[data-state="success"] {
  color: #315b44;
  background: #e5f1e9;
}

.form-status[data-state="error"] {
  color: #7a3a33;
  background: #f8e7e3;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.admin-main {
  min-height: calc(100vh - 78px);
}

.admin-login {
  max-width: 660px;
  margin-inline: auto;
  padding: clamp(30px, 6vw, 54px);
}

.admin-login h1,
.admin-toolbar h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.admin-toolbar {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-toolbar h1 {
  margin-bottom: 0;
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-record {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.admin-record__heading {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-record__heading h3 {
  margin: 0;
}

.admin-record__heading time {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.admin-record__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
}

.admin-record__row span {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.admin-record__controls {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(260px, 1fr);
  gap: 16px;
  align-items: end;
  margin-top: 24px;
  padding-top: 20px;
}

.admin-record__controls .button {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav .button {
    width: 100%;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav-wrap .brand small {
    display: none;
  }

  .hero-actions,
  .link-panel,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-card .button {
    width: 100%;
  }

  .stack-links {
    white-space: normal;
  }

  .footer-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .legal-nav {
    position: static;
  }

  .form-heading,
  .form-grid,
  .admin-record__controls {
    grid-template-columns: 1fr;
  }

  .form-grid__wide,
  .admin-record__controls .button {
    grid-column: auto;
  }

  .booking-tabs,
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    width: 100%;
  }

  .admin-toolbar,
  .admin-record__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-record__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* Editorial article */
.article-hero {
  position: relative;
  padding-block: clamp(68px, 10vw, 118px);
  overflow: hidden;
}

.article-hero::after {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(88, 112, 100, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(234, 220, 200, 0.2),
    0 0 0 108px rgba(145, 166, 154, 0.07);
}

.article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
}

.article-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.article-breadcrumb a {
  text-decoration: none;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 6vw, 4.55rem);
  line-height: 1.3;
}

.article-deck {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  line-height: 1.95;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 24px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.article-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(42px, 7vw, 88px);
  justify-content: center;
  padding-block: clamp(70px, 10vw, 120px);
}

.article-toc {
  position: sticky;
  top: 108px;
  display: grid;
  height: fit-content;
  gap: 9px;
  padding: 24px;
  background: rgba(234, 220, 200, 0.38);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-toc strong {
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.article-toc a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--sage-deep);
}

.article-body {
  min-width: 0;
}

.article-body section {
  scroll-margin-top: 108px;
}

.article-body section + section {
  padding-top: clamp(54px, 8vw, 82px);
  margin-top: clamp(54px, 8vw, 82px);
  border-top: 1px solid var(--line);
}

.article-opening {
  margin-bottom: clamp(64px, 9vw, 94px);
  padding-left: 24px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 2.2vw, 1.48rem);
  line-height: 2;
  border-left: 3px solid var(--sage);
}

.article-body h2 {
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.article-body h3 {
  font-size: clamp(1.18rem, 2vw, 1.42rem);
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 2;
}

.article-body p + p {
  margin-top: 18px;
}

.article-body ul {
  padding-left: 1.35em;
}

.article-callout {
  margin-top: 34px;
  padding: clamp(25px, 4vw, 36px);
  background: #e7eee9;
  border: 1px solid rgba(88, 112, 100, 0.2);
  border-radius: var(--radius-md);
}

.article-callout strong {
  display: block;
  margin-bottom: 9px;
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-size: 1.16rem;
}

.article-callout p {
  margin-bottom: 0;
}

.article-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-block: 34px 20px;
}

.article-step {
  padding: 26px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-step > span {
  display: block;
  margin-bottom: 18px;
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.article-step p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.85;
}

.article-caption {
  font-size: 0.86rem !important;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-block: 36px 26px;
}

.comparison-card {
  padding: clamp(26px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.comparison-card--classical {
  background: #e7eee9;
  border-color: rgba(88, 112, 100, 0.24);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 12px;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(88, 112, 100, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.comparison-card ul {
  margin-bottom: 0;
}

.comparison-card li {
  font-size: 0.96rem;
  line-height: 1.8;
}

.article-note {
  padding: 22px 24px;
  color: var(--ink) !important;
  background: var(--paper-deep);
  border-radius: var(--radius-sm);
}

.article-faq details {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.article-faq summary::-webkit-details-marker {
  display: none;
}

.article-faq summary::after {
  color: var(--sage-deep);
  content: "＋";
  font-family: var(--font-sans);
  font-size: 1.3rem;
}

.article-faq details[open] summary::after {
  content: "－";
}

.article-faq details p {
  margin: 16px 0 0;
}

.article-sources {
  padding: clamp(28px, 5vw, 42px);
  background: rgba(234, 220, 200, 0.32);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-sources h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.article-sources .meta-note {
  font-size: 0.86rem;
}

.article-author {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: clamp(56px, 8vw, 82px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-author img {
  border: 1px solid var(--line);
  border-radius: 50%;
}

.article-author h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.article-author p {
  font-size: 0.96rem;
}

.article-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: clamp(36px, 7vw, 80px);
  align-items: center;
  padding: clamp(36px, 6vw, 68px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(234, 220, 200, 0.72), rgba(145, 166, 154, 0.24));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.article-feature::after {
  position: absolute;
  right: -70px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(88, 112, 100, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.16);
}

.article-feature > * {
  position: relative;
  z-index: 1;
}

.article-feature h2 {
  max-width: 740px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.article-feature__aside {
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
}

.article-feature__aside strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.article-feature__aside p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc strong {
    grid-column: 1 / -1;
  }

  .article-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-hero::after {
    right: -250px;
  }

  .article-hero h1 br {
    display: none;
  }

  .article-meta {
    display: grid;
  }

  .article-toc,
  .article-steps,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .article-toc strong {
    grid-column: auto;
  }

  .article-opening {
    padding-left: 18px;
  }

  .article-author {
    grid-template-columns: 1fr;
  }
}
