:root {
      --bg: #f6f3ee;
      --surface: #fffef9;
      --ink: #1c1914;
      --muted: #5c564c;
      --accent: #c45c26;
      --accent-soft: #e8a878;
      --leaf: #2d4a3e;
      --radius: 1rem;
      --shadow: 0 18px 50px rgba(28, 25, 20, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Noto Sans Thai", system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.65;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .wrap {
      width: min(1120px, 92vw);
      margin-inline: auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(246, 243, 238, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(28, 25, 20, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 0;
      gap: 1rem;
    }

    .brand {
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.02em;
      color: var(--ink);
    }

    a.brand:hover {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.25rem;
      font-size: 0.92rem;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 1.25rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #a84a1f);
      color: #fff;
      box-shadow: 0 8px 24px rgba(196, 92, 38, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(196, 92, 38, 0.4);
      text-decoration: none;
    }

    .btn-ghost {
      background: var(--surface);
      color: var(--ink);
      border: 1px solid rgba(28, 25, 20, 0.12);
    }

    .btn-ghost:hover {
      border-color: var(--accent-soft);
      text-decoration: none;
    }

    .hero {
      padding: 3rem 0 4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
      }
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--leaf);
      margin-bottom: 0.75rem;
    }

    .hero h1 {
      font-family: "Playfair Display", "Noto Sans Thai", serif;
      font-size: clamp(2rem, 4vw, 2.85rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-lead {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 36ch;
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(28, 25, 20, 0.08);
    }

    .stat strong {
      display: block;
      font-size: 1.35rem;
      color: var(--accent);
    }

    .stat span {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: var(--surface);
      border-radius: calc(var(--radius) + 6px);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .hero-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .hero-badge {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      right: 1.25rem;
      background: rgba(255, 254, 249, 0.95);
      padding: 0.85rem 1rem;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      box-shadow: 0 10px 30px rgba(28, 25, 20, 0.1);
    }

    .hero-badge p {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .hero-badge strong {
      display: block;
      color: var(--ink);
      font-size: 0.95rem;
    }

    section {
      padding: 3.5rem 0;
    }

    section.alt {
      background: linear-gradient(180deg, #efe8dd 0%, var(--bg) 100%);
    }

    .section-head {
      max-width: 640px;
      margin-bottom: 2rem;
    }

    .section-head h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.65rem, 3vw, 2.1rem);
      margin-bottom: 0.5rem;
    }

    .section-head p {
      color: var(--muted);
    }

    .grid-3 {
      display: grid;
      gap: 1.25rem;
    }

    @media (min-width: 720px) {
      .grid-3 {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .card {
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(28, 25, 20, 0.08);
      border: 1px solid rgba(28, 25, 20, 0.06);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .card img {
      aspect-ratio: 16 / 11;
      object-fit: cover;
    }

    .card-body {
      padding: 1.15rem 1.25rem 1.35rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-body h3 {
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }

    .card-body p {
      font-size: 0.92rem;
      color: var(--muted);
      flex: 1;
    }

    .tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--leaf);
      margin-bottom: 0.35rem;
    }

    .story {
      display: grid;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 860px) {
      .story {
        grid-template-columns: 1fr 1fr;
      }
    }

    .story-visual {
      border-radius: calc(var(--radius) + 4px);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .story-visual img {
      aspect-ratio: 5 / 4;
      object-fit: cover;
      width: 100%;
    }

    .story ul {
      margin: 1rem 0 0 1.1rem;
      color: var(--muted);
    }

    .story li {
      margin-bottom: 0.4rem;
    }

    .price-box {
      margin-top: 1.25rem;
      padding: 1rem 1.15rem;
      background: rgba(196, 92, 38, 0.08);
      border-radius: var(--radius);
      border: 1px dashed rgba(196, 92, 38, 0.35);
    }

    .price-box strong {
      color: var(--accent);
      font-size: 1.1rem;
    }

    .contact {
      background: var(--leaf);
      color: #f4f1ea;
      border-radius: calc(var(--radius) + 8px);
      padding: 2.5rem 2rem;
      box-shadow: var(--shadow);
    }

    .contact-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 800px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

    .contact h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    .contact > .wrap > p {
      opacity: 0.9;
      margin-bottom: 1.5rem;
      max-width: 52ch;
    }

    .contact-item {
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
      margin-bottom: 1rem;
    }

    .contact-item .icon {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 0.65rem;
      background: rgba(255, 255, 255, 0.12);
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.75;
      margin-bottom: 0.15rem;
    }

    .contact-item a {
      color: #fff;
      font-weight: 600;
    }

    .form {
      background: rgba(255, 255, 255, 0.08);
      padding: 1.25rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .form label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 0.35rem;
      opacity: 0.9;
    }

    .form input,
    .form textarea {
      width: 100%;
      margin-bottom: 0.85rem;
      padding: 0.65rem 0.75rem;
      border-radius: 0.65rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(0, 0, 0, 0.15);
      color: #fff;
      font-family: inherit;
      font-size: 0.95rem;
    }

    .form input::placeholder,
    .form textarea::placeholder {
      color: rgba(255, 255, 255, 0.45);
    }

    .form textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form .btn-primary {
      width: 100%;
      margin-top: 0.25rem;
    }

    footer {
      padding: 2rem 0 2.5rem;
      text-align: center;
      color: var(--muted);
      font-size: 0.88rem;
    }

    footer a {
      color: var(--muted);
    }

    .media-note {
      font-size: 0.88rem;
      color: var(--muted);
      max-width: 56ch;
      margin-top: 1.25rem;
      padding: 0.85rem 1rem;
      background: rgba(45, 74, 62, 0.06);
      border-radius: var(--radius);
      border-left: 3px solid var(--leaf);
    }

    .season-panel {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 800px) {
      .season-panel {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

    .season-card {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 1.35rem 1.4rem;
      border: 1px solid rgba(28, 25, 20, 0.08);
      box-shadow: 0 8px 24px rgba(28, 25, 20, 0.06);
    }

    .season-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.65rem;
      color: var(--ink);
    }

    .season-card ul {
      margin: 0;
      padding-left: 1.2rem;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .season-card li + li {
      margin-top: 0.45rem;
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-list details {
      background: var(--surface);
      border: 1px solid rgba(28, 25, 20, 0.08);
      border-radius: var(--radius);
      margin-bottom: 0.65rem;
      padding: 0.25rem 0.15rem;
    }

    .faq-list summary {
      cursor: pointer;
      font-weight: 600;
      padding: 0.75rem 1rem 0.75rem 0.85rem;
      list-style: none;
      color: var(--ink);
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list details[open] summary {
      border-bottom: 1px solid rgba(28, 25, 20, 0.06);
      margin-bottom: 0.5rem;
    }

    .faq-list .faq-a {
      padding: 0 1rem 0.85rem 1rem;
      font-size: 0.94rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .policy-section {
      background: var(--surface);
      border-radius: calc(var(--radius) + 4px);
      padding: 2rem 1.5rem;
      border: 1px solid rgba(28, 25, 20, 0.08);
      max-width: 720px;
      margin-inline: auto;
    }

    .policy-section h3 {
      font-size: 1.05rem;
      margin: 1.25rem 0 0.5rem;
      color: var(--ink);
    }

    .policy-section h3:first-child {
      margin-top: 0;
    }

    .policy-section p {
      font-size: 0.94rem;
      color: var(--muted);
      margin-bottom: 0.65rem;
    }

    .brand a {
      color: inherit;
      text-decoration: none;
    }

    .brand a:hover {
      color: var(--accent);
    }

    .page-shell {
      padding-bottom: 3rem;
    }

    .page-hero {
      padding: 2.75rem 0 1.5rem;
      border-bottom: 1px solid rgba(28, 25, 20, 0.08);
      margin-bottom: 2rem;
    }

    .page-hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.65rem, 3vw, 2.15rem);
      margin-bottom: 0.5rem;
      line-height: 1.25;
    }

    .page-hero .lead {
      color: var(--muted);
      max-width: 62ch;
      font-size: 1.02rem;
    }

    .breadcrumb {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .breadcrumb a {
      color: var(--muted);
    }

    .breadcrumb a:hover {
      color: var(--accent);
    }

    .prose {
      max-width: 680px;
    }

    .prose p {
      margin-bottom: 1rem;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .prose h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.25rem;
      margin: 1.75rem 0 0.5rem;
      color: var(--ink);
    }

    .prose ul {
      margin: 0.5rem 0 1rem 1.25rem;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .prose li + li {
      margin-top: 0.35rem;
    }

    .simple-page .contact {
      margin-top: 0;
    }