:root {
    --paper: #f4ecda;
    --paper-dark: #e9dfc4;
    --ink: #2c2418;
    --ink-soft: #5a4f3d;
    --teal: #0d6b6f;
    --teal-deep: #0a4f52;
    --coral: #e2673f;
    --sand: #d9c49a;
    --tape: #efe6c8;
    --shadow-clr: rgba(44, 36, 24, 0.25);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background:
      radial-gradient(circle at 20% 10%, #fbf6e8 0%, transparent 40%),
      var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
  }

  .wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 80px;
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 64px 24px 56px;
    text-align: center;
    background:
      linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
    color: #fdf8ea;
    overflow: hidden;
    border-bottom: 6px solid var(--coral);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 85%, rgba(255,255,255,0.06) 0, transparent 30%),
      radial-gradient(circle at 85% 20%, rgba(255,255,255,0.08) 0, transparent 35%);
  }

  .hero-flag {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #cfe9e6;
    margin-bottom: 10px;
    position: relative;
  }

  .hero-logo {
    width: 92px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
    position: relative;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(38px, 7.5vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    position: relative;
  }

  .hero .dates {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f2ddc9;
    position: relative;
  }

  .hero .sub {
    margin-top: 18px;
    font-size: 15px;
    color: #dff0ee;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  /* DAY CARD */
  .day {
    position: relative;
    margin: 40px 0;
    background: #fffdf6;
    border: 1px solid #e4d8b8;
    border-radius: 2px;
    padding: 26px 24px 28px;
    box-shadow: 0 10px 24px -14px var(--shadow-clr);
  }

  .day::before {
    /* washi tape */
    content: "";
    position: absolute;
    top: -14px;
    left: 28px;
    width: 90px;
    height: 26px;
    background: var(--tape);
    opacity: 0.9;
    transform: rotate(-4deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
  }

  .day-label {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--teal);
    margin: 0 0 4px;
  }

  .day-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.2;
  }

  .day-visual {
    height: 130px;
    border-radius: 4px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    position: relative;
    overflow: hidden;
  }

  .day-visual span.tag {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(255,255,255,0.88);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    padding: 3px 12px;
    border-radius: 2px;
  }

  /* PRICING */
  .pricing {
    margin: -1px auto 0;
    max-width: 720px;
    padding: 0 20px;
  }

  .price-card {
    background: linear-gradient(135deg, var(--coral), #f2955f);
    color: #fff8ee;
    border-radius: 2px;
    padding: 22px 24px;
    text-align: center;
    margin-top: -28px;
    position: relative;
    box-shadow: 0 14px 28px -16px rgba(44,36,24,0.4);
    border: 1px solid rgba(255,255,255,0.25);
  }

  .price-card .early-bird {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff2e0;
    margin: 0 0 2px;
  }

  .price-card .amount {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 40px;
    margin: 0;
  }

  .price-card .amount span {
    font-size: 17px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
  }

  .price-card .deadline {
    font-size: 13px;
    color: #fff2e0;
    margin: 4px 0 12px;
  }

  .price-card .addon {
    font-size: 13.5px;
    background: rgba(255,255,255,0.16);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
  }

  .price-card .policy-note {
    font-size: 12px;
    color: #fff2e0;
    opacity: 0.85;
    margin: 14px 0 0;
    font-style: italic;
  }

  .price-card .todo {
    text-decoration: underline dotted rgba(255,255,255,0.7);
    cursor: help;
  }

  .reserve-btn {
    display: inline-block;
    background: #fff8ee;
    color: var(--coral);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 14px -6px rgba(0,0,0,0.35);
  }

  .updates-btn {
    display: inline-block;
    background: transparent;
    color: #fff8ee;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid rgba(255,248,238,0.7);
  }

  .btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }

  /* INCLUDED / NOT INCLUDED */
  .included {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 0;
  }

  .included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .included-col {
    background: #fffdf6;
    border: 1px solid #e4d8b8;
    border-radius: 2px;
    padding: 18px 18px 14px;
  }

  .included-col h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--teal-deep);
  }

  .included-col.not-included h3 { color: var(--coral); }

  .included-col ul {
    margin: 0;
    padding-left: 18px;
  }

  .included-col li {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .included-col li .todo {
    color: var(--coral);
    font-style: italic;
    text-decoration: underline dotted;
  }

  @media (max-width: 520px) {
    .included-grid { grid-template-columns: 1fr; }
  }

  /* GOOD TO KNOW */
  .good-to-know {
    max-width: 720px;
    margin: 32px auto 0;
    padding: 0 20px;
  }

  .good-to-know .box {
    background: #f8f2e2;
    border: 1px solid #e4d8b8;
    border-radius: 2px;
    padding: 18px 20px;
  }

  .good-to-know h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--ink);
  }

  .good-to-know ul {
    margin: 0;
    padding-left: 18px;
  }

  .good-to-know li {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 6px;
    line-height: 1.4;
  }

  /* HOST STRIP */
  .host-strip {
    text-align: center;
    margin-top: 40px;
    font-size: 13.5px;
    color: var(--ink-soft);
  }

  .host-strip .todo {
    font-style: italic;
    text-decoration: underline dotted var(--ink-soft);
  }

  .day-visual.photo {
    padding: 0;
    height: 230px;
    background: #f2ead9;
  }

  .day-visual.photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .v-teal { background: linear-gradient(135deg, #0d6b6f, #17a3a0, #d9e8dd); }
  .v-jungle { background: linear-gradient(135deg, #2f5233, #6a8d4f, #d7e3c0); }
  .v-dust { background: linear-gradient(135deg, #a9744f, #d7a86e, #f1d9ad); }
  .v-sunset { background: linear-gradient(135deg, #e2673f, #f2a65a, #ffe3b3); }
  .v-night { background: linear-gradient(135deg, #241a3a, #5c3d78, #a97cc9); }
  .v-ocean { background: linear-gradient(135deg, #08484d, #12909a, #a9e6df); }
  .v-sand { background: linear-gradient(135deg, #c9a15a, #e7c78a, #fdeecb); }

  .day-body p {
    margin: 0 0 8px;
    color: var(--ink-soft);
    font-size: 15px;
  }

  .day-note {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--teal-deep);
    background: #eaf4f2;
    padding: 4px 10px;
    border-radius: 20px;
  }

  /* Rest day style */
  .day.rest {
    background: #f8f2e2;
    text-align: center;
  }
  .day.rest .day-title { color: var(--teal-deep); }
  .day.rest .day-visual:not(.photo) { height: 90px; font-size: 34px; }

  /* Divider between clusters */
  .divider {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--ink-soft);
    margin: 8px 0 -10px;
  }

  footer {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
  }

  /* STAY GALLERY */
  .stay {
    margin: 48px 0 12px;
  }

  .stay-heading {
    text-align: center;
    margin-bottom: 22px;
  }

  .stay-heading .day-label {
    text-align: center;
  }

  .stay-heading h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 30px;
    margin: 4px 0 6px;
  }

  .stay-heading p {
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 380px;
    margin: 0 auto;
  }

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

  .stay-grid figure {
    margin: 0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4d8b8;
    box-shadow: 0 8px 18px -12px var(--shadow-clr);
  }

  .stay-grid img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
  }

  .stay-grid figure.wide {
    grid-column: span 2;
  }
  .stay-grid figure.wide img {
    height: 190px;
  }

  .stay-grid figcaption {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }

  @media (max-width: 480px) {
    .day-title { font-size: 24px; }
    .hero h1 { font-size: 38px; }
  }
