
  :root {
    --gold: #B5813A;
    --gold-light: #C9962F;
    --gold-pale: #F0E2C8;
    --black: #2C1A0E;
    --near-black: #3A2210;
    --charcoal: #4A2E18;
    --gray: #8B7355;
    --light: #F7F0E6;
    --cream: #FBF6EE;
    --white: #FFFFFF;
    --warm-mid: #6B3E1E;
    --text-light: #5C3D1E;
  }

  body {
    background: var(--cream);
    color: var(--black);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

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

  body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.8rem 4rem;
    background: rgba(44,26,14,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  nav > * { max-width: 1400px; margin: 0 auto; }

  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }

  .nav-logo img {
    transition: opacity 0.2s;
  }
  .nav-logo:hover img { opacity: 0.85; }

  .nav-links {
    display: flex; gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 2px;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
  }

  .nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

  /* PAGE SECTIONS */
  .page { display: none; }
  .page.active { display: block; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FBF6EE 0%, #F0E2C8 50%, #E8D0A8 100%);
  }

  /* Stretch hero bg full width */
  .hero-bg-wrap {
    background: linear-gradient(135deg, #FBF6EE 0%, #F0E2C8 50%, #E8D0A8 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem 6rem min(8rem, 8vw);
    position: relative;
    max-width: 680px;
    margin-left: auto;
  }

  .hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
  }

  .hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--black);
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 1px solid var(--black);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(181,129,58,0.06); }

  .hero-stats {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44,26,14,0.12);
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
  }

  .hero-stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
  }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem min(8rem, 8vw) 4rem 2rem;
    max-width: 680px;
    margin-right: auto;
  }

  .hero-logo-display {
    max-width: 520px;
    width: 100%;
    opacity: 0.95;
  }

  /* SECTION HEADERS */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 1.2rem auto 0;
  }

  /* ABOUT STRIP */
  .about-strip {
    background: #3A2210;
    color: var(--cream);
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
  }

  .about-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    color: var(--cream);
  }

  .about-strip h2 em { font-style: italic; color: var(--gold); }

  .about-strip p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pillar {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
  }

  .pillar-title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .pillar-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  /* PACKAGES */
  .packages-section {
    padding: 6rem 4rem;
    background: var(--cream);
  }

  .pkg-tabs-wrap {
    width: 100%;
  }

  .pkg-tab-btns {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid var(--black);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .pkg-tab-btn {
    background: transparent;
    border: none;
    padding: 0.85rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--black);
    transition: background 0.25s, color 0.25s;
    position: relative;
  }

  .pkg-tab-btn:first-child {
    border-right: 1.5px solid var(--black);
  }

  .pkg-tab-btn.active {
    background: var(--black);
    color: var(--cream);
  }

  .pkg-tab-content {
    display: none;
  }

  .pkg-tab-content.active {
    display: block;
  }

  .pkg-carousel-track-wrap {
    overflow: hidden;
    position: relative;
  }

  .pkg-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .packages-carousel-wrap {
    position: relative;
  }

  .packages-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .package-card {
    background: #FFFAF4;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,26,14,0.08);
    border: 1px solid rgba(44,26,14,0.07);
  }

  .package-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    border-radius: 16px 16px 0 0;
  }

  .package-card:hover::before { transform: scaleX(1); }
  .package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(44,26,14,0.15); }

  .package-card.featured {
    background: var(--black);
    color: var(--cream);
  }

  .package-card.featured .pkg-name,
  .package-card.featured .pkg-price,
  .package-card.featured .pkg-desc,
  .package-card.featured .pkg-feature { color: var(--cream); }

  .package-card.featured .pkg-tag { background: var(--gold); color: var(--black); }

  .pkg-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .pkg-price {
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
  }

  .package-card.featured .pkg-price { color: var(--gold-pale); }

  .pkg-duration {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .pkg-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .pkg-features { list-style: none; margin-bottom: 2rem; }

  .pkg-feature {
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(44,26,14,0.08);
    display: flex; gap: 0.6rem; align-items: center;
  }

  .pkg-feature::before { content: '✦'; font-size: 0.5rem; color: var(--gold); }
  .package-card.featured .pkg-feature::before { color: var(--gold); }

  .carousel-nav, .pkg-carousel-nav {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 2rem;
  }

  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
  }

  .carousel-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

  /* GALLERY */
  .gallery-section {
    padding: 6rem 4rem;
    background: #F0E2C8;
  }

  .gallery-track-wrap {
    overflow: hidden;
    position: relative;
  }

  .gallery-track {
    touch-action: pan-y;
    will-change: transform;
    display: flex;
    gap: 16px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .gallery-item {
    flex: 0 0 200px;
    aspect-ratio: 2/3;
    background: #D4B896;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(44,26,14,0.18);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 48px rgba(44,26,14,0.28);
  }

  .gallery-item .gal-placeholder {
    font-size: 3rem;
    opacity: 0.3;
  }

  .gallery-item .gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 1rem;
  }

  .gallery-item:hover .gal-overlay { opacity: 1; }

  .gallery-item .gal-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
  }

  .gallery-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 2rem;
  }

  .gallery-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.4);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, border-color 0.2s;
  }

  .gallery-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

  /* TESTIMONIALS */
  .testimonials-section {
    padding: 6rem 4rem 4rem;
    background: #3A2210;
  }


  .testi-card {
    background: rgba(251,246,238,0.06);
    border: 1px solid rgba(240,226,200,0.2);
    padding: 2rem;
    position: relative;
  }

  .testi-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
  }

  .testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .testi-text {
    font-size: 0.9rem;
    color: rgba(251,246,238,0.8);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .testi-author {
    display: flex; align-items: center; gap: 0.8rem;
  }

  .testi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--black);
  }

  .testi-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
  }

  .testi-pet {
    font-size: 0.75rem;
    color: #E8C96A;
    opacity: 0.9;
  }

  /* BOOKING CTA */
  .booking-cta {
    padding: 7rem 4rem;
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .booking-cta::before {
    content: '🐾';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .booking-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .booking-cta h2 em { font-style: italic; color: var(--gold); }

  .booking-cta p {
    color: rgba(251,246,238,0.75);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
  }

  /* STORE PAGE */
  .store-hero {
    padding: 10rem 4rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #FBF6EE 0%, #F0E2C8 100%);
  }

  .store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 4rem 6rem;
    background: #FBF6EE;
  }

  /* ── PRODUCT CARD ── */
  .product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(44,26,14,0.06);
    border: 1px solid rgba(44,26,14,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(44,26,14,0.14);
  }

  /* ── PRODUCT IMAGE AREA ── */
  .product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #F5EDE0;
    border-radius: 0;
  }

  .product-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .product-img-primary {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }

  .product-img-hover {
    opacity: 0;
    transform: scale(1.05);
    z-index: 2;
  }

  .product-card:hover .product-img-primary {
    opacity: 0;
    transform: scale(1.05);
  }

  .product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1);
  }

  .product-img-placeholder {
    width: 100%;
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #F5EDE0, #EDD9C0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }

  .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    z-index: 3;
  }

  /* ── PRODUCT INFO ── */
  .product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-category {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.4rem;
  }

  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }

  .product-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
  }

  .product-select {
    width: 100%;
    margin-bottom: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(44,26,14,0.15);
    background: #FDFAF6;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--black);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5813A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .product-select:focus { border-color: var(--gold); }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(44,26,14,0.07);
  }

  .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
  }

  .product-price-from {
    font-size: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--gray);
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
  }

  .btn-add {
    background: var(--black);
    color: var(--cream);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
  }

  .btn-add:hover { background: var(--gold); transform: scale(1.03); }
  .btn-add:active { transform: scale(0.97); }

  .product-img { display: none; }


  /* ---- POLAROID STACK ---- */
  .polaroid-stack {
    position: relative;
    width: 360px;
    height: 430px;
    margin: auto;
  }

  .polaroid-card {
    position: absolute;
    width: 310px;
    background: #fff;
    padding: 14px 14px 48px;
    box-shadow: 0 12px 40px rgba(44,26,14,0.22), 0 2px 8px rgba(44,26,14,0.10);
    transform: rotate(var(--rot)) translate(var(--tx), var(--ty));
    transform-origin: center bottom;
    top: 0; left: 0;
    cursor: pointer;
    will-change: transform;
    border-radius: 2px;
    transition: transform 0.52s cubic-bezier(0.34, 1.15, 0.64, 1);
  }

  .polaroid-card.swiping-off {
    transition: none;
    animation: swipeOff 0.62s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes swipeOff {
    0%   { transform: rotate(var(--rot)) translate(var(--tx), var(--ty)); opacity: 1; z-index: 10; }
    18%  { transform: rotate(calc(var(--rot) - 4deg)) translate(calc(var(--tx) - 10px), calc(var(--ty) - 18px)); opacity: 1; z-index: 10; }
    40%  { transform: rotate(calc(var(--rot) + 18deg)) translate(calc(var(--tx) + 80px), calc(var(--ty) - 30px)); opacity: 1; z-index: 10; }
    100% { transform: rotate(calc(var(--rot) + 26deg)) translate(calc(var(--tx) + 460px), calc(var(--ty) + 50px)); opacity: 0; z-index: 10; }
  }

  .polaroid-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f0e8d8;
  }

  .polaroid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .polaroid-name {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #555;
    margin-top: 10px;
    font-weight: 400;
  }


  /* ---- FAQ SECTION ---- */
  .faq-item {
    background: rgba(251,246,238,0.06);
    border: 1px solid rgba(240,226,200,0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.2s;
  }

  .faq-item[open] {
    background: rgba(251,246,238,0.1);
  }

  .faq-q {
    padding: 1.2rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--cream);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
  }

  .faq-q::-webkit-details-marker { display: none; }

  .faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s;
  }

  .faq-item[open] .faq-q::after {
    transform: rotate(45deg);
  }

  .faq-a {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.85rem;
    color: rgba(251,246,238,0.7);
    line-height: 1.75;
  }


  /* ---- TESTIMONIAL CARDS (base styles) ---- */
  .testi-carousel-wrap {
    overflow: hidden;
    padding: 0 4rem;
  }

  .testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .testi-card-new {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(251,246,238,0.07);
    border: 1px solid rgba(240,226,200,0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
  }

  .testi-card-new:hover {
    background: rgba(251,246,238,0.11);
    transform: translateY(-4px);
  }

  .testi-photo-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.4rem;
    border: 3px solid rgba(201,168,76,0.35);
    background: #4A2E18;
    flex-shrink: 0;
  }

  .testi-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .testi-stars-new {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
  }

  .testi-pet-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .testi-quote {
    font-size: 0.85rem;
    color: rgba(251,246,238,0.7);
    line-height: 1.75;
    font-style: italic;
  }

  .testi-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding: 0 4rem;
  }

  .testi-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .testi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(251,246,238,0.25);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
  }

  .testi-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
  }


  /* ════════════════════════════════════════
     MOBILE ONLY all inside @media max 768
     Desktop styles above are NOT touched
  ════════════════════════════════════════ */

  /* -- Hamburger button -- */
  .mob-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px; height: 17px;
    background: none; border: none;
    cursor: pointer; padding: 0; flex-shrink: 0;
  }
  .mob-burger span {
    display: block; width: 100%; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .mob-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .mob-burger.open span:nth-child(2) { opacity: 0; }
  .mob-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* -- Mobile slide-in menu -- */
  .mob-menu {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100dvh;
    background: #2C1A0E;
    z-index: 500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
    border-left: 1px solid rgba(201,168,76,0.15);
    box-shadow: -12px 0 50px rgba(0,0,0,0.5);
  }
  .mob-menu.open { transform: translateX(0); }

  .mob-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .mob-menu-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
  }
  .mob-menu-close {
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .mob-menu-close:hover { background: rgba(255,255,255,0.15); }

  .mob-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .mob-nav a {
    color: rgba(255,255,255,0.82);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0.95rem 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s, background 0.2s;
  }
  .mob-nav a:last-child { border-bottom: none; }
  .mob-nav a:active, .mob-nav a:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.06);
  }

  .mob-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
  }
  .mob-book-btn {
    display: block;
    background: var(--gold);
    color: var(--black) !important;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
  }
  .mob-book-btn:hover { background: #C9962F; }
  .mob-ig-link {
    display: block;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.08em;
    transition: color 0.2s;
  }
  .mob-ig-link:hover { color: var(--gold); }

  .mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .mob-overlay.open { opacity: 1; pointer-events: auto; }

  /* -- Mobile package swipe carousel -- */
  .mob-pkg-wrap { display: none; }
  .mob-pkg-tabs {
    display: flex; gap: 0;
    margin-bottom: 1.5rem;
    border: 1.5px solid var(--black);
    border-radius: 4px; overflow: hidden;
    width: fit-content; margin-left: auto; margin-right: auto;
  }
  .mob-pkg-tab {
    background: transparent; border: none;
    padding: 0.7rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; color: var(--black);
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-pkg-tab:first-child { border-right: 1.5px solid var(--black); }
  .mob-pkg-tab.active { background: var(--black); color: var(--cream); }

  .mob-pkg-viewport {
    overflow: hidden;
    /* peek: show 84% of card + 8% each side */
    padding: 0 10%;
  }
  .mob-pkg-track {
    touch-action: pan-y;
    display: flex;
    gap: 14px;
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
    cursor: grab;
    will-change: transform;
  }
  .mob-pkg-track.dragging { cursor: grabbing; transition: none; }

  .mob-pkg-card {
    flex: 0 0 84%;
    background: #FFFAF4;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    box-shadow: 0 4px 20px rgba(44,26,14,0.1);
    border: 1px solid rgba(44,26,14,0.07);
  }
  .mob-pkg-featured {
    background: var(--black);
  }
  .mob-pkg-featured .pkg-tag,
  .mob-pkg-featured .pkg-name,
  .mob-pkg-featured .pkg-price,
  .mob-pkg-featured .pkg-duration,
  .mob-pkg-featured .pkg-desc { color: var(--cream); }
  .mob-pkg-featured .pkg-feature { color: var(--cream); border-color: rgba(251,246,238,0.08); }
  .mob-pkg-featured .pkg-feature::before { color: var(--gold); }

  .mob-pkg-dots {
    display: flex; justify-content: center;
    gap: 6px; margin-top: 1.25rem;
  }
  .mob-pkg-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(44,26,14,0.2);
    transition: background 0.2s, width 0.2s;
    cursor: pointer;
  }
  .mob-pkg-dot.active {
    background: var(--gold);
    width: 22px; border-radius: 4px;
  }

  /* ════════════════════════════════════════
     RESPONSIVE BREAKPOINTS
  ════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 0 2rem; height: 60px; display: flex; align-items: center; justify-content: space-between; }
    .nav-links { display: none; }
    .mob-burger { display: flex; }

    /* Hero */
    .hero { grid-template-columns: 1fr; padding-top: 60px; min-height: auto; overflow: hidden; }
    .hero::before { display: none; }
    .hero-left { padding: 2rem 2rem 2.5rem; }
    .hero-tag { font-size: 0.62rem; }

    /* Title row: h1 stacked above polaroid on mobile */
    .hero-title-row {
      display: block !important;
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-size: clamp(1.9rem, 8.5vw, 2.5rem);
      margin-bottom: 1.5rem;
    }

    /* Hide the big desktop right column on mobile */
    .hero > .hero-right { display: none !important; }

    /* Polaroid stack below title, centered */
    .hero-title-polaroid {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 200px;
      margin-bottom: 0.5rem;
    }
    .hero-title-polaroid .polaroid-stack {
      position: relative;
      width: 170px;
      height: 195px;
      margin: 0 auto;
    }
    .hero-title-polaroid .polaroid-card {
      width: 155px;
      padding: 7px 7px 38px;
      box-shadow: 0 6px 20px rgba(44,26,14,0.3);
    }
    .hero-title-polaroid .polaroid-name {
      font-size: 0.6rem;
      margin-top: 4px;
      letter-spacing: 0.12em;
    }
    .hero-title-polaroid .polaroid-photo { aspect-ratio: 1; }

    .hero-sub { font-size: 0.92rem; max-width: 100%; margin-top: 0.5rem; }
    .hero-tag { justify-content: center; }
    .hero-btns { flex-direction: column; gap: 0.75rem; align-items: center; }
    .hero-btns .btn-gold, .hero-btns .btn-outline { text-align: center; width: auto; min-width: 220px; padding: 0.9rem 2rem; }
    .hero-stats { gap: 0; padding-top: 1.5rem; margin-top: 1.5rem; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; }
    .hero-stat-num { font-size: 1.4rem; }
    .hero-stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }

    /* About */
    .about-strip { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
    .about-strip h2 { font-size: 1.8rem; }
    .about-pillars { grid-template-columns: 1fr; }

    /* Packages hide desktop, show mobile */
    .pkg-tabs-wrap { display: none !important; }
    .mob-pkg-wrap { display: block; }
    .packages-section { padding: 3rem 0; }
    .section-header { padding: 0 2rem; margin-bottom: 2rem; }

    /* Gallery strip */
    .gallery-section { padding: 3rem 2rem; }
    .gallery-item { flex: 0 0 150px; }

    /* Testimonials */
    .testimonials-section { padding: 3rem 2rem 2rem; }
    .testi-carousel-wrap { padding: 0; }
    .testi-card-new { flex: 0 0 100%; padding: 1.75rem 2rem; border-radius: 14px; }
    .testi-photo-circle { width: 88px; height: 88px; }
    .testi-pet-name { font-size: 1.05rem; }
    .testi-quote { font-size: 0.82rem; }
    .testi-carousel-nav { padding: 0; margin-top: 1.5rem; }

    /* FAQ */
    .faq-section { padding: 2.5rem 2rem 0.5rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-q { font-size: 0.85rem; padding: 0.95rem 1.1rem; }
    .faq-a { font-size: 0.82rem; padding: 0 1.1rem 0.9rem; }

    /* CTA */
    .booking-cta { padding: 2.5rem 2rem; }
    .booking-cta h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .booking-cta > div[style] { flex-direction: column !important; gap: 0.75rem !important; }

    /* Section headers */
    .section-title { font-size: clamp(1.75rem, 8vw, 2.2rem) !important; }

    /* Store */
    .store-hero { padding: 5.5rem 2rem 2rem; }
    .store-grid { grid-template-columns: 1fr; padding: 0 2rem 3rem; }
/* Footer */
    footer { grid-template-columns: 1fr; padding: 2rem 2rem; gap: 2rem; overflow: visible; }
    .footer-col { min-width: 0; overflow: visible; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; padding: 1rem 2rem; text-align: center; }

    /* Touch */
    input, select, textarea { font-size: 16px !important; }
    .btn-gold, .btn-outline, .faq-q { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  }

    /* Shorter swipe distance on mobile mini stack */
    @keyframes swipeOff {
      0%   { transform: rotate(var(--rot)) translate(var(--tx), var(--ty)); opacity: 1; z-index: 10; }
      18%  { transform: rotate(calc(var(--rot) - 3deg)) translate(calc(var(--tx) - 6px), calc(var(--ty) - 10px)); opacity: 1; z-index: 10; }
      40%  { transform: rotate(calc(var(--rot) + 12deg)) translate(calc(var(--tx) + 35px), calc(var(--ty) - 15px)); opacity: 1; z-index: 10; }
      100% { transform: rotate(calc(var(--rot) + 22deg)) translate(calc(var(--tx) + 200px), calc(var(--ty) + 25px)); opacity: 0; z-index: 10; }
    }

  
  body.no-scroll { overflow: hidden; position: fixed; width: 100%; }


  /* Desktop: hero-title-row is a normal block, mini polaroid hidden */
  .hero-title-row { display: block; margin-bottom: 0; }
  @media (min-width: 769px) { .hero-title-polaroid { display: none !important; } }


  /* ---- CONTACT PAGE ---- */
  .contact-hero {
    padding: 10rem 4rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #FBF6EE 0%, #F0E2C8 100%);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    background: var(--cream);
  }

  .contact-details {
    padding: 4rem;
    background: #F7EFE2;
    border-right: 1px solid rgba(44,26,14,0.08);
  }

  .contact-form-wrap {
    padding: 4rem;
    background: var(--cream);
  }

  .contact-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(44,26,14,0.07);
  }

  .contact-item:last-of-type {
    border-bottom: none;
  }

  .contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 28px;
    padding-top: 2px;
  }

  .contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.3rem;
  }

  .contact-value {
    font-size: 0.95rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
  }

  .contact-value:hover { color: var(--gold); }

  .contact-note {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 0.2rem;
  }

  /* Form */
  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
  }

  .form-group input,
  .form-group textarea {
    background: #FFFAF4;
    border: 1px solid rgba(44,26,14,0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--black);
    transition: border-color 0.2s;
    width: 100%;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(44,26,14,0.35);
  }

  
  /* ── SITE FOOTER ── */
  footer {
    background: var(--black);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 6rem;
    align-items: start;
  }

  .footer-brand {}

  .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  .footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
  }

  .footer-col a, .footer-col p {
    display: block;
    color: rgba(251,246,238,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
  }

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

  .footer-ig {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold) !important;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem !important;
    margin-top: 0.5rem;
  }

  .footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.25rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(251,246,238,0.35);
    font-family: 'DM Sans', sans-serif;
  }

  .footer-bottom a { color: rgba(251,246,238,0.5); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }


  /* ── BOOKING MODAL ── */
  .modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
  .modal-backdrop.open { display: flex; }
  .modal-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  }
  .modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(44,26,14,0.08);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(44,26,14,0.15); }
  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .modal-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-details { border-right: none; border-bottom: 1px solid rgba(44,26,14,0.08); padding: 3rem 2rem; }
    .contact-form-wrap { padding: 3rem 2rem; }
    .contact-hero { padding: 7rem 2rem 3rem; }
    .contact-form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .contact-hero { padding: 5.5rem 2rem 2.5rem; }
    .contact-details { padding: 2.5rem 2rem; }
    .contact-form-wrap { padding: 2.5rem 2rem; }
  }
    .packages-section .section-header,
    .packages-section .pkg-tabs-wrap {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }
    .gallery-section .section-header,
    .gallery-section .gallery-track-wrap,
    .gallery-section .gallery-controls {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }
    .testimonials-section .section-header,
    .testimonials-section .testi-carousel-wrap,
    .testimonials-section .testi-carousel-nav {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }
    .faq-section .section-header,
    .faq-section .faq-grid {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }
    .booking-cta .section-header,
    .booking-cta > p,
    .booking-cta > div {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-hero > *,
    .contact-grid {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }
    nav {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
  }



    .packages-section {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    .gallery-section {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    .testimonials-section {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    .faq-section {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    .booking-cta {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    .contact-hero {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    .contact-grid {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    nav {
      padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
    }
    footer {
      padding-left: max(2rem, calc((100vw - 1280px) / 2 + 4rem));
      padding-right: max(2rem, calc((100vw - 1280px) / 2 + 4rem));
    }
  }


  /* ── WIDE SCREEN FIX: increase section padding to keep content centred ── */
  @media (min-width: 1400px) {
    .about-strip,
    .packages-section,
    .gallery-section,
    .testimonials-section,
    .faq-section,
    .booking-cta,
    .contact-hero,
    .contact-grid,
    .store-hero,
    .store-grid {
      padding-left: calc((100vw - 1280px) / 2);
      padding-right: calc((100vw - 1280px) / 2);
    }
    nav {
      padding-left: calc((100vw - 1280px) / 2 + 2rem);
      padding-right: calc((100vw - 1280px) / 2 + 2rem);
    }
    footer {
      padding-left: calc((100vw - 1280px) / 2 + 2rem);
      padding-right: calc((100vw - 1280px) / 2 + 2rem);
    }
  }


  /* ═══════════════════════════════════════
     PROMO POPUP
  ══════════════════════════════════════ */
  .promo-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(44, 26, 14, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .promo-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }
  .promo-modal {
    background: linear-gradient(148deg, #FBF6EE 0%, #F4E4C4 100%);
    border-radius: 22px;
    padding: 2.6rem 2.2rem 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 36px 90px rgba(44,26,14,0.32), 0 4px 18px rgba(44,26,14,0.12);
    transform: translateY(28px) scale(0.93);
    opacity: 0;
    transition: transform 0.48s cubic-bezier(0.34, 1.18, 0.64, 1), opacity 0.36s ease;
  }
  .promo-backdrop.open .promo-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .promo-close {
    position: absolute;
    top: 14px; right: 16px;
    width: 30px; height: 30px;
    background: rgba(44,26,14,0.09);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    color: rgba(44,26,14,0.45);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .promo-close:hover { background: rgba(44,26,14,0.16); color: rgba(44,26,14,0.75); }
  .promo-paw {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.4rem;
    animation: promoPawIn 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) 0.3s both;
  }
  @keyframes promoPawIn {
    from { transform: scale(0.4) rotate(-20deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  .promo-badge {
    display: inline-block;
    background: linear-gradient(90deg, #B5813A, #D4A855);
    color: #fff;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 999px;
    margin-bottom: 1rem;
  }
  .promo-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C1A0E;
    line-height: 1.2;
    margin-bottom: 0.65rem;
  }
  .promo-body-text {
    font-size: 0.88rem;
    color: rgba(44,26,14,0.62);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .promo-code-wrap { margin-bottom: 1.6rem; }
  .promo-code-label {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(44,26,14,0.42);
    margin-bottom: 0.55rem;
  }
  .promo-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 2px dashed #B5813A;
    border-radius: 11px;
    padding: 14px 22px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
  }
  .promo-code-box::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(181,129,58,0.14), transparent);
    animation: promoShimmer 2.6s ease 1s infinite;
  }
  @keyframes promoShimmer {
    0%   { left: -80%; }
    100% { left: 150%; }
  }
  .promo-code-box:hover { border-color: #D4A855; background: rgba(181,129,58,0.04); }
  .promo-code-box.copied { border-color: #5a9e72; background: rgba(90,158,114,0.06); border-style: solid; }
  .promo-code-text {
    font-family: 'SF Mono', 'Fira Mono', 'Consolas', monospace;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #2C1A0E;
  }
  .promo-copy-icon { color: #B5813A; display: flex; align-items: center; flex-shrink: 0; }
  .promo-code-box.copied .promo-copy-icon { color: #5a9e72; }
  .promo-copy-hint {
    font-size: 0.72rem;
    color: rgba(44,26,14,0.38);
    margin-top: 7px;
    transition: color 0.2s;
    min-height: 1.1em;
  }
  .promo-copy-hint.copied { color: #5a9e72; }
  .promo-cta-btn {
    width: 100%;
    background: linear-gradient(90deg, #B5813A, #C9962F);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 13px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    margin-bottom: 0.85rem;
    transition: opacity 0.2s, transform 0.15s;
  }
  .promo-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
  .promo-skip {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: rgba(44,26,14,0.38);
    cursor: pointer;
    padding: 4px 8px;
    display: block;
    margin: 0 auto;
    transition: color 0.2s;
  }
  .promo-skip:hover { color: rgba(44,26,14,0.6); }




/* ═══════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION LAYER — taste-skill v2
   Applied per the redesign-skill mobile spec. Loads AFTER all other
   rules so it cleanly wins cascade battles on small viewports.
════════════════════════════════════════════════════════════════════════ */

/* ── 1. Respect user motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .polaroid-card.swiping-off { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── 2. Prevent horizontal scroll on touch devices ── */
html, body { overflow-x: clip; overscroll-behavior-y: contain; }

/* ── 3. Safe-area insets (notch / home indicator / punch-hole) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  header nav { padding-top: env(safe-area-inset-top, 0); }
  .mob-menu {
    padding-top: calc(env(safe-area-inset-top, 0) + 0px);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}

/* ── 4. Mobile sticky "Book a Session" CTA ── */
.mob-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 14px 16px calc(env(safe-area-inset-bottom, 0) + 14px);
  background: linear-gradient(to top, rgba(251,246,238,0.98) 0%, rgba(251,246,238,0.92) 60%, rgba(251,246,238,0));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translateY(105%);
  transition: transform 0.42s cubic-bezier(0.34, 1.18, 0.64, 1);
  pointer-events: none;
}
.mob-sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.mob-sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(95deg, #B5813A 0%, #8E611F 100%);
  color: #FBF6EE;
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 14px 40px rgba(181, 129, 58, 0.38),
    0 3px 10px rgba(44, 26, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.18s cubic-bezier(0.34, 1.2, 0.64, 1);
  min-height: 54px;
}
.mob-sticky-cta-btn:active { transform: scale(0.96); }
.mob-sticky-cta-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2.5;
  flex-shrink: 0;
}

/* Only show on mobile viewports */
@media (max-width: 768px) {
  .mob-sticky-cta { display: block; }
  /* Give footer breathing room so sticky CTA never overlaps it */
  body.mob-cta-active footer { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0)); }
}

/* ── 5. Fluid type scale for mobile ── */
@media (max-width: 768px) {
  :root {
    --fs-display: clamp(2rem, 9.2vw, 3rem);
    --fs-h1:      clamp(1.75rem, 7.4vw, 2.45rem);
    --fs-h2:      clamp(1.45rem, 6.2vw, 1.95rem);
    --fs-h3:      clamp(1.08rem, 4.6vw, 1.3rem);
    --fs-body:    clamp(0.92rem, 4vw, 1.02rem);
    --fs-small:   clamp(0.76rem, 3.4vw, 0.86rem);
  }
  .hero-title,
  .hero-title em { font-size: var(--fs-display); line-height: 1.04; text-wrap: balance; }
  .section-title { font-size: var(--fs-h1) !important; line-height: 1.1; text-wrap: balance; }
  h2 { line-height: 1.12; text-wrap: balance; }
  p, li { line-height: 1.62; }
}

/* ── 6. Larger, friendlier tap targets ── */
@media (max-width: 768px) {
  a, button, [role="button"], input[type="checkbox"], label, .faq-q, .mob-pkg-card, .testi-dot {
    -webkit-tap-highlight-color: rgba(181, 129, 58, 0.12);
  }
  .btn-gold, .btn-outline, .faq-q, .mob-nav a, .mob-pkg-tab,
  .section-tab, .testi-carousel-arrow { min-height: 48px; }
  .mob-nav a { padding: 1.1rem 1.75rem; font-size: 1.2rem; }
  .footer-col a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ── 7. Hero polish for mobile ── */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(60px + env(safe-area-inset-top, 0));
    min-height: auto;
  }
  .hero-left { padding: 1.5rem 1.35rem 2rem; }
  .hero-tag {
    display: inline-flex;
    justify-content: flex-start;
    margin-bottom: 0.7rem;
    font-size: clamp(0.58rem, 2.8vw, 0.68rem);
    letter-spacing: 0.18em;
  }
  .hero-title { margin-bottom: 1.2rem; }
  .hero-sub {
    font-size: var(--fs-body);
    max-width: 95%;
    margin: 0.4rem 0 1.5rem;
    line-height: 1.6;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    min-width: 0;
    padding: 1.05rem 1.5rem;
    min-height: 54px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    border-radius: 6px;
  }
  /* Stats as a soft inline panel */
  .hero-stats {
    background: rgba(44, 26, 14, 0.035);
    border: 1px solid rgba(44, 26, 14, 0.07);
    border-radius: 14px;
    padding: 1rem 0.5rem;
    margin-top: 1.75rem;
    justify-content: space-around;
    gap: 0;
  }
  .hero-stat { text-align: center; padding: 0 0.25rem; }
  .hero-stat-num {
    font-size: clamp(1.3rem, 5.8vw, 1.65rem);
    font-variant-numeric: tabular-nums;
  }
  .hero-stat-label {
    font-size: clamp(0.58rem, 2.4vw, 0.66rem);
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-top: 2px;
  }
}

/* ── 8. Polaroid stack — smoother mobile positioning ── */
@media (max-width: 768px) {
  .hero-title-polaroid {
    height: 220px;
    margin-bottom: 0.75rem;
  }
  .hero-title-polaroid .polaroid-stack {
    width: 180px;
    height: 215px;
  }
  .hero-title-polaroid .polaroid-card {
    width: 165px;
    padding: 8px 8px 36px;
    box-shadow: 0 10px 26px rgba(44, 26, 14, 0.26), 0 2px 6px rgba(44,26,14,0.1);
  }
}

/* ── 9. About section — denser, more scannable ── */
@media (max-width: 768px) {
  .about-strip {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3.25rem 1.5rem;
  }
  .about-strip h2 { font-size: var(--fs-h1); }
  .about-strip p { font-size: var(--fs-body); }
  .about-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .pillar {
    padding: 1rem 0.85rem;
    border-radius: 10px;
    background: rgba(44, 26, 14, 0.04);
    border: 1px solid rgba(44, 26, 14, 0.06);
  }
  .pillar-title { font-size: 0.74rem; letter-spacing: 0.1em; }
  .pillar-text { font-size: 0.78rem; line-height: 1.5; margin-top: 4px; }
}
@media (max-width: 400px) {
  .about-pillars { grid-template-columns: 1fr; }
}

/* ── 10. Section rhythm — consistent vertical scale ── */
@media (max-width: 768px) {
  section, .packages-section, .gallery-section,
  .testimonials-section, .faq-section, .booking-cta {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
  .packages-section { padding-top: 3rem; padding-bottom: 3rem; }
  .gallery-section { padding-top: 3rem; padding-bottom: 3rem; }
  .testimonials-section { padding-top: 3rem; padding-bottom: 2.5rem; }
  .faq-section { padding-top: 2.5rem; padding-bottom: 1rem; }
  .booking-cta { padding-top: 3rem; padding-bottom: 3rem; }
  .section-header {
    padding: 0;
    margin-bottom: 1.75rem;
    text-align: center;
  }
}

/* ── 11. Package carousel — snap + momentum scroll ── */
@media (max-width: 768px) {
  .mob-pkg-viewport {
    padding: 0 8%;
  }
  .mob-pkg-track {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mob-pkg-track::-webkit-scrollbar { display: none; }
  .mob-pkg-card {
    scroll-snap-align: center;
    flex: 0 0 86%;
    padding: 2rem 1.35rem;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(44, 26, 14, 0.12);
  }
  .mob-pkg-card .pkg-name { font-size: 1.25rem; }
  .mob-pkg-card .pkg-price {
    font-size: 2.1rem;
    font-variant-numeric: tabular-nums;
  }
  .mob-pkg-card .pkg-feature {
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 0.65rem 0;
  }
  .mob-pkg-card .btn-gold {
    min-height: 50px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
}

/* ── 12. Gallery strip — snap scrolling ── */
@media (max-width: 768px) {
  .gallery-strip-wrap, .gallery-scroller {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .gallery-strip-wrap::-webkit-scrollbar,
  .gallery-scroller::-webkit-scrollbar { display: none; }
  .gallery-item {
    scroll-snap-align: start;
    flex: 0 0 clamp(150px, 45vw, 200px);
  }
  .gallery-item img {
    border-radius: 10px;
  }
}

/* ── 13. Testimonials — cleaner single-up carousel ── */
@media (max-width: 768px) {
  .testi-card-new {
    flex: 0 0 100%;
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 6px 22px rgba(44,26,14,0.1);
    color: #2C1A0E; /* override dark-theme inherited colors */
  }
  .testi-photo-circle {
    width: 86px; height: 86px;
    border: 3px solid rgba(181,129,58,0.22);
    margin-bottom: 0.9rem;
  }
  .testi-stars-new {
    color: #B5813A;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
  }
  /* Critical — override the desktop cream colors on the white mobile card */
  .testi-pet-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C1A0E !important;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
  }
  .testi-quote {
    font-size: 0.88rem;
    line-height: 1.68;
    color: rgba(44, 26, 14, 0.78) !important;
    font-style: italic;
    margin-top: 0;
    max-width: 28ch;
  }
  .testi-carousel-arrow {
    width: 44px; height: 44px;
    background: #FFFFFF;
    border: 1px solid rgba(44,26,14,0.12);
    box-shadow: 0 3px 10px rgba(44,26,14,0.08);
  }
  .testi-dot { width: 8px; height: 8px; }
  .testi-dot.active { width: 26px; }
}

/* ── 14. FAQ — easier to tap and scan ── */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .faq-item {
    border-radius: 12px;
    overflow: hidden;
  }
  .faq-q {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 1.1rem 1.2rem;
    line-height: 1.35;
    text-align: left;
  }
  .faq-a {
    font-size: 0.84rem;
    line-height: 1.65;
    padding: 0 1.2rem 1.1rem;
  }
}

/* ── 15. CTA — bigger, more tappable, better rhythm ── */
@media (max-width: 768px) {
  .booking-cta {
    padding: 3.25rem 1.35rem;
    text-align: center;
    border-radius: 0;
  }
  .booking-cta h2 {
    font-size: var(--fs-h1);
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }
  .booking-cta p {
    font-size: 0.9rem;
    max-width: 32ch;
    margin: 0 auto 1.75rem;
  }
  .booking-cta .btn-gold {
    width: 100%;
    max-width: 280px;
    min-height: 54px;
    font-size: 0.82rem;
    margin: 0 auto;
  }
}

/* ── 16. Footer — readable, tap-friendly on mobile ── */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr !important;
    padding: 2.25rem 1.5rem 2.5rem;
    gap: 2rem;
    text-align: left;
  }
  footer .footer-col { min-width: 0 }
  .footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
  }
  .footer-col a, .footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0));
    text-align: center;
    font-size: 0.72rem;
  }
}

/* ── 17. Promo popup — mobile-optimised ── */
@media (max-width: 480px) {
  .promo-backdrop { padding: 1rem; align-items: flex-end; }
  .promo-modal {
    max-width: 100%;
    padding: 2.25rem 1.5rem 1.5rem;
    border-radius: 22px 22px 16px 16px;
    margin-bottom: env(safe-area-inset-bottom, 0);
    max-height: 92dvh;
    overflow-y: auto;
  }
  .promo-paw { font-size: 1.95rem; }
  .promo-badge { font-size: 0.6rem; padding: 3px 11px; }
  .promo-headline {
    font-size: 1.55rem;
    line-height: 1.15;
    text-wrap: balance;
  }
  .promo-body-text {
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .promo-code-box {
    padding: 12px 18px;
    border-radius: 10px;
  }
  .promo-code-text {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  .promo-cta-btn {
    padding: 14px 22px;
    min-height: 52px;
    border-radius: 10px;
    font-size: 0.88rem;
  }
  .promo-gate-input {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 50px;
  }
  .promo-gate-submit {
    padding: 14px 20px;
    min-height: 52px;
    font-size: 0.88rem;
  }
  .promo-close { width: 34px; height: 34px; }
}

/* ── 18. Modal (booking iframe) — full-bleed on mobile ── */
@media (max-width: 640px) {
  .modal-backdrop { padding: 0; }
  .modal-box {
    max-width: 100%;
    width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
  }
  .modal-header {
    padding: 1rem 1.25rem;
    padding-top: calc(1rem + env(safe-area-inset-top, 0));
  }
  .modal-body {
    padding: 0;
    height: calc(100dvh - 58px - env(safe-area-inset-top, 0));
  }
  .modal-body iframe {
    height: 100% !important;
    min-height: 0 !important;
  }
}

/* ── 19. Polaroid auto-swipe respects reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .polaroid-card { transition: none !important; }
}

/* ── 20. Prevent overscroll bounce exposing the page background ── */
@media (max-width: 768px) {
  body {
    background: var(--cream);
    overscroll-behavior-y: contain;
  }
}
