/* =========================================================================
   site.css  —  every deliberate change made during the recovery pass.

   Loaded last, after style.css. css/style.css and every file in css/plugins/
   that shipped with the theme are byte-for-byte untouched, so deleting the
   one <link> that pulls this file in returns the site to the theme's own
   appearance. New components are prefixed `ct-` so they cannot collide with
   anything the template already defines.

   1  Brand tokens
   2  Skip link, focus visibility, reduced motion
   3  Navbar — legibility over the banner, and the invisible logo tagline
   4  Banner / slider
   5  Room cards — the 10px unlabelled icon row
   6  Amenities
   7  Reviews — initials instead of stock faces
   8  Services, nearby attractions, gallery
   9  FAQ accordion
   10 Contact
   11 Footer
   12 Inner page banners
   13 Layout guards
   ========================================================================= */

/* ---- 1  Brand tokens ------------------------------------------------- */
:root {
    --ct-green: #8dc63f;
    /* #8dc63f on white is 1.94:1 — fine for large display type and icons,
       nowhere near enough for body copy or small links, so a darkened pair
       is used wherever the green carries actual text */
    --ct-green-text: #4f7d12;   /* 5.13:1 on #fff */
    --ct-green-deep: #3f6410;   /* 7.35:1 on #fff */
    --ct-ink: #222;
    --ct-body: #5a5a5a;         /* 6.39:1 on #fff, was #666 at 5.11:1 */
    --ct-line: #e8e6e2;
    --ct-cream: #faf9f7;
}

/* ---- 2  Skip link, focus, motion ------------------------------------- */
.ct-skip {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 100000;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    padding: 0;
    background: #fff;
    color: var(--ct-green-deep);
    font-weight: 700;
    border-radius: 0 0 6px 6px;
}
.ct-skip:focus {
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    top: 0;
    padding: 12px 22px;
    outline: 3px solid var(--ct-green-deep);
}

/* style.css sets `outline: none` in five places, which leaves keyboard users
   with no visible focus at all. Put a ring back without reintroducing the
   mouse-click outline. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.acc-btn:focus-visible,
.navbar .nav-link:focus-visible {
    outline: 3px solid var(--ct-green-deep) !important;
    outline-offset: 3px;
    border-radius: 2px;
}
.navbar .nav-link:focus-visible,
.header a:focus-visible,
.footer a:focus-visible,
[data-overlay-dark] a:focus-visible {
    outline-color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .animate-box { opacity: 1 !important; transform: none !important; }
    .bg-fixed { background-attachment: scroll !important; }
}

/* ---- 3  Navbar ------------------------------------------------------- */
/* The menu is white text sitting directly on a photograph. Against the pale
   mist in slides 1 and 3 it measured barely 2:1. A top-down scrim fixes it
   without darkening the picture as a whole. */
.header.slider-fade:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 190px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(12, 20, 8, .62), rgba(12, 20, 8, 0));
}

/* img/logo.png carries "Premium Homestay" in white. .nav-scroll turns the bar
   white, so the tagline simply disappeared. logo-dark.png is the same file
   with only those near-white pixels recoloured to #333. */
.navbar .logo-img { width: 200px; height: auto; }
.nav-scroll .logo-img { width: 190px; }
.nav-scroll .logo-wrapper .logo-img { content: url("../img/logo-dark.png"); }

.navbar .navbar-nav .nav-link { cursor: pointer; }
.nav-scroll { box-shadow: 0 2px 14px rgba(0, 0, 0, .09); }

/* the dropdown is opened by custom.js adding .show */
.navbar .nav-item.dropdown > .dropdown-menu { display: none; }
.navbar .nav-item.dropdown.show > .dropdown-menu { display: block; }
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        border: 0;
        border-top: 3px solid var(--ct-green);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
        padding: 6px 0;
        border-radius: 0;
    }
    .navbar .dropdown-item a { padding: 9px 22px; display: block; color: #333; }
    .navbar .dropdown-item a:hover { color: var(--ct-green-deep); background: #f6f6f4; }
}

/* the reservation tab overlapping the banner */
.header .reservation { z-index: 12; }
.header .reservation a { text-decoration: none; }

/* ---- 4  Banner ------------------------------------------------------- */
.slider-fade .item .caption h1 { text-shadow: 0 2px 24px rgba(0, 0, 0, .45); }
.slider-fade .item .caption h4 { text-shadow: 0 2px 14px rgba(0, 0, 0, .5); }

/* 100vh slides leave nothing but a headline visible on a short laptop */
@media (min-width: 992px) and (max-height: 760px) {
    .slider-fade .owl-item, .slider-fade .item { height: 88vh; min-height: 520px; }
}
@media (max-width: 767px) {
    .slider-fade .owl-item, .slider-fade .item { height: auto; min-height: 78vh; }
    .slider-fade .item .caption h1 { font-size: 34px; line-height: 1.25; }
    .header .reservation { position: static; width: 100%; }
}

.ct-hero-actions { margin-top: 26px; }
.ct-hero-actions .butn-light { margin: 0 6px 10px; }

/* ---- 5  Room cards --------------------------------------------------- */
/* .rooms1 .facilities ul li inherits font-size:10px, so the icons rendered
   at 10px with no label beside them — unreadable, and nothing for a screen
   reader to announce. Icons sized properly, wording restored. */
.rooms1 .facilities ul li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 16px;
    float: none;
    letter-spacing: 1.4px;
    padding-bottom: 12px;
}
.rooms1 .facilities ul li i { font-size: 17px; margin-right: 0; }
.rooms1 .facilities .col-md-7,
.rooms1 .facilities .col-md-5 { flex: 0 0 100%; max-width: 100%; text-align: left; }
.rooms1 .item .con .permalink { display: inline-block; margin-top: 4px; }

.rooms1 .item img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.ct-rate {
    display: inline-block;
    background: var(--ct-green);
    color: #14210a;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: .4px;
}
.ct-rate small { font-weight: 400; opacity: .85; }

/* room type grid used on /rooms */
.ct-roomcard {
    border: 1px solid var(--ct-line);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.ct-roomcard img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.ct-roomcard .ct-roomcard-body { padding: 26px 24px 24px; flex: 1 1 auto; display: flex; flex-direction: column; }
.ct-roomcard h3 { font-size: 23px; color: var(--ct-ink); margin: 0 0 10px; }
.ct-roomcard p { color: var(--ct-body); margin-bottom: 16px; }
.ct-roomcard .ct-tags { margin-top: auto; }

.ct-tags { list-style: none; padding: 0; margin: 0 0 18px; }
.ct-tags li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--ct-body);
    background: var(--ct-cream);
    border: 1px solid var(--ct-line);
    padding: 5px 11px;
    margin: 0 6px 8px 0;
    border-radius: 40px;
}
.ct-tags li i { color: var(--ct-green-text); font-size: 15px; }

/* ---- 6  Amenities ---------------------------------------------------- */
.ct-amen { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px 34px; }
.ct-amen section { min-width: 0; }
.ct-amen h3 {
    font-size: 15px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--ct-green-deep);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.ct-amen h3 i { font-size: 20px; }
.ct-amen ul { list-style: none; padding: 0; margin: 0; }
.ct-amen li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
    color: var(--ct-body);
    line-height: 1.6;
}
.ct-amen li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ct-green);
}

/* ---- 7  Reviews ------------------------------------------------------ */
/* The template shipped three invented testimonials over stock portraits.
   These are the property's own published guest reviews, so the faces are
   replaced by initials rather than by somebody else's photograph. */
.ct-initial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ct-green);
    color: #14210a;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
    flex: none;
}
.testimonials .item .info .ct-initial { margin-right: 18px; }
.testimonials .item .info { display: flex; align-items: center; }
.testimonials .item p { min-height: 0; }
.ct-review-src { font-size: 13px; opacity: .8; }

.ct-reviewcard {
    background: #fff;
    border: 1px solid var(--ct-line);
    padding: 28px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.ct-reviewcard p { color: var(--ct-body); flex: 1 1 auto; }
.ct-reviewcard .ct-who { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.ct-reviewcard .ct-who h3 { font-size: 17px; margin: 0 0 2px; color: var(--ct-ink); }
.ct-reviewcard .ct-who span { font-size: 13px; color: #6b6b6b; }
/* must out-specify `.ct-reviewcard .ct-who span` above */
.ct-reviewcard .ct-who .ct-initial,
.testimonials .item .info .ct-initial { color: #14210a; font-size: 20px; }
.ct-stars { color: #e4a853; letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }

/* ---- 8  Services, nearby, gallery ------------------------------------ */
.ct-svc {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--ct-line);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ct-svc img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.ct-svc .ct-svc-body { padding: 22px 22px 24px; flex: 1 1 auto; display: flex; flex-direction: column; }
.ct-svc h3 { font-size: 21px; color: var(--ct-ink); margin: 0 0 9px; }
.ct-svc p { color: var(--ct-body); margin-bottom: 16px; }
.ct-svc .ct-svc-links { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

.ct-btn-sm,
.ct-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: .6px;
    text-decoration: none;
    border: 1px solid var(--ct-line);
    color: var(--ct-green-deep);
    background: #fff;
    transition: .25s;
}
.ct-btn-sm:hover { background: var(--ct-cream); color: var(--ct-green-deep); }
.ct-wa { background: #147a3a; border-color: #147a3a; color: #fff; }   /* 5.42:1 */
.ct-wa:hover { background: #0f602f; color: #fff; }

.ct-near { border-left: 3px solid var(--ct-green); padding: 4px 0 4px 20px; margin-bottom: 26px; }
.ct-near h3 { font-size: 20px; margin: 0 0 4px; color: var(--ct-ink); }
.ct-near .ct-dist {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ct-green-deep);
    margin-bottom: 8px;
}
.ct-near p { color: var(--ct-body); margin: 0; }

.ct-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.ct-gallery a {
    display: block;
    position: relative;
    overflow: hidden;
    background: #eee;
    aspect-ratio: 3 / 2;
}
.ct-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.ct-gallery a:hover img,
.ct-gallery a:focus-visible img { transform: scale(1.06); }
.ct-gallery a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 33, 10, 0);
    transition: background .3s;
}
.ct-gallery a:hover:after { background: rgba(20, 33, 10, .18); }

/* ---- 9  FAQ accordion ------------------------------------------------ */
.accordion-box .block .acc-btn {
    cursor: pointer;
    background: none;
    border: 0;
    width: 100%;
    text-align: left;
    font: inherit;
}
.accordion-box .block .acc-content { display: none; }
.accordion-box .block .acc-content.current { display: block; }
/* the theme numbers each question in #8dc63f, which is 2.04:1 on white */
.accordion-box .block .acc-btn .count { color: var(--ct-green-deep); }

/* ---- 10  Contact ----------------------------------------------------- */
.ct-contact-list { list-style: none; padding: 0; margin: 0 0 26px; }
.ct-contact-list li { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.ct-contact-list i { font-size: 24px; color: var(--ct-green-text); margin-top: 3px; }
.ct-contact-list h3 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 3px;
    color: #5f5f5f;
}
.ct-contact-list p, .ct-contact-list a { margin: 0; color: var(--ct-ink); font-size: 17px; }
.ct-contact-list a:hover { color: var(--ct-green-deep); }

.ct-map {
    border: 0;
    width: 100%;
    height: 420px;
    display: block;
    filter: grayscale(35%);
}
.ct-note {
    background: var(--ct-cream);
    border-left: 3px solid var(--ct-green);
    padding: 18px 22px;
    color: var(--ct-body);
}
.ct-note p:last-child { margin-bottom: 0; }

/* ---- 11  Footer ------------------------------------------------------ */
.footer-contact-info a { color: inherit; }
.footer-contact-info a:hover { color: var(--ct-green); }
.footer-about-social-list a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; }
.footer-bottom-copy-right, .footer-bottom-copy-right a { color: #adadad; }
.footer-bottom-copy-right a { color: var(--ct-green); }
.ct-footer-note { font-size: 13px; color: #adadad; margin-top: 14px; }

/* ---- 12  Inner page banners ------------------------------------------ */
.banner-header { position: relative; }
.banner-header h1 { text-shadow: 0 2px 20px rgba(0, 0, 0, .4); }
.ct-crumb { list-style: none; padding: 0; margin: 14px 0 0; }
.ct-crumb li { display: inline; color: rgba(255, 255, 255, .85); font-size: 14px; letter-spacing: 1.4px; }
.ct-crumb li + li:before { content: "/"; margin: 0 10px; opacity: .6; }
.ct-crumb a { color: #fff; }
.ct-crumb a:hover { color: var(--ct-green); }

/* ---- 13  Layout guards ----------------------------------------------- */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

/* the navbar is fixed once scrolled, so jump links land under it */
section[id], [data-scroll-index] { scroll-margin-top: 96px; }
@media (max-width: 991px) { section[id], [data-scroll-index] { scroll-margin-top: 74px; } }
.header, header[id] { scroll-margin-top: 0; }

.section-padding { padding: 90px 0; }
@media (max-width: 767px) { .section-padding { padding: 60px 0; } }
.bg-cream { background: var(--ct-cream); }

/* The theme's own body grey (#666 on #fff) is 5.11:1 and passes, so it is
   left alone — an earlier draft of this file restyled every <p> and in doing
   so overrode the footer's #adadad-on-#1a2e01 down to 2.55:1. */
.section-subtitle { color: var(--ct-green-deep); }

/* ---- 14  Fixes found by measuring the rendered pages ------------------ */

/* The theme paints the active menu item #8dc63f. Over the banner photo and
   again on the white .nav-scroll bar that lands at 2.04:1, so the one item
   telling you where you are was the hardest to read. Marked with weight and
   a rule instead, and darkened where the bar is white. */
.navbar .navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
    position: relative;
}
.navbar .navbar-nav .nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--ct-green);
}
.nav-scroll .navbar-nav .nav-link.active { color: var(--ct-green-deep) !important; }

/* `.rooms1 .item .category` is white text on `background: transparent`,
   sitting directly on the room photograph — legible or not depending
   entirely on what that corner of the picture happens to contain. */
.rooms1 .item .category {
    background: rgba(14, 24, 6, .68);
    border-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(2px);
}

/* The reservation tab prints the phone number in #8dc63f, rotated, straight
   onto the banner photograph. Given a panel to sit on. */
.header div.reservation {
    background: rgba(14, 24, 6, .72);
    padding: 18px 10px 22px;
    backdrop-filter: blur(3px);
}
.header div.reservation .call span,
.header div.reservation .call { color: #fff; }
.header div.reservation .icon i { color: var(--ct-green); }

/* An eyebrow above the headline is a label, not a section heading — using
   <h4> for it put an h4 before the h1 on every slide. */
.ct-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    display: block;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}
.slider-fade .item .caption h2 {
    font-family: 'Gilda Display', serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .slider-fade .item .caption h2 { font-size: 34px; }
    .ct-eyebrow { letter-spacing: 3px; font-size: 13px; }
}

/* visually hidden, still read aloud */
.ct-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* ---- 15  Text over photographs, measured from rendered pixels --------- */

/* The scrim added in section 3 only covered the home page's slider, so on
   /gallery and /contact the menu sat straight on the banner photo — the
   "Contact" item measured 4.04:1 over the bright sky in the pool picture.
   This puts the same scrim behind the bar on every page, and takes it away
   again once .nav-scroll gives the bar a solid white background. */
.navbar:not(.nav-scroll):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(12, 20, 8, .68), rgba(12, 20, 8, .25) 55%, rgba(12, 20, 8, 0));
}

/* `.butn-light a` is white on `background: transparent` over the banner.
   Measured 4.49:1 — a hair under the 4.5 it needs. A light wash behind it
   settles that without losing the outline style, and the hover fill still
   works because it paints over this. */
.butn-light a {
    background: rgba(12, 20, 8, .42);
    backdrop-filter: blur(2px);
    border-color: rgba(255, 255, 255, .75);
}
.butn-light a:hover span { color: #1c1c1c; }

/* .ct-footer-note is coloured for the dark footer (#adadad on #1a2e01,
   6.87:1). Reusing it on a white page dropped that link to 2.24:1, so the
   light-background variant is its own class. */
.ct-lightnote { font-size: 13px; color: #5f5f5f; margin-top: 14px; }
.ct-lightnote a { color: var(--ct-green-deep); text-decoration: underline; }
.ct-lightnote a:hover { color: var(--ct-green-text); }

/* The theme hides .animate-box only when <html> carries `.js`, which nothing
   sets any more (modernizr was one of the missing scripts). Belt and braces:
   once the entrance animation has run, opacity is pinned back to 1 so no
   content can be left stranded invisible if that class ever returns. */
.animate-box.animate-box-done { opacity: 1; }

/* ---- 16  The preloader must never be able to trap the page ------------ */
/*
   style.css parks `.preloader-bg, #preloader` over the viewport, opaque and
   at z-index 999999, and only JavaScript ever takes them away. That is the
   exact mechanism that made this site a blank white page for as long as
   custom.js was missing, and it would do it again to anyone browsing with
   JavaScript off or blocked.

   Two independent guards:

   1. The overlay is display:none unless an inline script in <head> has
      marked the document `.ct-js`. No JavaScript, no overlay at all.
      (A separate class from the theme's own `.js` on purpose — `.js` also
      switches on `.js .animate-box { opacity: 0 }`, and page copy should
      not depend on a script to become visible.)

   2. Even with JavaScript enabled, a CSS animation retires the overlay
      after six seconds, so a blocked CDN or a throwing script cannot leave
      a visitor staring at a spinner.
*/
#preloader,
.preloader-bg { display: none !important; }

html.ct-js .preloader-bg { display: block !important; }
html.ct-js #preloader { display: table !important; }

html.ct-js #preloader,
html.ct-js .preloader-bg {
    animation: ct-preloader-give-up 0.4s linear 6s forwards;
}
@keyframes ct-preloader-give-up {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
    html.ct-js #preloader,
    html.ct-js .preloader-bg { animation-delay: 2s; }
}

/* ---- 17  The banner without Owl -------------------------------------- */
/*
   `.slider-fade .item` is position:absolute and takes its height from
   `.slider-fade .owl-item`, which only exists once Owl has initialised. If
   Owl never runs — JavaScript off, a blocked script, a slow connection
   mid-load — the banner collapses to nothing and its white caption text
   lands on the white page behind it.

   Owl sets `.owl-loaded` on the carousel when it initialises, so everything
   here applies only while that has not happened. It also removes the blank
   flash before initialisation on a normal load.
*/
.header.slider-fade {
    background: #1a2e01 url("../img/slider/1.jpg") center center / cover no-repeat;
}
/* owl.carousel.min.css ships `.owl-carousel { display: none }` and only
   reveals it with `.owl-loaded`, so until Owl runs the markup is not merely
   unstyled — it is not displayed at all. */
.header.slider-fade .owl-carousel:not(.owl-loaded) {
    display: block;
    min-height: 86vh;
    position: relative;
}
.header.slider-fade .owl-carousel:not(.owl-loaded) .item {
    position: relative;
    height: 86vh;
    min-height: 460px;
}
.header.slider-fade .owl-carousel:not(.owl-loaded) .item:not(:first-child) { display: none; }
/* the first slide's own tint, in case data-background never gets applied */
.header.slider-fade .owl-carousel:not(.owl-loaded) .item:first-child:before {
    opacity: .35;
}

/* ---- 18  Narrow viewports -------------------------------------------- */
/*
   Measured in a real 390px viewport (headless Chrome clamps its own window
   to 500px, so this had to be checked inside an iframe).

   Two things needed attention: the caption ran edge-to-edge with no side
   padding, and the slider's dot rail — `top: 50%; right: 5%` with a vertical
   line above and below it — sat straight across the end of the headline.
*/
@media (max-width: 767px) {
    .slider-fade .item .caption .container {
        padding-left: 26px;
        padding-right: 26px;
    }
    .slider-fade .item .caption .col-md-10 { padding-left: 0; padding-right: 0; }

    /* dot rail down to the bottom, clear of the words */
    .slider-fade .owl-dots {
        top: auto;
        bottom: 22px;
        right: 0;
        left: 0;
        width: auto;
        transform: none;
        text-align: center !important;
    }
    .slider-fade .owl-dots:before,
    .slider-fade .owl-dots:after { display: none; }
    .slider-fade .owl-dots .owl-dot { display: inline-block; margin: 0 7px; }

    /* the rotated reservation tab eats a third of a phone screen */
    .header div.reservation { display: none; }

    .banner-header h1 { font-size: 34px; line-height: 1.2; }
    .ct-amen { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
    .ct-contact-list li { gap: 12px; }
}
@media (max-width: 400px) {
    .slider-fade .item .caption h2 { font-size: 30px; }
    .ct-amen { grid-template-columns: 1fr; }
}
