:root {
  --ink: #102919;
  --muted: #5e665d;
  --forest: #143c22;
  --forest-2: #0c2c18;
  --leaf: #3e7b46;
  --gold: #c8923b;
  --gold-soft: #f3d7a8;
  --coral: #e58a86;
  --sky: #7bb8d6;
  --paper: #fffaf0;
  --cream: #f7f1e6;
  --line: #e4d8c6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(41, 32, 17, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(228, 216, 198, .8);
  backdrop-filter: none;
}

.site-header.compact {
  position: relative;
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.brand-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  font-size: .92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #1d2c21;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 60, 34, .16);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(20, 60, 34, .45);
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 54px 0 70px;
  background:
    linear-gradient(100deg, rgba(255, 250, 240, .98) 0%, rgba(255, 250, 240, .92) 47%, rgba(255, 250, 240, .18) 100%),
    radial-gradient(circle at 20% 16%, rgba(229, 138, 134, .22), transparent 28%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.9vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

h3 {
  font-size: 1.42rem;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  color: var(--forest);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(200, 146, 59, .28);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.rating-line {
  margin-top: 20px;
  color: var(--muted);
  font-size: .95rem;
}

.rating-line span,
.stars {
  color: var(--gold);
}

.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 41, 25, .35));
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 290px;
  padding: 18px;
  color: var(--white);
  background: rgba(16, 41, 25, .78);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding-top: 58px;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

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

.experience-card,
.compare-panel,
.included-card,
.review-card,
.booking-form,
.booking-help {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(41, 32, 17, .07);
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(210px, .9fr) minmax(0, 1fr);
  overflow: hidden;
}

.experience-image {
  position: relative;
  min-height: 380px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--gold);
  border-radius: 7px;
  font-size: .8rem;
  font-weight: 900;
}

.experience-content {
  padding: 28px;
}

.duration {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(62, 123, 70, .08);
  border: 1px solid rgba(62, 123, 70, .2);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
}

.experience-brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.compact-brand {
  margin-bottom: 10px;
}

.experience-content p:not(.duration) {
  margin-top: 14px;
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 9px;
  color: #26352a;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.comparison,
.included,
.booking-page {
  background: var(--cream);
}

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

.compare-panel {
  padding: 28px;
}

.compare-panel h3 {
  font-size: 1.25rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

.feature-grid article {
  padding: 24px 0;
  border-top: 1px solid rgba(200, 146, 59, .5);
}

.feature-grid h3 {
  font-size: 1.15rem;
}

.feature-grid p {
  margin-top: 10px;
  color: var(--muted);
}

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

.included-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 18px;
  align-items: center;
}

.included-card img {
  width: 180px;
  height: 150px;
  object-fit: cover;
  border-radius: 7px;
}

.columns {
  columns: 2;
  column-gap: 24px;
}

.credential-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(110deg, #fff 0%, #fff9ef 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.license-preview {
  position: relative;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.license-preview img {
  width: 100%;
  border-radius: 5px;
}

.license-preview span {
  position: absolute;
  top: 26px;
  left: 26px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-copy p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.license-details {
  margin: 0;
}

.license-details div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.license-details dt {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.license-details dd {
  margin: 5px 0 0;
  font-weight: 800;
}

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

.review-card {
  padding: 26px;
}

.review-card p:not(.stars) {
  color: var(--muted);
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  margin-top: 18px;
}

.review-card span {
  color: var(--muted);
  font-size: .9rem;
}

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

details {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

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

.final-cta {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(300px, 1.3fr) minmax(180px, .8fr);
  min-height: 320px;
  color: var(--ink);
  background: #fff7e9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-left img {
  object-position: center;
}

.cta-right img {
  object-position: center 40%;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 36px;
  text-align: center;
}

.cta-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, .8);
  background: var(--forest-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0 34px;
}

.footer-brand .brand-name,
.site-footer h2 {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.site-footer p + p {
  margin-top: 8px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .88rem;
}

.compact-footer .footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-inline: 0;
}

.booking-hero {
  padding: 64px 0 36px;
  background:
    linear-gradient(110deg, rgba(255, 250, 240, .96), rgba(247, 241, 230, .92)),
    var(--cream);
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: end;
}

.booking-hero h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.booking-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
}

.booking-help {
  padding: 22px;
}

.booking-help span,
.booking-help a {
  display: block;
  margin-top: 8px;
}

.booking-section {
  padding: 34px 0 84px;
}

.notice {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.notice.success {
  color: #174d28;
  background: #e7f5e6;
  border: 1px solid #acd5ae;
}

.notice.error {
  color: #7b251d;
  background: #fff0ee;
  border: 1px solid #e8b7b0;
}

.booking-form {
  padding: 30px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

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

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 900;
}

label em {
  color: #b7372d;
  font-style: normal;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid #d7cab9;
  border-radius: 7px;
  font: inherit;
}

textarea {
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 146, 59, .28);
  border-color: var(--gold);
}

small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .78rem;
}

.full-field {
  display: block;
  margin-top: 18px;
}

.checkbox-group {
  padding: 0;
  border: 0;
}

.checkbox-group label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 6px 16px 6px 0;
  color: var(--muted);
  font-size: .9rem;
}

.checkbox-group input {
  width: 15px;
  height: 15px;
  min-height: auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 7px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--forest);
  }

  .site-nav {
    position: fixed;
    inset: 72px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 14px;
  }

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

  .inline-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .experience-card,
  .credential-card,
  .booking-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 440px;
  }

  .experience-image {
    min-height: 320px;
  }

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

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

  .cta-image {
    min-height: 220px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .btn {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .experience-grid,
  .compare-grid,
  .feature-grid,
  .review-grid,
  .included-grid,
  .faq-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .included-card img {
    width: 100%;
    height: 230px;
  }

  .columns {
    columns: 1;
  }

  .credential-card,
  .booking-form {
    padding: 20px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Mockup fidelity pass: tighter editorial landing-page rhythm. */
body {
  background: #fffdf7;
  font-size: 15px;
}

.container {
  width: min(1120px, calc(100% - 44px));
}

.site-header {
  background: #fff;
  border-bottom-color: rgba(228, 216, 198, .58);
  backdrop-filter: none;
}

.nav-shell {
  min-height: 54px;
  gap: 18px;
}

.brand-symbol {
  width: 30px;
  height: 30px;
}

.brand-name {
  font-size: 1.28rem;
}

.site-nav {
  gap: 30px;
  font-size: .78rem;
}

.nav-cta {
  min-height: 34px;
  padding-inline: 18px;
  font-size: .82rem;
}

.btn {
  min-height: 38px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: .88rem;
}

.hero {
  min-height: 392px;
  padding: 30px 0 0;
  align-items: stretch;
  background: #fffdf7;
}

.hero .hero-grid {
  width: 100%;
  min-height: 362px;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(410px, 45.2%) minmax(0, 54.8%);
  gap: 0;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  min-height: 362px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px 22px clamp(60px, 6.8vw, 98px);
  overflow: visible;
  background: #fffdf7;
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -138px;
  bottom: 0;
  z-index: 1;
  width: 138px;
  pointer-events: none;
  background: linear-gradient(90deg, #fffdf7 0%, rgba(255, 253, 247, .9) 34%, rgba(255, 253, 247, .42) 68%, rgba(255, 253, 247, 0) 100%);
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 7px;
  font-size: .68rem;
  letter-spacing: .12em;
}

h1 {
  max-width: 520px;
  font-size: clamp(2rem, 2.45vw, 2.68rem);
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
}

h3 {
  font-size: 1.24rem;
}

.hero-lede {
  max-width: 500px;
  margin-top: 13px;
  font-size: .82rem;
  line-height: 1.5;
}

.hero-actions {
  gap: 14px;
  margin-top: 13px;
}

.hero-actions .btn {
  min-height: 36px;
  padding-inline: 24px;
  font-size: .78rem;
}

.trust-row {
  margin-top: 15px;
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(54px, 1fr));
  gap: 12px;
  max-width: 500px;
}

.trust-row span {
  display: grid;
  gap: 5px;
  justify-items: center;
  padding: 0;
  color: #27382a;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.trust-row img,
.feature-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.rating-line {
  margin-top: 12px;
  font-size: .78rem;
}

.rating-line span {
  margin-right: 10px;
  letter-spacing: .08em;
}

.hero-media {
  z-index: 1;
  min-height: 362px;
  border-radius: 0;
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 362px;
  object-fit: cover;
  object-position: center 45%;
}

.hero-media::after,
.hero-card {
  display: none;
}

.section {
  padding: 28px 0;
}

.section-tight {
  padding-top: 56px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading .eyebrow {
  display: none;
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 10px;
  margin: 8px auto 0;
  background:
    radial-gradient(circle at center, var(--gold) 0 3px, transparent 3.5px),
    linear-gradient(var(--gold), var(--gold)) left 50% / 28px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50% / 28px 1px no-repeat;
  opacity: .8;
}

.section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 8px auto 0;
  font-size: .92rem;
}

.experience-grid {
  width: min(100%, 1110px);
  margin: 0 auto;
  gap: 26px;
}

.experience-card {
  grid-template-columns: minmax(205px, .96fr) minmax(190px, 1fr);
  min-height: 246px;
  border-color: #dfcdb1;
  box-shadow: 0 8px 18px rgba(41, 32, 17, .06);
}

.experience-image {
  height: 246px;
  min-height: 246px;
  padding: 8px;
}

.experience-image img {
  height: 100%;
  border-radius: 6px;
}

.tag {
  top: 14px;
  left: auto;
  right: 12px;
  padding: 6px 9px;
  font-size: .68rem;
  border-radius: 6px;
}

.experience-content {
  padding: 14px 18px 13px;
}

.duration {
  margin-bottom: 4px;
  font-size: .72rem;
}

.experience-brand {
  display: none;
}

.experience-brand img {
  width: 20px;
  height: 20px;
}

.experience-content h3 {
  font-size: 1.28rem;
  line-height: 1.02;
}

.experience-content p:not(.duration) {
  margin-top: 7px;
  font-size: .74rem;
  line-height: 1.45;
}

.check-list {
  margin-top: 10px;
}

.check-list li {
  margin-top: 4px;
  padding-left: 18px;
  font-size: .74rem;
  line-height: 1.35;
}

.card-actions {
  margin-top: 12px;
}

.experience-content .btn {
  min-height: 32px;
  padding-inline: 18px;
  font-size: .74rem;
}

.comparison,
.included,
.booking-page {
  background: #fffdf7;
}

.compare-grid {
  gap: 28px;
}

.compare-panel {
  padding: 18px 70px;
  border-color: #dfcdb1;
  box-shadow: none;
}

.compare-panel h3 {
  font-size: 1rem;
  text-align: center;
}

.center-action {
  margin-top: 20px;
  transform: none;
}

.center-action .btn-secondary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.center-action .btn-secondary:hover {
  color: var(--white);
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.feature-grid article {
  padding: 0;
  border: 0;
  text-align: center;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
}

.feature-grid h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .9rem;
  line-height: 1.2;
}

.feature-grid p {
  margin-top: 7px;
  font-size: .75rem;
  line-height: 1.45;
}

.included-grid {
  gap: 18px;
}

.included-card {
  grid-template-columns: 136px 1fr;
  gap: 18px;
  padding: 12px;
  border-color: #dfcdb1;
  box-shadow: none;
}

.included-card > img {
  width: 136px;
  height: 104px;
}

.included-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.compact-brand {
  margin-bottom: 6px;
}

.columns {
  column-gap: 14px;
}

.credential {
  padding-top: 22px;
}

.credential-card {
  grid-template-columns: 210px minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 24px 28px;
  border-color: #dfcdb1;
  box-shadow: 0 10px 22px rgba(41, 32, 17, .07);
}

.license-preview {
  padding: 12px;
}

.license-preview span {
  top: 20px;
  left: 20px;
  padding: 5px 9px;
  font-size: .62rem;
}

.credential-copy h2 {
  font-size: 2.05rem;
}

.credential-copy p:not(.eyebrow) {
  margin-top: 12px;
  font-size: .9rem;
}

.license-details div {
  padding: 11px 0;
}

.license-details dt {
  font-size: .68rem;
}

.license-details dd {
  font-size: .86rem;
}

.review-grid {
  gap: 28px;
}

.review-card {
  min-height: 132px;
  padding: 18px 22px;
  box-shadow: none;
}

.review-card p:not(.stars) {
  font-size: .84rem;
}

.review-card strong {
  margin-top: 12px;
  font-size: .82rem;
}

.review-card span {
  font-size: .75rem;
}

.faq-grid {
  gap: 8px 24px;
}

summary {
  padding: 9px 14px;
  font-size: .86rem;
}

details p {
  padding: 0 14px 12px;
  font-size: .84rem;
}

.final-cta {
  min-height: 196px;
  margin-top: 18px;
  grid-template-columns: minmax(190px, .95fr) minmax(360px, 1.35fr) minmax(190px, .95fr);
  overflow: hidden;
}

.cta-copy {
  padding: 28px;
}

.cta-copy h2 {
  font-size: 2rem;
}

.cta-copy p:not(.eyebrow) {
  margin-top: 8px;
  font-size: .88rem;
}

.site-footer {
  background: var(--forest-2);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1.15fr .95fr;
  gap: 24px;
  padding: 48px 0 26px;
  font-size: .78rem;
}

.footer-brand .brand-symbol {
  width: 24px;
  height: 24px;
}

.footer-brand .brand-name {
  font-size: 1rem;
}

.site-footer h2 {
  margin-bottom: 5px;
  font-size: .92rem;
}

.site-footer p + p {
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: .72rem;
}

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

  .hero .hero-grid {
    width: min(100% - 32px, 1120px);
    height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .hero-copy {
    height: auto;
    min-height: auto;
    padding: 0;
    background: transparent;
  }

  .hero-media,
  .hero-media img {
    height: 360px;
    min-height: 360px;
    border-radius: var(--radius);
  }

  .experience-card,
  .credential-card {
    grid-template-columns: 1fr;
  }

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

  .compare-panel {
    padding: 18px 26px;
  }

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

@media (max-width: 720px) {
  .nav-shell {
    min-height: 60px;
  }

  .site-nav {
    inset: 60px 14px auto;
  }

  h1 {
    font-size: 2.35rem;
  }

  .trust-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .experience-grid,
  .compare-grid,
  .feature-grid,
  .included-grid,
  .review-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .experience-image {
    min-height: 250px;
  }

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

  .included-card > img {
    width: 100%;
    height: 210px;
  }

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

  .cta-image {
    min-height: 180px;
  }
}

/* ===== Ready to Book banner — blended single-banner (matches marketing mockup) ===== */
.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-top: 0;
  padding: 52px 24px;
  text-align: center;
  color: var(--ink);
  background: #fbf3e2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.final-cta .cta-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36%;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}
.final-cta .cta-photo--left { left: 0; }
.final-cta .cta-photo--right { right: 0; }
.final-cta .cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.final-cta .cta-photo--left img {
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, #000 42%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to right, #000 42%, rgba(0,0,0,0) 100%);
}
.final-cta .cta-photo--right img {
  object-position: center 38%;
  -webkit-mask-image: linear-gradient(to left, #000 42%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to left, #000 42%, rgba(0,0,0,0) 100%);
}
.final-cta .cta-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta .cta-copy h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.12;
}
.final-cta .cta-copy p {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--muted);
}
.final-cta .cta-copy .hero-actions {
  margin-top: 24px;
  justify-content: center;
}
@media (max-width: 980px) {
  .final-cta .cta-photo { width: 26%; }
  .final-cta .cta-copy h2 { font-size: 2rem; }
}
@media (max-width: 720px) {
  .final-cta { min-height: auto; padding: 40px 20px; }
  .final-cta .cta-photo { display: none; }
  .final-cta .cta-copy h2 { font-size: 1.7rem; }
}

/* ===== Why Choose Happy Herb Cooking Class ===== */
.why-choose .whc-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
.whc-title {
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  line-height: 1.06;
  color: var(--ink);
}
.whc-rule {
  display: block;
  width: 72px;
  height: 10px;
  margin: 14px 0 20px;
  background:
    radial-gradient(circle at center, var(--gold) 0 3px, transparent 3.5px),
    linear-gradient(var(--gold), var(--gold)) left 50% / 28px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50% / 28px 1px no-repeat;
  opacity: .8;
}
.whc-lede {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.why-choose .whc-list {
  margin-top: 22px;
}
.why-choose .whc-list li {
  margin-top: 12px;
}
.whc-gallery {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  min-height: 470px;
}
.whc-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.whc-feature {
  grid-row: 1 / span 3;
}
@media (max-width: 900px) {
  .why-choose .whc-grid { grid-template-columns: 1fr; gap: 36px; }
  .whc-title { font-size: 2.1rem; }
  .whc-gallery { min-height: 430px; }
}
@media (max-width: 620px) {
  .whc-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .whc-feature { grid-column: 1 / -1; grid-row: auto; }
  .whc-gallery img { height: 170px; }
  .whc-feature img { height: 240px; }
  .whc-title br { display: none; }
}

/* ===== Dark green header / nav (bookends with footer) ===== */
.site-header {
  background: #0c2c18;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-header .brand-name {
  color: #ffffff;
}
.site-header .nav-cta {
  background: var(--gold);
  color: #102919;
  border-color: var(--gold);
}
.site-header .nav-cta:hover {
  background: #d8a64e;
  border-color: #d8a64e;
  color: #102919;
}
/* White menu links on desktop only; mobile dropdown stays a white panel with dark links */
@media (min-width: 981px) {
  .site-nav a { color: #ede7d8; }
  .site-nav a:hover { color: #ffffff; }
}


/* ===== Photo Gallery — Real Moments ===== */
.photo-gallery .pg-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.pg-eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.2rem;
}
.pg-title {
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  line-height: 1.06;
  color: var(--ink);
}
.pg-lede {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 15vw, 218px);
  grid-auto-flow: dense;
  gap: 18px;
}
.pg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 28px rgba(41, 32, 17, .07);
}
.pg-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.pg-grid img:nth-child(4),
.pg-grid img:nth-child(11) {
  grid-row: span 2;
}
.pg-grid img:nth-child(9) {
  grid-column: span 2;
}
.pg-grid img:nth-child(2),
.pg-grid img:nth-child(3),
.pg-grid img:nth-child(8),
.pg-grid img:nth-child(9),
.pg-grid img:nth-child(12) {
  object-position: center;
}
.pg-grid img:nth-child(11) {
  object-position: center 35%;
}
@media (max-width: 900px) {
  .photo-gallery .pg-head { align-items: flex-start; }
  .pg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(138px, 38vw, 240px);
    gap: 14px;
  }
  .pg-grid img:nth-child(1),
  .pg-grid img:nth-child(9) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .pg-grid img:nth-child(4),
  .pg-grid img:nth-child(11) {
    grid-row: span 2;
  }
}
@media (max-width: 520px) {
  .pg-grid { gap: 12px; }
  .pg-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}


/* ===== FAQ redesign — heading left, accordion right ===== */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}
.faq-intro-lede {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(41, 32, 17, .05);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
}

/* ===== What's Included dark-green band ===== */
.included-band {
  background: var(--forest-2);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  line-height: 1.55;
}
.included-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 0;
}
.included-band-grid > * { padding: 0 34px; }
.included-band-grid > *:first-child { padding-left: 0; }
.included-band-grid > *:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, .13); }
.included-band h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: .95rem;
  color: #ffffff;
}
.ib-check, .ib-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ib-check li {
  position: relative;
  padding-left: 26px;
  margin-top: 12px;
}
.ib-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}
.ib-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.ib-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--gold-soft);
}
.ib-list .flag {
  font-size: 1.15rem;
  line-height: 1;
  flex: none;
}
.ib-pickup p {
  margin: 0 0 16px;
  max-width: 230px;
}
.ib-pickup-link {
  display: inline-block;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}
.ib-pickup-link:hover { color: var(--gold-soft); }
.ib-car {
  display: block;
  width: 130px;
  height: auto;
  margin-top: 18px;
  color: rgba(255, 255, 255, .9);
}
@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .included-band-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .included-band-grid > * { padding: 0 28px; }
  .included-band-grid > *:nth-child(odd) { padding-left: 0; border-left: 0; }
  .included-band-grid > *:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .13); }
}
@media (max-width: 520px) {
  .included-band-grid { grid-template-columns: 1fr; gap: 28px; }
  .included-band-grid > * { padding: 0; border-left: 0; }
}

.ib-flag {
  width: 24px;
  height: 16px;
  flex: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}


/* ===== Experience card pricing ===== */
.exp-pricing { margin: 14px 0 2px; }
.exp-price { display: flex; align-items: baseline; gap: 8px; }
.exp-amount {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
}
.exp-unit { font-size: .9rem; color: var(--muted); }
.exp-usd { margin: 2px 0 0; font-size: .85rem; color: var(--muted); }
.exp-meta { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.exp-meta li { position: relative; padding-left: 18px; font-size: .88rem; color: var(--muted); }
.exp-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== Extra breathing room above Reviews and FAQ ===== */
.reviews { padding-top: 64px; }
.faq { padding-top: 64px; }


/* ============================================================
   LUXURY POLISH PASS  (2026-06-19h)
   Goal: distinctive, warm, refined. Appended last so it wins.
   ============================================================ */
:root{
  --gold-deep:#a9741f;
  --forest-3:#0a2414;
  --shadow-lux:0 24px 60px -22px rgba(20,45,28,.30);
  --shadow-soft:0 10px 30px -16px rgba(20,45,28,.22);
  --radius-lux:16px;
}

/* ---- Headings kept on Georgia (system serif), as requested ---- */
body{ -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }

/* ---- Eyebrow / kicker labels: refined, spaced, signature gold ---- */
.eyebrow,.pg-eyebrow{
  color:var(--gold-deep);
  font-weight:700;
  letter-spacing:.20em;
  text-transform:uppercase;
}
.credential-copy .eyebrow,.section-heading .eyebrow{font-size:.72rem;}

/* ---- License detail labels a touch more refined ---- */
.license-details dt{letter-spacing:.14em;}

/* ---- Buttons: one primary (forest), gold as refined accent ---- */
.btn{ border-radius:10px; font-weight:700; letter-spacing:.02em; }
.btn-primary{
  background:var(--forest);
  color:#fff;
  box-shadow:0 8px 20px -10px rgba(20,45,28,.55);
}
.btn-primary:hover{
  background:var(--forest-3);
  box-shadow:0 14px 26px -10px rgba(20,45,28,.5);
}
.btn-secondary{
  background:rgba(255,255,255,.85);
  border-color:rgba(169,116,31,.55);
  color:var(--forest);
}
.btn-secondary:hover{ border-color:var(--gold-deep); color:var(--gold-deep); background:#fff; }
.nav-cta{ box-shadow:0 6px 16px -8px rgba(20,45,28,.5); }

/* ---- Re-enable refined editorial eyebrows above section headings ---- */
.section-heading .eyebrow{ display:block; margin-bottom:10px; }

/* ---- Elevated cards across the page ---- */
.experience-card{
  border-radius:var(--radius-lux);
  border:1px solid var(--line);
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .25s ease, box-shadow .25s ease;
}
.experience-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lux); }
.experience-image img{ transition:transform .5s ease; }
.experience-card:hover .experience-image img{ transform:scale(1.04); }
.tag{ letter-spacing:.04em; box-shadow:0 6px 16px -8px rgba(20,45,28,.45); }

.included-card,.compare-panel,.credential-card{
  border-radius:var(--radius-lux);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

/* ---- Reviews: warmer, with a signature quotation mark ---- */
.review-card{
  position:relative;
  border-radius:var(--radius-lux);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-soft);
  padding-top:34px;
}
.review-card::before{
  content:"\201C";
  position:absolute;
  top:6px; left:22px;
  font-family:Georgia,serif;
  font-size:3.4rem; line-height:1;
  color:var(--gold-soft);
}
.review-card .stars{ letter-spacing:.12em; }
.review-card strong{ font-weight:700; }
.review-card span{ color:var(--muted); }

/* ---- Unified warm color grade on content photography ---- */
.hero-media img,.experience-image img,.included-card img,
.whc-gallery img,.whc-feature img,.pg-grid img,.cta-photo img{
  filter:saturate(1.06) contrast(1.02) brightness(1.01);
}

/* ---- Photo gallery: rounded, refined, gentle zoom ---- */
.pg-grid img{
  border-radius:14px;
  box-shadow:var(--shadow-soft);
  transition:transform .5s ease, box-shadow .3s ease, filter .3s ease;
}
.pg-grid img:hover{
  transform:translateY(-3px) scale(1.012);
  box-shadow:var(--shadow-lux);
  filter:saturate(1.12) contrast(1.03) brightness(1.02);
}

/* ---- Secondary price reads as a quiet caption, not raw text ---- */
.exp-usd{ color:var(--muted); font-weight:600; letter-spacing:.02em; }

/* ---- FAQ accordion: card-like, gold open accent ---- */
.faq-list details{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  transition:box-shadow .25s ease, border-color .25s ease;
}
.faq-list details[open]{ border-color:rgba(169,116,31,.45); box-shadow:var(--shadow-soft); }
.faq-list summary{ font-weight:700; }

/* ---- Desktop rhythm, warmth & hero presence (>=981px only) ---- */
@media (min-width:981px){
  .section{ padding:78px 0; }
  .section-heading{ margin-bottom:42px; }

  /* Alternating warm backgrounds break the all-white monotony */
  .reviews{ background:var(--cream); }
  .faq{ background:var(--cream); }
  .why-choose{ background:var(--paper); }

  /* Hero gains height, scale and editorial confidence */
  .hero{ min-height:0; }
  .hero .hero-grid{
    min-height:0;
    grid-template-columns:minmax(440px,46%) minmax(0,54%);
    align-items:stretch;
  }
  .hero-copy{ min-height:0; padding:34px 44px 34px clamp(60px,6.8vw,98px); }
  /* Hero height now follows the copy; image crops (object-fit:cover) to match */
  .hero-media{ min-height:0; }
  .hero-media img{ min-height:0; }
  .hero h1{ font-size:clamp(2rem,2.45vw,2.68rem); }
  .hero-lede{ max-width:540px; margin-top:20px; font-size:.98rem; line-height:1.6; }
  .hero-actions{ margin-top:24px; }
  .trust-row{ margin-top:26px; }
  .rating-line{ margin-top:20px; font-size:.86rem; }

  /* Re-introduce subtle depth gradient on the hero image */
  .hero-media::after{
    display:block;
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(115deg, rgba(255,253,247,.28) 0%, rgba(255,253,247,0) 30%),
               linear-gradient(0deg, rgba(10,36,20,.22) 0%, rgba(10,36,20,0) 32%);
    pointer-events:none;
  }

  /* "Why Us" reasons: 3x2 grid breathes far better than a cramped single row */
  .feature-grid{ grid-template-columns:repeat(3,1fr); gap:38px 32px; }

  /* Keep FAQ intro company while the accordion scrolls */
  .faq-intro{ position:sticky; top:84px; align-self:start; }
}


/* ===== Larger header / nav bar (premium) ===== */
.nav-shell { min-height: 78px; }
.brand-symbol { width: 44px; height: 44px; }
@media (min-width: 981px) {
  .brand-name { font-size: 1.42rem; }
  .site-nav { font-size: 1rem; }
  .site-header .nav-cta { min-height: 44px; padding: 0 24px; }
}

/* ===== TH page typography + language switch (added 2026-06-19) ===== */
html[lang="th"] body{font-family:'Sarabun',Inter,ui-sans-serif,system-ui,-apple-system,sans-serif;line-height:1.7;font-weight:400;}
html[lang="th"] h1,html[lang="th"] h2,html[lang="th"] h3,html[lang="th"] h4{font-family:'Mitr',Georgia,sans-serif;font-weight:600;}
.site-nav a.lang-switch{display:inline-flex;align-items:center;justify-content:center;gap:.45em;border:1.5px solid currentColor;border-radius:999px;padding:.2em .85em;font-weight:700;letter-spacing:.02em;line-height:1;white-space:nowrap;}
.site-nav a.lang-switch:hover{background:rgba(255,255,255,.14);}
.lang-switch__flag{display:inline-block;flex:0 0 auto;width:1.15em;height:.76em;border-radius:2px;box-shadow:0 0 0 1px rgba(255,255,255,.55);overflow:hidden;}
.lang-switch__flag--th{background:linear-gradient(to bottom,#a51931 0 18%,#fff 18% 32%,#2d2a4a 32% 68%,#fff 68% 82%,#a51931 82% 100%);}
.lang-switch__flag--gb{background:linear-gradient(28deg,transparent 0 42%,#fff 42% 48%,#c8102e 48% 52%,#fff 52% 58%,transparent 58% 100%),linear-gradient(152deg,transparent 0 42%,#fff 42% 48%,#c8102e 48% 52%,#fff 52% 58%,transparent 58% 100%),linear-gradient(to bottom,transparent 0 35%,#fff 35% 42%,#c8102e 42% 58%,#fff 58% 65%,transparent 65% 100%),linear-gradient(to right,transparent 0 35%,#fff 35% 42%,#c8102e 42% 58%,#fff 58% 65%,transparent 65% 100%),#012169;}

/* ===== Booking nav + experience price polish ===== */
.booking-page .site-nav.inline-nav{
  justify-content:center;
  gap:clamp(16px,2vw,28px);
}
.booking-page .site-nav.inline-nav a{
  white-space:nowrap;
}
.exp-pricing{
  margin:18px 0 4px;
  padding:16px 18px;
  border:1px solid rgba(200,146,59,.3);
  border-radius:8px;
  background:
    linear-gradient(135deg, rgba(255,250,240,.96), rgba(247,241,230,.74)),
    #fffaf0;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.78), 0 10px 24px rgba(41,32,17,.06);
}
.exp-price{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.exp-amount{
  font-size:clamp(1.85rem,2.4vw,2.35rem);
  line-height:.95;
  letter-spacing:.01em;
}
.exp-unit{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border:1px solid rgba(16,41,25,.12);
  border-radius:999px;
  background:rgba(255,255,255,.76);
  color:#405244;
  font-size:.86rem;
  font-weight:700;
}
.exp-usd{
  display:inline-flex;
  width:max-content;
  margin:9px 0 0;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(62,123,70,.1);
  color:#314634;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
}
.exp-meta{
  display:grid;
  gap:8px;
  margin:12px 0 0;
}
.exp-meta li{
  min-height:32px;
  display:flex;
  align-items:center;
  padding:6px 10px 6px 28px;
  border:1px solid rgba(200,146,59,.18);
  border-radius:8px;
  background:rgba(255,255,255,.72);
  color:#4a5b4e;
  font-size:.88rem;
  line-height:1.35;
}
.exp-meta li::before{
  left:12px;
  top:50%;
  transform:translateY(-50%);
}
@media (max-width:980px){
  .booking-page .nav-shell{
    grid-template-columns:1fr;
    gap:12px;
    padding-block:12px;
  }
  .booking-page .site-nav.inline-nav{
    position:static;
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:8px;
    padding:0;
    border:0;
    background:transparent;
    box-shadow:none;
  }
  .booking-page .site-nav.inline-nav a{
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff4df;
    font-size:.88rem;
  }
  .booking-page .site-nav.inline-nav a.lang-switch{
    padding:.45em .75em;
  }
}
@media (max-width:520px){
  .exp-pricing{padding:14px;}
  .exp-meta li{align-items:flex-start;}
}

/* ===== Experience cards: balanced horizontal rhythm ===== */
@media (min-width:981px){
  .experience-grid{
    width:min(100%,1060px);
    gap:22px;
    align-items:stretch;
  }
  .experience-card{
    grid-template-columns:minmax(214px,.92fr) minmax(230px,1fr);
    min-height:0;
    align-items:stretch;
  }
  .experience-image{
    position:relative;
    height:auto;
    min-height:100%;
    padding:0;
  }
  .experience-image img{
    position:absolute;
    inset:10px;
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    border-radius:7px;
    object-fit:cover;
  }
  .experience-content{
    min-height:100%;
    display:flex;
    flex-direction:column;
    padding:22px 24px 20px;
  }
  .experience-content h3{
    margin-top:4px;
  }
  .experience-content p:not(.duration){
    margin-top:8px;
    font-size:.9rem;
    line-height:1.42;
  }
  .exp-pricing{
    display:grid;
    grid-template-columns:minmax(112px,.8fr) minmax(0,1fr);
    gap:8px 12px;
    align-items:center;
    margin:14px 0 0;
    padding:12px 14px;
  }
  .exp-price{
    grid-column:1;
    align-items:flex-start;
    gap:6px;
  }
  .exp-amount{
    font-size:clamp(1.75rem,2vw,2.08rem);
  }
  .exp-unit{
    min-height:24px;
    padding:0 8px;
    font-size:.78rem;
  }
  .exp-usd{
    grid-column:1;
    align-self:start;
    justify-self:start;
    width:max-content;
    height:auto;
    margin:0;
    padding:4px 11px;
  }
  .exp-meta{
    grid-column:2;
    grid-row:1 / span 2;
    margin:0;
    gap:7px;
  }
  .exp-meta li{
    min-height:30px;
    padding:5px 9px 5px 26px;
    font-size:.82rem;
  }
  .check-list{
    margin-top:13px;
  }
  .check-list li{
    margin-top:5px;
    font-size:.84rem;
    line-height:1.3;
  }
  .card-actions{
    margin-top:auto;
    padding-top:14px;
  }
}
@media (min-width:981px) and (max-width:1120px){
  .experience-grid{
    width:min(100%,980px);
  }
  .experience-card{
    grid-template-columns:minmax(185px,.82fr) minmax(220px,1fr);
  }
  .experience-content{
    padding:20px 22px 18px;
  }
}
@media (max-width:980px){
  .experience-image{
    height:clamp(230px,42vw,340px);
    min-height:0;
  }
}

/* Two added square images close the gallery mosaic without leaving bottom gaps. */
.pg-grid img:nth-child(13),
.pg-grid img:nth-child(14){
  object-position:center;
}

/* ===== Experience cards: second balance pass ===== */
@media (min-width:981px){
  .experience-grid{
    width:min(100%,1040px);
    gap:28px;
    align-items:stretch;
  }
  .experience-card{
    display:flex;
    flex-direction:column;
    overflow:visible;
    border-radius:10px;
    background:#fffdfa;
  }
  .experience-image{
    position:relative;
    height:clamp(240px,16vw,286px) !important;
    min-height:0 !important;
    padding:0 !important;
    overflow:hidden;
    border-radius:10px 10px 0 0;
    flex:0 0 auto;
  }
  .experience-image img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    border-radius:0 !important;
    object-fit:cover;
    object-position:center 48%;
  }
  .experience-card:nth-child(1) .experience-image img{
    object-position:center 42%;
  }
  .tag{
    top:14px;
    right:14px;
    left:auto;
    max-width:calc(100% - 28px);
    padding:7px 10px;
    border-radius:7px;
    font-size:.72rem;
    line-height:1.18;
    text-align:center;
    white-space:normal;
  }
  .experience-content{
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    padding:22px 24px 22px;
  }
  .duration{
    margin:0 0 6px;
    letter-spacing:.02em;
  }
  .experience-content h3{
    margin:0;
    font-size:clamp(1.28rem,1.75vw,1.58rem);
    line-height:1.08;
  }
  .experience-content p:not(.duration){
    margin-top:9px;
    min-height:3.75em;
    font-size:.9rem;
    line-height:1.42;
  }
  .exp-pricing{
    display:grid;
    grid-template-columns:minmax(116px,.72fr) minmax(0,1.28fr);
    gap:5px 15px;
    align-items:center;
    margin:15px 0 0;
    padding:14px 16px;
    border-color:rgba(200,146,59,.25);
    background:
      linear-gradient(135deg, rgba(255,250,240,.98), rgba(248,239,222,.8)),
      #fffaf0;
    box-shadow:0 8px 18px rgba(41,32,17,.045);
  }
  .exp-price{
    grid-column:1;
    display:flex;
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }
  .exp-amount{
    font-size:clamp(1.86rem,2.1vw,2.2rem);
  }
  .exp-unit{
    min-height:24px;
    padding:0 8px;
    font-size:.78rem;
  }
  .exp-usd{
    grid-column:1;
    align-self:start;
    justify-self:start;
    width:max-content;
    height:auto;
    margin:0;
    padding:4px 11px;
  }
  .exp-meta{
    grid-column:2;
    grid-row:1 / span 2;
    margin:0;
    gap:8px;
  }
  .exp-meta li{
    min-height:30px;
    padding:6px 10px 6px 27px;
    background:rgba(255,255,255,.82);
    font-size:.84rem;
    line-height:1.34;
  }
  .check-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px 12px;
    margin:16px 0 0;
  }
  .check-list li{
    margin:0;
    padding-left:20px;
    font-size:.84rem;
    line-height:1.32;
  }
  .card-actions{
    margin-top:auto;
    padding-top:18px;
  }
  .card-actions .btn{
    min-width:128px;
  }
}
@media (min-width:981px) and (max-width:1100px){
  .experience-grid{
    width:min(100%,980px);
    gap:24px;
  }
  .experience-content{
    padding:21px 22px 21px;
  }
  .exp-pricing{
    grid-template-columns:1fr;
  }
  .exp-price,
  .exp-usd,
  .exp-meta{
    grid-column:1;
    grid-row:auto;
  }
  .experience-content p:not(.duration){
    min-height:auto;
  }
}

/* ===== FINAL OVERRIDE: experience cards layout repair (2026-06-19) ===== */
@media (min-width:981px){
  .experience-grid{ align-items:start !important; }
  .experience-card{ display:block !important; overflow:visible !important; }
  .experience-image{
    position:relative !important;
    display:block !important;
    height:clamp(220px,15vw,260px) !important;
    aspect-ratio:auto !important;
    overflow:hidden !important;
    border-radius:10px 10px 0 0 !important;
  }
  .experience-image img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
  .exp-pricing{ align-items:start !important; }
  .exp-usd{
    align-self:start !important;
    justify-self:start !important;
    width:max-content !important;
    height:fit-content !important;
    min-height:0 !important;
  }
  .card-actions{ margin-top:16px !important; }
}




/* ===== Experience cards REDESIGN: unboxed price, full-width CTA (2026-06-19 r3) ===== */
@media (min-width:981px){
  .experience-content{ padding:24px 26px 24px !important; }
}

/* --- Unboxed, prominent price block --- */
.exp-pricing{
  display:block !important;
  background:none !important;
  border:0 !important;
  box-shadow:none !important;
  border-top:1px solid var(--line) !important;
  border-radius:0 !important;
  padding:18px 0 0 !important;
  margin:18px 0 4px !important;
  grid-template-columns:none !important;
  align-items:initial !important;
}
.exp-price{
  display:flex !important;
  align-items:baseline !important;
  gap:9px !important;
  flex-wrap:wrap !important;
}
.exp-amount{
  font-family:Georgia,"Times New Roman",serif !important;
  font-size:clamp(2.1rem,2.6vw,2.55rem) !important;
  font-weight:700 !important;
  color:var(--ink) !important;
  line-height:1 !important;
}
.exp-unit{
  background:none !important;
  border:0 !important;
  padding:0 !important;
  min-height:0 !important;
  color:var(--muted) !important;
  font-weight:600 !important;
  font-size:.92rem !important;
}
.exp-usd{
  display:block !important;
  width:auto !important;
  height:auto !important;
  min-height:0 !important;
  background:none !important;
  border:0 !important;
  padding:0 !important;
  margin:5px 0 0 !important;
  color:var(--muted) !important;
  font-weight:600 !important;
  font-size:.84rem !important;
  letter-spacing:.01em !important;
}
.exp-meta{
  display:flex !important;
  flex-direction:column !important;
  gap:7px !important;
  margin:13px 0 0 !important;
  padding:0 !important;
  grid-column:auto !important;
  grid-row:auto !important;
}
.exp-meta li{
  position:relative !important;
  background:none !important;
  border:0 !important;
  box-shadow:none !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 0 0 22px !important;
  color:var(--muted) !important;
  font-size:.88rem !important;
  line-height:1.42 !important;
}
.exp-meta li::before{
  content:"" !important;
  position:absolute !important;
  left:5px !important;
  top:.66em !important;
  width:5px !important;
  height:5px !important;
  border-radius:50% !important;
  background:var(--gold) !important;
  transform:translateY(-50%) !important;
}

/* --- Inclusions checklist with quiet label --- */
.experience-card .check-list{ margin:20px 0 0 !important; }
.experience-card .check-list::before{
  content:"What's included" !important;
  grid-column:1 / -1 !important;
  margin:0 0 11px !important;
  font-size:.7rem !important;
  font-weight:700 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
  color:var(--gold-deep,#a9741f) !important;
}

/* --- Full-width CTA --- */
.card-actions{ margin-top:22px !important; padding-top:0 !important; }
.card-actions .btn{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  padding-top:14px !important;
  padding-bottom:14px !important;
  min-width:0 !important;
}


/* ===== Experience cards: equal size via flex-stretch, block cards (2026-06-19 r7) ===== */
@media (min-width:981px){
  .experience-grid{
    display:flex !important;
    flex-direction:row !important;
    align-items:stretch !important;
    gap:28px !important;
  }
  .experience-card{
    flex:1 1 0 !important;
    min-width:0 !important;
    display:block !important;
    overflow:visible !important;
    position:relative !important;
    padding-bottom:84px !important;
  }
  /* pin CTA to the bottom so equal-height cards keep aligned buttons */
  .experience-card .card-actions{
    position:absolute !important;
    left:26px !important;
    right:26px !important;
    bottom:24px !important;
    margin:0 !important;
  }
}

/* r7 fix: block content so flex-stretch measures height correctly (no clip) */
@media (min-width:981px){
  .experience-content{ display:block !important; }
}

/* Thai page: localize the inclusions label */
html[lang="th"] .experience-card .check-list::before{ content:"สิ่งที่รวมในแพ็กเกจ" !important; }
