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

  :root {
    --gold:   #b89a68;
    --gold-lt:#d4b98a;
    --navy:   #1e2d3d;
    --cream:  #f7f4ef;
    --sand:   #ede8df;
    --text:   #3a3a3a;
    --light:  #7a7a7a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: #fff;
  }

  /* ── NAVBAR ── */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: transparent;
    transition: background .35s, box-shadow .35s;
  }
  #navbar.scrolled {
    background: rgba(30,45,61,.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #fff;
    letter-spacing: .06em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 4px;
    transition: color .25s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { width: 100%; }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }
  .nav-toggle span {
    display: block;
    width: 25px; height: 2px;
    background: #fff;
    transition: .3s;
  }

  /* ── HERO SLIDER ── */
  #home {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
  }

  .slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .9s cubic-bezier(.77,0,.175,1);
  }

  .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .slide:nth-child(1) { background-image: url('images/slider.webp'); }
  .slide:nth-child(2) { background-image: url('images/venus_interior_1.webp'); }

  /* fallback colour while photos load */
  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,35,50,.25) 0%, rgba(20,35,50,.55) 100%);
  }

  .hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 24px;
  }
  .hero-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: .04em;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
    margin-bottom: 14px;
  }
  .hero-caption p {
    font-size: clamp(.9rem, 1.6vw, 1.1rem);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 300;
    opacity: .9;
  }
  .hero-caption .btn-hero {
    margin-top: 32px;
    padding: 14px 38px;
    border: 1px solid var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    transition: background .3s, color .3s;
  }
  .hero-caption .btn-hero:hover {
    background: var(--gold);
    color: var(--navy);
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background .25s;
    display: flex; align-items: center; justify-content: center;
  }
  .slider-btn:hover { background: var(--gold); border-color: var(--gold); }
  .slider-btn.prev { left: 24px; }
  .slider-btn.next { right: 24px; }

  .slider-dots {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .25s, transform .25s;
    border: 1px solid rgba(255,255,255,.6);
  }
  .dot.active { background: var(--gold); transform: scale(1.3); border-color: var(--gold); }

  /* ── SECTION HELPERS ── */
  section { padding: 96px 0; }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

  .section-label {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .divider {
    width: 50px; height: 2px;
    background: var(--gold);
    margin: 0 auto 48px;
  }
  .divider.left { margin-left: 0; }

  /* ── ABOUT ── */
  #about { background: #fff; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-text p {
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 18px;
    font-size: .97rem;
  }
  .about-text .tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 28px;
  }
  .about-photo {
    position: relative;
  }
  .about-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }
  .about-photo::before {
    content: '';
    position: absolute;
    top: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
  }


  /* ── HIGHLIGHTS STRIP ── */
  .highlights {
    background: var(--navy);
    padding: 48px 0;
  }
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .highlight-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,.1);
    color: #fff;
  }
  .highlight-item:last-child { border-right: none; }
  .highlight-item i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .highlight-item .h-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    display: block;
    margin-bottom: 4px;
  }
  .highlight-item .h-label {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
  }

  /* ── SERVICES / AMENITIES ── */
  #services { background: var(--cream); }

  .services-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
  }
  .services-intro p {
    color: var(--light);
    line-height: 1.8;
    font-size: .95rem;
  }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
  }
  .amenity-card {
    background: #fff;
    text-align: center;
    padding: 36px 20px 28px;
    border-bottom: 2px solid transparent;
    transition: border-color .3s, box-shadow .3s, transform .3s;
  }
  .amenity-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
    transform: translateY(-4px);
  }
  .amenity-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }
  .amenity-card span {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--navy);
    font-weight: 700;
  }

  /* ── PRICING ── */
  #pricing { background: #fff; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
  }
  .price-card {
    border: 1px solid var(--sand);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: box-shadow .3s;
  }
  .price-card.featured {
    border-color: var(--gold);
    background: var(--navy);
    color: #fff;
  }
  .price-card.featured .price-season { color: rgba(255,255,255,.65); }
  .price-card.featured .price-amount { color: var(--gold-lt); }
  .price-card.featured .price-note { color: rgba(255,255,255,.5); }

  .price-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 18px;
  }
  .price-season {
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
  }
  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--navy);
    line-height: 1;
  }
  .price-amount sup { font-size: 1.4rem; vertical-align: super; }
  .price-amount sub { font-size: 1rem; }
  .price-note {
    font-size: .8rem;
    color: var(--light);
    margin-top: 14px;
    line-height: 1.6;
  }
  .price-min {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .price-card:not(.featured) .price-min { border-color: var(--sand); color: var(--light); }

  /* ── GALLERY ── */
  #gallery { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 8px;
  }
  .gallery-item {
    overflow: hidden;
    cursor: pointer;
  }
  .gallery-item:nth-child(1) { grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-row: span 2; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
  }
  .gallery-item:hover img { transform: scale(1.05); }


  /* lightbox */
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: 80vw;
    max-height: 85vh;
    object-fit: contain;
    transition: opacity .14s ease;
  }
  .lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 10;
    opacity: .8;
    transition: opacity .2s;
  }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, border-color .25s;
    z-index: 10;
    line-height: 1;
  }
  .lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
  .lightbox-nav.prev { left: 24px; }
  .lightbox-nav.next { right: 24px; }
  .lightbox-counter {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    letter-spacing: .14em;
    font-family: 'Lato', sans-serif;
  }

  /* ── RESERVATION FORM ── */
  #reservation { background: var(--navy); }
  #reservation .section-title { color: #fff; }
  #reservation .section-label { color: var(--gold-lt); }
  #reservation .divider { background: var(--gold-lt); }

  .form-intro {
    text-align: center;
    color: rgba(255,255,255,.65);
    max-width: 520px;
    margin: 0 auto 48px;
    font-size: .93rem;
    line-height: 1.8;
  }

  .res-form {
    max-width: 760px;
    margin: 0 auto;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
  .form-row.full { grid-template-columns: 1fr; }

  .form-field {
    display: flex;
    flex-direction: column;
  }
  .form-field label {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    padding: 13px 16px;
    font-family: 'Lato', sans-serif;
    font-size: .92rem;
    outline: none;
    transition: border-color .25s;
    -webkit-appearance: none;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,.3); }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus { border-color: var(--gold); }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-field select option { background: var(--navy); }

  .btn-submit {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 17px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, color .3s;
  }
  .btn-submit:hover { background: var(--gold-lt); }

  .form-note {
    text-align: center;
    color: rgba(255,255,255,.4);
    font-size: .78rem;
    margin-top: 20px;
    letter-spacing: .08em;
  }

  /* ── AREA / MAP ── */
  #area { background: #fff; padding: 0; }
  .area-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
  .area-map {
    position: relative;
  }
  .area-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
    display: block;
  }
  .area-info {
    background: var(--cream);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .area-info .section-label { margin-bottom: 8px; }
  .area-info .section-title { margin-bottom: 14px; }
  .area-info .divider { margin-bottom: 32px; }
  .area-info p {
    color: var(--light);
    line-height: 1.85;
    font-size: .93rem;
    margin-bottom: 32px;
  }
  .distances {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .distances li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .88rem;
    color: var(--text);
  }
  .distances li i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .distances li strong { color: var(--navy); margin-right: 4px; }

  /* ── CONTACT / FOOTER ── */
  #contact {
    background: #12202e;
    padding: 72px 0 0;
    color: rgba(255,255,255,.75);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
  }
  .footer-brand .nav-logo {
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: .88rem;
    line-height: 1.9;
    color: rgba(255,255,255,.55);
    max-width: 280px;
  }
  .footer-col h4 {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 700;
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    font-size: .88rem;
    margin-bottom: 12px;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-col ul li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: .9rem;
    flex-shrink: 0;
  }
  .footer-col a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .25s;
  }
  .footer-col a:hover { color: var(--gold-lt); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
    letter-spacing: .06em;
  }

  /* ── Reset Bootstrap globals that collide with our design ── */
  *, *::before, *::after { box-sizing: border-box; }
  body { font-family: 'Lato', sans-serif; color: var(--text); }
  h1,h2,h3,h4,h5,h6 { margin: 0; }
  p { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }
  a { text-decoration: none; }

  /* ── EXPLORE SECTION ── */
  #explore { background: var(--cream); }

  /* Bootstrap pill overrides — match gold/navy theme */
  #explorePills {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  #explorePills .nav-link {
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
    padding: 10px 26px;
    border: 1px solid var(--sand);
    background: #fff;
    transition: all .25s;
  }
  #explorePills .nav-link:hover {
    background: var(--sand);
    color: var(--navy);
    border-color: var(--gold-lt);
  }
  #explorePills .nav-link.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }

  .explore-pane {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s, transform .4s;
  }
  .tab-pane.show.active .explore-pane {
    opacity: 1;
    transform: translateY(0);
  }
  .explore-img {
    position: relative;
    overflow: hidden;
  }
  .explore-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .6s;
  }
  .explore-img:hover img { transform: scale(1.04); }
  .explore-img .explore-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(30,45,61,.82);
    color: var(--gold-lt);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 7px 16px;
    backdrop-filter: blur(4px);
  }

  .explore-body {}
  .explore-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .explore-body .explore-dist {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .explore-body p {
    color: var(--light);
    line-height: 1.85;
    font-size: .93rem;
    margin-bottom: 24px;
  }
  .explore-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .explore-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .88rem;
    color: var(--text);
    line-height: 1.5;
  }
  .explore-highlights li i {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 3px;
    flex-shrink: 0;
  }
  .btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--navy);
    font-family: 'Lato', sans-serif;
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s, color .25s;
  }
  .btn-maps:hover {
    background: var(--gold);
    color: #fff;
  }
  .btn-maps i { font-size: .85rem; }

  /* ── Beach list (inside explore pane) ── */
  .beach-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .beach-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    background: #fff;
    border-left: 3px solid var(--gold);
    font-size: .88rem;
    color: var(--text);
  }
  .beach-list li .beach-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--navy);
  }
  .beach-list li .beach-name i {
    color: var(--gold);
    font-size: .9rem;
  }
  .beach-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
  }
  .beach-map-link:hover { color: var(--navy); }
  .beach-map-link i { font-size: .7rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #navbar { padding: 0 24px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(30,45,61,.97); padding: 24px; gap: 20px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo::before { display: none; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:nth-child(2) { border-right: none; }
    .highlight-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.1); }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) { grid-row: span 1; }
    .gallery-item:nth-child(1) .gallery-ph,
    .gallery-item:nth-child(4) .gallery-ph { height: 200px; }

    .explore-pane { grid-template-columns: 1fr; gap: 32px; }
    .area-wrapper { grid-template-columns: 1fr; }
    .area-info { padding: 48px 32px; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .form-row.three { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    section { padding: 64px 0; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) .gallery-ph,
    .gallery-item:nth-child(4) .gallery-ph { height: 200px; }
    .pricing-grid { grid-template-columns: 1fr; }
  }
