/*
Theme Name: LuLuBooth
Theme URI: https://lulubooth.com
Author: ThinkLab (Ash)
Description: Custom single-page theme for LuLuBooth — Phuket's cutest photo booth. Ported from the Open Design landing page (Italiana + Montserrat, coral palette). Contact details, socials, and the enquiry form shortcode are editable under Appearance → Customize → LuLuBooth.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: lulubooth
*/

    /* ============================================================
       LULUBOOTH — Complete Styles
       Palette + typography aligned with the LuLu canonical logo:
         - High-contrast serif (Italiana / Cormorant) for display
         - Wide-tracked Montserrat for kickers, tags, buttons
         - Thin horizontal rule accent (the logo's underline)
         - Paw-print accent motif
       ============================================================ */

    /* ---------- RESET ---------- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ---------- CUSTOM PROPERTIES (Brand Spec) ---------- */
    :root {
      --coral:       #FF9A86;
      --coral-dark:  #E8826E;
      --peach:       #FFB399;
      --apricot:     #FFD6A6;
      --cream:       #FFF0BE;
      --teal:        #3AB795;
      --teal-dark:   #2E9E7E;
      --teal-light:  #7ED4C8;
      --bg:          oklch(99% 0.003 85);
      --surface:     #FFFFFF;
      --fg:          oklch(20% 0.02 70);
      --muted:       oklch(45% 0.02 70);
      --border:      oklch(90% 0.006 70);
      --radius:      4px;
      --radius-sm:   2px;
      --shadow:      0 6px 28px rgba(232, 130, 110, 0.18);
      --shadow-lg:   0 10px 44px rgba(232, 130, 110, 0.22);
      --font-display: 'Italiana', 'Cormorant Garamond', 'Times New Roman', serif;
      --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
      --font-body:   'Montserrat', system-ui, -apple-system, sans-serif;
      --max-width:   1240px;
      --nav-height:  84px;
    }

    /* ---------- BASE ---------- */
    html {
      scroll-behavior: smooth;
      -webkit-tap-highlight-color: transparent;
    }
    body {
      font-family: var(--font-body);
      color: var(--fg);
      background: var(--cream);
      line-height: 1.65;
      overflow-x: hidden;
      font-weight: 400;
      letter-spacing: 0.005em;
    }
    img { display: block; max-width: 100%; }
    a { color: var(--coral-dark); text-decoration: none; transition: color 0.2s; }
    a:hover { color: var(--teal-dark); }
    ul { list-style: none; }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ---------- TYPOGRAPHY ---------- */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: 0.005em;
      color: var(--fg);
    }

    /* Section kicker — wide-tracked uppercase, like "PHOTO BOOTH" tagline */
    .section-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.42em;
      color: var(--teal);
      margin-bottom: 20px;
      padding-left: 2px;
    }

    .section-title {
      font-size: clamp(2.6rem, 5.4vw, 4rem);
      margin-bottom: 16px;
      font-weight: 400;
    }

    .section-desc {
      font-family: var(--font-serif);
      font-size: clamp(1.05rem, 1.7vw, 1.18rem);
      font-weight: 400;
      font-style: italic;
      color: var(--muted);
      max-width: 640px;
      letter-spacing: 0.01em;
    }

    /* Underline accent — the logo's signature thin rule */
    .section-rule {
      display: block;
      width: 64px;
      height: 1px;
      background: var(--coral-dark);
      margin: 24px 0 32px;
    }
    .section-rule--center {
      margin-left: auto;
      margin-right: auto;
    }

    /* ---------- BUTTONS ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 38px;
      border: none;
      border-radius: 0;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .btn:active { transform: scale(0.97); }
    .btn--primary {
      background: var(--coral-dark);
      color: #fff;
      box-shadow: 0 6px 20px rgba(232, 130, 110, 0.35);
    }
    .btn--primary:hover {
      background: var(--fg);
      color: var(--cream);
      box-shadow: 0 8px 28px rgba(20, 25, 40, 0.3);
    }
    .btn--secondary {
      background: transparent;
      color: var(--coral-dark);
      border: 1px solid var(--coral-dark);
    }
    .btn--secondary:hover {
      background: var(--coral-dark);
      color: #fff;
    }
    .btn--white {
      background: #fff;
      color: var(--coral-dark);
    }
    .btn--white:hover {
      background: var(--cream);
    }

    /* ---------- PAW-PRINT ACCENT (SVG ICON, reusable) ---------- */
    .paw {
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: middle;
      fill: currentColor;
    }
    .paw--sm { width: 14px; height: 14px; }
    .paw--lg { width: 28px; height: 28px; }

    /* ---------- NAVIGATION ---------- */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-height);
      transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
      display: flex;
      align-items: center;
      border-bottom: 1px solid transparent;
    }
    .nav--scrolled {
      background: var(--coral);
      box-shadow: 0 4px 20px rgba(20, 25, 40, 0.18);
      border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .nav--scrolled .nav__logo-img {
      height: 52px;
    }
    .nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .nav__logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      line-height: 1;
    }
    .nav__logo:hover { opacity: 0.85; }
    .nav__logo-img {
      height: 64px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease, height 0.3s ease;
    }
    @media (max-width: 768px) {
      .nav__logo-img { height: 48px; }
    }

    .nav__links {
      display: flex;
      gap: 36px;
      align-items: center;
    }
    .nav__links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: #fff;
      transition: opacity 0.2s;
      position: relative;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0; right: 0;
      height: 1px;
      background: #fff;
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: left center;
    }
    .nav__links a:hover { opacity: 0.75; }
    .nav__links a:hover::after { transform: scaleX(1); }

    .nav__cta {
      padding: 12px 28px;
      background: #fff;
      color: var(--coral-dark) !important;
      font-weight: 600 !important;
    }
    .nav__cta:hover { background: var(--cream) !important; color: var(--coral-dark) !important; }
    .nav__cta::after { display: none !important; }

    /* Mobile nav */
    .nav__toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: #fff;
    }
    .nav__toggle svg { width: 28px; height: 28px; stroke: currentColor; }

    @media (max-width: 768px) {
      .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--coral);
        flex-direction: column;
        padding: 32px 32px 40px;
        gap: 24px;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 28px rgba(0,0,0,0.18);
      }
      .nav__links--open { transform: translateY(0); }
      .nav__toggle { display: block; }
      .nav__cta { width: 100%; text-align: center; }
    }

    /* ---------- HERO ---------- */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 110px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg,
        var(--coral) 0%,
        var(--peach) 32%,
        var(--apricot) 65%,
        var(--cream) 100%
      );
    }
    .hero__bg-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero__bg-shapes span {
      position: absolute;
      border-radius: 50%;
      opacity: 0.10;
    }
    .hero__bg-shapes span:nth-child(1) {
      width: 560px; height: 560px;
      background: var(--teal-light);
      top: -12%; right: -12%;
    }
    .hero__bg-shapes span:nth-child(2) {
      width: 320px; height: 320px;
      background: #fff;
      bottom: -6%; left: -8%;
    }
    .hero__bg-shapes span:nth-child(3) {
      width: 220px; height: 220px;
      background: var(--coral);
      top: 50%; left: 6%;
    }
    .hero__content {
      position: relative;
      z-index: 1;
      max-width: 860px;
    }
    .hero__kicker {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.46em;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 28px;
    }
    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(3.4rem, 8.2vw, 5.6rem);
      color: #fff;
      margin-bottom: 28px;
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 1.02;
    }
    .hero__sub {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.2rem, 2.2vw, 1.5rem);
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 12px;
      font-weight: 400;
      letter-spacing: 0.01em;
    }
    .hero__tagline {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.42em;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 44px;
    }
    .hero__actions {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero__rule {
      display: block;
      width: 80px;
      height: 1px;
      background: rgba(255, 255, 255, 0.7);
      margin: 0 auto 30px;
    }

    /* Hero wave divider */
    .hero__wave {
      position: absolute;
      bottom: -2px;
      left: 0; right: 0;
      width: 100%;
      height: 80px;
      fill: var(--cream);
    }

    /* ---------- SECTION COMMON ---------- */
    section {
      padding: 112px 0;
    }
    .section--cream {
      background: var(--cream);
    }
    .section--white {
      background: #fff;
    }
    .section--warm {
      background: linear-gradient(180deg, var(--cream) 0%, #fff 50%, var(--apricot) 100%);
    }

    .section__header {
      text-align: center;
      margin-bottom: 72px;
    }
    .section__header--left {
      text-align: left;
    }
    .section__header--left .section-rule {
      margin-left: 0;
      margin-right: 0;
    }

    /* ---------- HOW IT WORKS ---------- */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .step-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 48px 36px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      border-top: 1px solid rgba(232, 130, 110, 0.18);
    }
    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .step-card__number {
      font-family: var(--font-display);
      font-size: 3.2rem;
      color: var(--coral);
      margin-bottom: 18px;
      line-height: 1;
    }
    .step-card__icon {
      font-size: 1.6rem;
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--cream);
      color: var(--coral-dark);
    }
    .step-card__title {
      font-family: var(--font-display);
      font-size: 1.65rem;
      margin-bottom: 14px;
      color: var(--fg);
    }
    .step-card__desc {
      font-family: var(--font-serif);
      font-size: 1.02rem;
      color: var(--muted);
      line-height: 1.65;
      font-style: italic;
    }

    @media (max-width: 768px) {
      .steps { grid-template-columns: 1fr; gap: 24px; }
      .step-card { padding: 36px 28px; }
    }

    /* ---------- PACKAGES / PRICING ---------- */
    .packages {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      align-items: stretch;
    }
    .package-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 48px 36px;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(232, 130, 110, 0.18);
    }
    .package-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .package-card--featured {
      border: 1px solid var(--coral-dark);
      background: linear-gradient(180deg, #fff 0%, #fffefb 100%);
      box-shadow: 0 12px 48px rgba(232, 130, 110, 0.22);
    }
    .package-card--featured:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 56px rgba(232, 130, 110, 0.30);
    }
    .package-card__badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--coral-dark);
      color: var(--cream);
      padding: 8px 24px;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .package-card__name {
      font-family: var(--font-display);
      font-size: 1.9rem;
      color: var(--fg);
      margin-bottom: 6px;
      font-weight: 400;
    }
    .package-card__price {
      font-family: 'Poppins', var(--font-body);
      font-size: 2.55rem;
      font-weight: 600;
      color: var(--coral-dark);
      margin-bottom: 6px;
      line-height: 1;
      letter-spacing: -0.01em;
      font-feature-settings: "lnum" 1, "tnum" 1;
    }
    .package-card__price span {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-top: 8px;
    }
    /* Baht sign — sits on the baseline, sized to match the number */
    .package-card__price .package-card__currency {
      display: inline;
      font-family: 'Poppins', var(--font-body);
      font-size: 0.64em;
      font-weight: 600;
      vertical-align: baseline;
      margin-right: 3px;
      letter-spacing: 0;
      text-transform: none;
      color: var(--coral-dark);
    }
    .package-card__duration {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: var(--muted);
      margin-bottom: 26px;
    }
    .package-card__rule {
      width: 36px;
      height: 1px;
      background: var(--coral);
      margin: 0 0 24px;
    }
    .package-card__features {
      flex: 1;
      margin-bottom: 28px;
    }
    .package-card__features li {
      padding: 8px 0;
      font-size: 0.95rem;
      color: var(--fg);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: var(--font-serif);
      font-style: italic;
    }
    .package-card__features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--coral-dark);
      flex-shrink: 0;
      margin-top: 10px;
      border-radius: 50%;
    }
    .package-card .btn {
      width: 100%;
      justify-content: center;
    }
    .package-card__partner {
      margin-top: 16px;
      font-family: var(--font-body);
      font-size: 0.7rem;
      color: var(--muted);
      text-align: center;
      line-height: 1.6;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .package-card__partner strong {
      color: var(--coral-dark);
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .packages {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
      }
    }

    /* ---------- GALLERY (masonry) ---------- */
    .gallery-masonry {
      columns: 3;
      column-gap: 18px;
    }
    .gallery-item {
      position: relative;
      display: block;
      break-inside: avoid;
      -webkit-column-break-inside: avoid;
      margin: 0 0 18px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: var(--apricot);
      box-shadow: 0 8px 24px rgba(20, 25, 40, 0.06);
    }
    .gallery-item__photo {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover .gallery-item__photo {
      transform: scale(1.045);
    }
    .gallery-item__label {
      position: absolute;
      bottom: 0;
      left: 0; right: 0;
      padding: 30px 20px 16px;
      background: linear-gradient(transparent, rgba(20, 25, 40, 0.62));
      color: #fff;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1rem;
      letter-spacing: 0.02em;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      pointer-events: none;
    }
    .gallery-item:hover .gallery-item__label {
      opacity: 1;
      transform: translateY(0);
    }
    @media (max-width: 900px) {
      .gallery-masonry { columns: 2; column-gap: 14px; }
      .gallery-item { margin-bottom: 14px; }
    }
    @media (max-width: 520px) {
      .gallery-masonry { columns: 1; }
    }

    /* ---------- WHY LULU (trust strip + partner spotlight) ---------- */
    .trust {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      margin-bottom: 76px;
    }
    .trust-item {
      text-align: center;
      padding: 0 12px;
    }
    .trust-item__icon {
      width: 58px; height: 58px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--apricot), var(--cream));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--coral-dark);
    }
    .trust-item__title {
      font-family: var(--font-display);
      font-size: 1.32rem;
      margin-bottom: 8px;
      color: var(--fg);
    }
    .trust-item__desc {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .trust { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    }
    @media (max-width: 480px) {
      .trust { grid-template-columns: 1fr; }
    }

    /* Partner spotlight */
    .partner-feature {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border-top: 1px solid rgba(232, 130, 110, 0.18);
      padding: 56px 52px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    .partner-feature__eyebrow {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.42em;
      color: var(--teal);
      margin-bottom: 18px;
    }
    .partner-feature__name {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.4vw, 2.4rem);
      color: var(--coral-dark);
      margin-bottom: 20px;
    }
    .partner-feature__rule {
      width: 44px; height: 1px;
      background: var(--coral-dark);
      margin: 0 auto 24px;
    }
    .partner-feature__desc {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.1rem, 1.9vw, 1.28rem);
      line-height: 1.65;
      color: var(--fg);
      max-width: 620px;
      margin: 0 auto 28px;
    }
    @media (max-width: 480px) {
      .partner-feature { padding: 40px 28px; }
    }

    /* ---------- KEYCHAIN SHOWCASE ---------- */
    .keychain {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .keychain__media {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 3 / 2;
      background: var(--apricot);
    }
    .keychain__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .keychain__title {
      font-size: clamp(2.4rem, 4.6vw, 3.4rem);
      margin-bottom: 4px;
      font-weight: 400;
    }
    .keychain__desc {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.05rem, 1.7vw, 1.2rem);
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .keychain__list {
      margin-bottom: 32px;
    }
    .keychain__list li {
      padding: 9px 0;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.02rem;
      color: var(--fg);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }
    .keychain__list li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--coral-dark);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 10px;
    }
    @media (max-width: 820px) {
      .keychain { grid-template-columns: 1fr; gap: 32px; }
      .keychain__media { aspect-ratio: 4 / 3; }
    }

    /* ---------- CONTACT ---------- */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .contact-form {
      background: #fff;
      border-radius: var(--radius);
      padding: 48px;
      box-shadow: var(--shadow);
      border-top: 1px solid rgba(232, 130, 110, 0.18);
    }
    .form-group {
      margin-bottom: 22px;
    }
    .form-group label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      margin-bottom: 10px;
      color: var(--fg);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: none;
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-style: italic;
      transition: border-color 0.2s;
      background: transparent;
      color: var(--fg);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-bottom-color: var(--coral-dark);
    }
    .form-group select {
      font-style: normal;
      font-family: var(--font-body);
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      background: transparent;
      cursor: pointer;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .contact-form .btn {
      width: 100%;
      justify-content: center;
      margin-top: 14px;
    }

    .contact-info {
      padding-top: 4px;
    }
    .contact-info__item {
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
      align-items: flex-start;
    }
    .contact-info__icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--apricot), var(--cream));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--coral-dark);
    }
    .contact-info__label {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: var(--coral-dark);
      margin-bottom: 4px;
    }
    .contact-info__value {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.05rem;
      color: var(--fg);
    }
    .contact-info__value a {
      color: var(--fg);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .contact-info__value a:hover {
      color: var(--coral-dark);
      border-bottom-color: var(--coral-dark);
    }
    .contact-info__social {
      display: flex;
      gap: 14px;
      margin-top: 36px;
    }
    .contact-info__social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--coral-dark);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      color: var(--coral-dark);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .contact-info__social a:hover {
      background: var(--coral-dark);
      color: #fff;
      transform: scale(1.05);
    }

    .contact-partner {
      margin-top: 44px;
      padding: 28px;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      border-top: 1px solid rgba(232, 130, 110, 0.18);
    }
    .contact-partner__rule {
      display: block;
      width: 36px;
      height: 1px;
      background: var(--coral-dark);
      margin: 0 auto 16px;
    }
    .contact-partner p {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .contact-partner strong {
      color: var(--coral-dark);
      font-style: normal;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 400;
    }

    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-form { padding: 32px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ---------- PACKAGE PAGES ---------- */
    .pkg-hero {
      position: relative;
      text-align: center;
      padding: 172px 24px 128px;
      overflow: hidden;
      background: linear-gradient(160deg, var(--coral) 0%, var(--peach) 45%, var(--apricot) 100%);
    }
    .pkg-hero__content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
    .pkg-hero__eyebrow {
      font-family: var(--font-body); font-size: 0.74rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.42em; color: rgba(255,255,255,0.85);
      margin-bottom: 22px;
    }
    .pkg-hero__name {
      font-family: var(--font-display); color: #fff; font-weight: 400;
      font-size: clamp(2.8rem, 6.4vw, 4.6rem); line-height: 1.03; margin-bottom: 22px;
    }
    .pkg-hero__price {
      font-family: 'Poppins', var(--font-body); font-weight: 600; color: #fff;
      font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -0.01em;
    }
    .pkg-hero__price .package-card__currency { color: #fff; }
    .pkg-hero__per {
      font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.85);
      margin-left: 8px;
    }
    .pkg-hero__meta {
      font-family: var(--font-body); font-size: 0.74rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.82);
      margin-top: 14px; margin-bottom: 22px;
    }
    .pkg-hero__tagline {
      font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.95);
      font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; max-width: 620px;
      margin: 0 auto 38px;
    }
    .pkg-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .btn--ghost {
      background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.7);
    }
    .btn--ghost:hover { background: #fff; color: var(--coral-dark); }

    .pkg-details {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
    }
    .pkg-details__heading {
      font-family: var(--font-display); font-weight: 400; color: var(--fg);
      font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05;
    }
    .pkg-details__blurb {
      font-family: var(--font-serif); font-style: italic; font-size: 1.16rem;
      line-height: 1.75; color: var(--muted); margin-top: 4px;
    }
    .pkg-features { padding-top: 6px; }
    .pkg-features li {
      font-family: var(--font-serif); font-style: italic; font-size: 1.08rem;
      color: var(--fg); padding: 14px 0; display: flex; align-items: flex-start; gap: 14px;
      border-bottom: 1px solid var(--border);
    }
    .pkg-features li::before {
      content: '\2713'; color: var(--coral-dark); font-family: var(--font-body);
      font-weight: 700; font-size: 0.95rem; font-style: normal; margin-top: 3px; flex-shrink: 0;
    }
    @media (max-width: 820px) {
      .pkg-details { grid-template-columns: 1fr; gap: 28px; }
    }

    .pkg-cta {
      background: var(--coral); color: #fff; text-align: center; padding: 96px 24px;
    }
    .pkg-cta__eyebrow {
      font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.42em; color: rgba(255,255,255,0.85);
      margin-bottom: 14px;
    }
    .pkg-cta__title {
      font-family: var(--font-display); color: #fff; font-weight: 400;
      font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px;
    }
    .pkg-cta__text {
      font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.92);
      font-size: 1.15rem; margin-bottom: 32px;
    }
    .pkg-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .pkg-cta .btn--white:hover { background: var(--cream); }

    /* ---------- FOOTER ---------- */
    .footer {
      background: var(--coral);
      color: #fff;
      padding: 64px 0 40px;
      text-align: center;
    }
    .footer__logo {
      margin-bottom: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .footer__logo-img {
      height: 80px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }
    .footer__tagline {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1rem;
      opacity: 0.92;
      margin-bottom: 8px;
    }
    .footer__rule {
      display: block;
      width: 56px;
      height: 1px;
      background: rgba(255, 255, 255, 0.7);
      margin: 16px auto 28px;
    }
    .footer__links {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .footer__links a {
      color: rgba(255, 255, 255, 0.92);
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.32em;
      transition: color 0.2s;
    }
    .footer__links a:hover { color: #fff; }
    .footer__divider {
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      max-width: 600px;
      margin: 0 auto 28px;
    }
    .footer__copy {
      font-family: var(--font-body);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      opacity: 0.78;
    }

    /* ---------- SCROLL ANIMATIONS ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal--visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---------- RESPONSIVE TWEAKS ---------- */
    @media (max-width: 480px) {
      section { padding: 80px 0; }
      .hero { padding: 120px 20px 80px; }
      .hero__actions { flex-direction: column; align-items: center; }
      .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
    }

    /* ---------- SAFE AREA FOR iOS NOTCH ---------- */
    @supports (padding-top: env(safe-area-inset-top)) {
      .nav { padding-top: env(safe-area-inset-top); height: calc(var(--nav-height) + env(safe-area-inset-top)); }
    }
