:root {
  --paper: #f7f4ee;
  --paper-2: #efe9df;
  --ink: #20241f;
  --muted: #667063;
  --line: #d8d0c4;
  --green: #2f6f5e;
  --green-dark: #214f43;
  --clay: #9b5f38;
  --gold: #c79a45;
  --white: #fffdfa;
  --shadow: 0 18px 50px rgba(34, 40, 33, .12);
}

* {
  box-sizing: border-box;
}

main,
section,
article,
div,
header,
footer,
nav,
figure,
img {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.trial-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px clamp(18px, 4vw, 54px);
  color: #fff8e8;
  background: #2b4f43;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.trial-banner strong {
  flex: 0 0 auto;
  color: #f2cf83;
  font-weight: 900;
}

.trial-banner span {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 244, 238, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px clamp(10px, 1.3vw, 16px);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav a:hover,
.line-link {
  color: var(--green-dark);
}

.site-nav .line-link {
  padding: 6px 10px;
  border: 1px solid rgba(47, 111, 94, .22);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(47, 111, 94, .08);
  font-weight: 900;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 68px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1f2f29;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 26, 20, .78), rgba(13, 26, 20, .28) 52%, rgba(13, 26, 20, .62));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-width: 920px;
  padding: clamp(80px, 14vw, 150px) clamp(20px, 7vw, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f0c978;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7.2vw, 82px);
  line-height: 1.08;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 56px);
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.hero-copy p {
  max-width: 680px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font: inherit;
  background: rgba(255, 255, 255, .12);
  color: inherit;
  cursor: pointer;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #1f241c;
}

.button.text {
  border-color: transparent;
  background: transparent;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  margin-left: 6px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 64px);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-note span,
.tag {
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(26, 35, 29, .38);
  font-size: 13px;
  font-weight: 800;
}

.hero-decision-card {
  width: min(360px, calc(100% - 36px));
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 250, .22);
  border-radius: 8px;
  background: rgba(20, 29, 24, .62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
}

.hero-decision-card strong {
  color: #f0c978;
  font-size: 22px;
  line-height: 1.2;
}

.hero-decision-card a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 253, 250, .16);
  color: rgba(255, 253, 250, .86);
  font-weight: 900;
  text-decoration: none;
}

.hero-decision-card a span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-color: rgba(240, 201, 120, .42);
  color: #f0c978;
  background: rgba(240, 201, 120, .12);
}

.section {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p {
  font-size: 18px;
}

.fit-section {
  background: var(--paper-2);
}

.fit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.fit-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.fit-card h3 {
  max-width: 720px;
  font-size: clamp(25px, 3vw, 34px);
}

.fit-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.fit-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.fit-card .tag {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.fit-card.not-fit {
  background: #f4eee6;
}

.fit-card.not-fit .tag {
  background: var(--clay);
  border-color: var(--clay);
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.route-strip a {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 20px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.route-strip a:last-child {
  border-right: 0;
}

.route-strip span {
  color: var(--clay);
  font-size: 14px;
  font-weight: 900;
}

.route-strip strong {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
}

.experience-section {
  background: var(--ink);
  color: var(--white);
}

.experience-section .section-head {
  text-align: left;
  margin-left: 0;
}

.experience-section .section-head p {
  color: rgba(255, 253, 250, .72);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 250, .18);
  border: 1px solid rgba(255, 253, 250, .18);
}

.experience-grid article {
  min-height: 300px;
  padding: 26px;
  background: #20241f;
}

.experience-grid h3,
.private-card h3 {
  font-size: 24px;
}

.experience-grid p {
  color: rgba(255, 253, 250, .72);
}

.number {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--gold);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
}

.split.reverse .feature-image {
  order: -1;
}

.section-copy {
  max-width: 650px;
}

.section-copy p,
.plan-body p,
.section-note,
.booking-section p {
  color: var(--muted);
  font-size: 17px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-stack img,
.feature-image,
.plan-card img,
.photo-grid img,
.booking-section img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.plan-card,
details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.plan-body {
  padding: 22px;
}

.plan-body .tag {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.price-list,
.value-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.notice-row p,
.section-note,
.line-box {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.dining-section,
.faq-section,
.private-section,
.deep-reading-section,
.journal-entry-section {
  background: var(--paper-2);
}

.journal-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.journal-count {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.journal-entry-panel h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.journal-entry-panel p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.deep-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.deep-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.deep-card.featured {
  grid-column: span 2;
}

.deep-card.compact {
  grid-column: span 3;
}

.deep-card img {
  height: 230px;
  object-fit: cover;
}

.deep-card.compact img {
  height: 200px;
}

.deep-card div {
  padding: 22px;
}

.deep-card .tag {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.deep-card p {
  color: var(--muted);
}

.private-layout {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 14px;
}

.private-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.private-card:first-child {
  background: #e7efe7;
}

.private-card p {
  color: var(--muted);
}

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

figure {
  margin: 0;
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.rule-list {
  margin: 0;
  padding: 22px 22px 22px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rule-list li {
  margin-bottom: 10px;
}

.value-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: linear-gradient(rgba(32, 36, 31, .86), rgba(32, 36, 31, .86)), url("assets/images/faq-rules-camp.jpg") center / cover;
  color: var(--white);
}

.faq-hero h1 {
  max-width: 860px;
}

.faq-hero p:not(.eyebrow),
.faq-hero-note span {
  max-width: 760px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.faq-hero .button {
  color: var(--white);
}

.faq-hero .button.primary {
  color: #1f241c;
}

.faq-hero-note {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 250, .2);
  border-radius: 8px;
  background: rgba(255, 253, 250, .08);
}

.faq-hero-note strong {
  color: #f0c978;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.faq-nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-nav a {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.faq-nav a:last-child {
  border-right: 0;
}

.faq-topic.alternate,
.faq-cta {
  background: var(--paper-2);
}

.faq-topic-head {
  max-width: 880px;
  margin: 0 0 28px;
}

.faq-topic-head h2 {
  max-width: 820px;
}

.faq-topic-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.faq-list details {
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.faq-list summary {
  font-size: 18px;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .4fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.faq-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.inquiry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: linear-gradient(rgba(32, 36, 31, .82), rgba(32, 36, 31, .82)), url("assets/images/inquiry-cloud-sea.jpg") center / cover;
  color: var(--white);
}

.inquiry-hero h1 {
  max-width: 900px;
}

.inquiry-hero p:not(.eyebrow),
.inquiry-note span {
  max-width: 760px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.inquiry-hero .button {
  color: var(--white);
}

.inquiry-hero .button.primary {
  color: #1f241c;
}

.inquiry-note,
.template-card,
.reminder-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.inquiry-note {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-color: rgba(255, 253, 250, .2);
  background: rgba(255, 253, 250, .08);
}

.inquiry-note strong {
  color: #f0c978;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.inquiry-section,
.inquiry-reminder {
  background: var(--paper-2);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.field-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.field-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.field-grid p,
.template-section p,
.reminder-grid p {
  color: var(--muted);
  font-size: 17px;
}

.template-section {
  background: var(--ink);
  color: var(--white);
}

.template-section .eyebrow {
  color: #f0c978;
}

.template-section p {
  max-width: 680px;
  color: rgba(255, 253, 250, .72);
}

.template-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
}

.template-card {
  overflow: auto;
  background: #fffdfa;
}

.template-card pre {
  margin: 0;
  padding: clamp(20px, 3vw, 32px);
  color: var(--ink);
  font: 700 16px/1.85 "SFMono-Regular", Consolas, monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.copy-status {
  min-height: 28px;
  margin: 14px 0 0;
  color: #f0c978 !important;
  font-weight: 900;
}

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

.reminder-grid article {
  padding: clamp(22px, 4vw, 36px);
}

.reminder-grid h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.plans-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: linear-gradient(rgba(32, 36, 31, .82), rgba(32, 36, 31, .82)), url("assets/images/camp-weather.jpg") center / cover;
  color: var(--white);
}

.plans-hero h1 {
  max-width: 900px;
}

.plans-hero p:not(.eyebrow),
.plans-hero-note span {
  max-width: 760px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.plans-hero .button {
  color: var(--white);
}

.plans-hero .button.primary {
  color: #1f241c;
}

.plans-hero-note {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 250, .2);
  border-radius: 8px;
  background: rgba(255, 253, 250, .08);
}

.plans-hero-note strong {
  color: #f0c978;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.plans-overview,
.plan-detail-section.alternate,
.plan-inquiry-section.alternate {
  background: var(--paper-2);
}

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

.plan-compare-grid article,
.rules-mini-grid article,
.plan-inquiry-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.plan-compare-grid .tag {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.plan-compare-grid h3 {
  font-size: clamp(24px, 2.5vw, 30px);
}

.plan-compare-grid p,
.plan-detail p,
.rules-mini-grid p,
.plan-inquiry-section p,
.plan-inquiry-card li {
  color: var(--muted);
  font-size: 17px;
}

.plan-detail {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.plan-detail.reverse img {
  order: 2;
}

.plan-detail img {
  min-height: 460px;
  height: 60vh;
  max-height: 700px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-list.large {
  max-width: 720px;
  margin: 24px 0;
}

.price-list.large li {
  font-size: 18px;
}

.plan-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-facts span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.plan-rules-strip {
  background: var(--ink);
  color: var(--white);
}

.plan-rules-strip .section-head {
  text-align: left;
  margin-left: 0;
}

.plan-rules-strip .eyebrow {
  color: #f0c978;
}

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

.rules-mini-grid article {
  background: rgba(255, 253, 250, .08);
  border-color: rgba(255, 253, 250, .16);
}

.rules-mini-grid p {
  color: rgba(255, 253, 250, .72);
}

.plan-inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.plan-inquiry-section h2 {
  max-width: 820px;
}

.plan-inquiry-section p {
  max-width: 760px;
}

.plan-inquiry-card ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0;
}

.dining-weekday-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: linear-gradient(rgba(32, 36, 31, .78), rgba(32, 36, 31, .86)), url("assets/images/dining-stew.jpg") center / cover;
  color: var(--white);
}

.dining-weekday-hero h1 {
  max-width: 900px;
}

.dining-weekday-hero p:not(.eyebrow),
.dining-weekday-note span {
  max-width: 760px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.dining-weekday-hero .button {
  color: var(--white);
}

.dining-weekday-hero .button.primary {
  color: #1f241c;
}

.dining-weekday-note {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 250, .2);
  border-radius: 8px;
  background: rgba(255, 253, 250, .08);
}

.dining-weekday-note strong {
  color: #f0c978;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.dining-weekday-intro,
.dining-weekday-rules {
  background: var(--paper-2);
}

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

.dining-story-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.dining-story-grid img {
  height: 340px;
  object-fit: cover;
}

.dining-story-grid div {
  padding: clamp(22px, 4vw, 34px);
}

.dining-story-grid .tag {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.dining-story-grid p,
.dining-path-grid p,
.dining-weekday-rules p {
  color: var(--muted);
  font-size: 17px;
}

.dining-path-section {
  background: var(--ink);
  color: var(--white);
}

.dining-path-section .section-head {
  text-align: left;
  margin-left: 0;
}

.dining-path-section .eyebrow {
  color: #f0c978;
}

.dining-path-section .section-head p:not(.eyebrow) {
  color: rgba(255, 253, 250, .72);
}

.dining-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dining-path-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 250, .16);
  border-radius: 8px;
  background: rgba(255, 253, 250, .08);
}

.dining-path-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.dining-path-grid p {
  color: rgba(255, 253, 250, .72);
}

.dining-weekday-rules {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.dining-weekday-rules h2 {
  max-width: 820px;
}

.dining-weekday-rules p {
  max-width: 760px;
}

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

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #e7efe7;
}

.line-box {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-top: 18px;
}

.booking-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin-top: 22px;
}

.booking-route a {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(47, 111, 94, .18);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 253, 250, .74);
  font-weight: 900;
  text-decoration: none;
}

.booking-route span {
  color: var(--clay);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.article-hero img {
  min-height: 420px;
  height: 58vh;
  max-height: 640px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6.4vw, 76px);
}

.article-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.article-body {
  counter-reset: article-section;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 42px);
}

.article-body section {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-body.numbered section {
  position: relative;
}

.article-body.numbered section::before {
  counter-increment: article-section;
  content: counter(article-section, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.article-body h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.article-checklist {
  background: #e7efe7 !important;
}

.article-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.article-checklist li {
  padding: 12px 14px;
  border: 1px solid rgba(47, 111, 94, .24);
  border-radius: 8px;
  background: rgba(255, 253, 250, .68);
  font-weight: 800;
}

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

.article-gallery figure {
  overflow: hidden;
  border-radius: 8px;
}

.article-gallery img {
  height: 300px;
  object-fit: cover;
}

.article-gallery figcaption {
  padding: 10px 0 0;
}

.article-cta {
  display: grid;
  justify-items: start;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto clamp(54px, 8vw, 100px);
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.article-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.article-cta p {
  max-width: 660px;
  color: rgba(255, 253, 250, .78);
}

.article-cta .eyebrow {
  color: #f0c978;
}

.journal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.journal-hero h1 {
  max-width: 860px;
}

.journal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.journal-summary {
  padding: 24px;
  border: 1px solid rgba(255, 253, 250, .2);
  border-radius: 8px;
  background: rgba(255, 253, 250, .08);
}

.journal-summary strong {
  display: block;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
}

.journal-summary span {
  display: block;
  margin-top: 8px;
  color: #f0c978;
  font-weight: 900;
}

.journal-summary p {
  margin-bottom: 0;
  font-size: 16px !important;
}

.journal-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.journal-nav a {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 16px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.journal-nav a:last-child {
  border-right: 0;
}

.journal-nav span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.journal-nav strong {
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
}

.journal-topic:nth-of-type(odd) {
  background: var(--paper-2);
}

.featured-journal-section {
  background: var(--paper-2);
}

.featured-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.featured-journal-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.featured-journal-card .tag {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.featured-journal-card h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.featured-journal-card p {
  color: var(--muted);
}

.journal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journal-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 40, 33, .08);
}

.journal-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.journal-card h3 {
  font-size: 23px;
}

.journal-card p {
  color: var(--muted);
}

.journal-use,
.journal-related {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.journal-card .text-link {
  margin-top: auto;
}

.journal-article-link {
  width: 100%;
  margin: 10px 0 14px;
  border-color: var(--green);
  color: var(--green-dark);
  background: #e7efe7;
}

.source-note {
  background: #e7efe7 !important;
}

@media (max-width: 1100px) {
  .hero-copy {
    max-width: 720px;
  }

  .hero .hero-actions {
    max-width: 430px;
  }
}

@media (max-width: 920px) {
  .trial-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 7px 18px;
    font-size: 13px;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(47, 111, 94, .34);
    border-radius: 6px;
    color: var(--green-dark);
    background: #e7efe7;
    padding: 8px 14px;
    font: inherit;
    font-weight: 800;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .site-nav .line-link {
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .split,
  .split.reverse,
  .rules-layout,
  .booking-section,
  .plan-grid,
  .notice-row,
  .faq-grid,
  .faq-list,
  .faq-hero,
  .faq-cta,
  .inquiry-hero,
  .plans-hero,
  .field-grid,
  .template-layout,
  .reminder-grid,
  .plan-compare-grid,
  .plan-detail,
  .rules-mini-grid,
  .plan-inquiry-section,
  .dining-weekday-hero,
  .dining-story-grid,
  .dining-path-grid,
  .dining-weekday-rules,
  .fit-layout,
  .route-strip,
  .journal-entry-panel,
  .journal-hero,
  .experience-grid,
  .private-layout,
  .deep-card-grid,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .booking-route {
    grid-template-columns: 1fr;
  }

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

  .number {
    margin-bottom: 28px;
  }

  .split.reverse .feature-image {
    order: 0;
  }

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

  .journal-nav,
  .faq-nav,
  .journal-card-grid,
  .featured-journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deep-card,
  .deep-card.featured,
  .deep-card.compact {
    grid-column: auto;
  }

  .article-hero img {
    min-height: 320px;
    height: 42vh;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 690px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 78px 18px 300px;
  }

  .section-head {
    max-width: 100%;
  }

  .section-head p:not(.eyebrow) {
    width: min(100%, 310px);
    margin-right: auto;
    margin-left: auto;
  }

  h1 {
    font-size: clamp(31px, 8.9vw, 36px);
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  h2 {
    font-size: clamp(25px, 7.2vw, 28px);
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy p {
    width: min(100%, 330px);
    max-width: 100%;
    font-size: 15.5px;
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .hero-actions {
    width: min(100%, 330px);
  }

  .section-head p,
  .section-copy p,
  .plan-body p,
  .deep-card p,
  .private-card p,
  .booking-section p,
  .faq-hero p:not(.eyebrow),
  .faq-topic-head p:not(.eyebrow),
  .faq-cta p:not(.eyebrow),
  .inquiry-hero p:not(.eyebrow),
  .inquiry-note span,
  .plans-hero p:not(.eyebrow),
  .field-grid p,
  .template-section p,
  .reminder-grid p,
  .plan-compare-grid p,
  .plan-detail p,
  .rules-mini-grid p,
  .plan-inquiry-section p,
  .dining-weekday-hero p:not(.eyebrow),
  .dining-weekday-note span,
  .dining-story-grid p,
  .dining-path-grid p,
  .dining-weekday-rules p,
  details p {
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .hero-actions,
  .links {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 42px;
    white-space: normal;
    text-align: center;
  }

  .plans-hero,
  .faq-hero,
  .inquiry-hero,
  .dining-weekday-hero,
  .journal-hero {
    padding: 50px 24px 58px;
  }

  .plans-hero > div,
  .faq-hero > div,
  .inquiry-hero > div,
  .dining-weekday-hero > div,
  .journal-hero > div,
  .inquiry-note,
  .plans-hero-note,
  .faq-hero-note {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .plans-hero h1,
  .faq-hero h1,
  .inquiry-hero h1,
  .dining-weekday-hero h1,
  .journal-hero h1 {
    font-size: clamp(30px, 8.4vw, 34px);
  }

  .plans-hero p:not(.eyebrow),
  .faq-hero p:not(.eyebrow),
  .inquiry-hero p:not(.eyebrow),
  .dining-weekday-hero p:not(.eyebrow),
  .journal-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .plans-hero-note,
  .inquiry-note,
  .faq-hero-note {
    padding: 18px;
  }

  .plans-hero-note strong,
  .faq-hero-note strong {
    font-size: 26px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
  }

  .hero-note span,
  .tag {
    white-space: normal;
  }

  .hero-decision-card {
    position: absolute;
    bottom: 18px;
  }

  .hero-decision-card strong {
    font-size: 19px;
  }

  .image-stack,
  .photo-grid,
  .article-checklist ul,
  .article-gallery {
    grid-template-columns: 1fr;
  }

  .price-list li {
    display: block;
  }

  .plan-detail.reverse img {
    order: 0;
  }

  .plan-detail img {
    min-height: 300px;
    height: 42vh;
  }

  .site-footer {
    display: block;
  }

  .journal-entry-panel .button {
    width: 100%;
  }

  .journal-nav,
  .faq-nav {
    grid-template-columns: 1fr;
  }

  .faq-nav a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-nav a:last-child {
    border-bottom: 0;
  }

  .journal-nav a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journal-nav a:last-child {
    border-bottom: 0;
  }

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

  .featured-journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card {
    min-height: auto;
  }

  .route-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-strip a:last-child {
    border-bottom: 0;
  }

  .article-hero {
    padding: 46px 18px;
  }

  .article-hero h1 {
    font-size: clamp(30px, 8.6vw, 36px);
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .article-hero p:not(.eyebrow),
  .article-body p {
    font-size: 17px;
  }

  .article-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .article-body section,
  .article-cta {
    padding: 22px 18px;
  }
}
