/* –––––––––– COLOURS –––––––––– */

:root {
    --white: #ffffff; /* Background */
    --light-blue: #f0f6f8;  /* Alternate Background */
    --deep-teal: #0A3A40;/* Headers */
    --charcoal: #1A1A1A; /* Main Text Sections */
    --stone: #D9CFC3;/* Sub-Headings Dark Backdrop and footer */
    --slate: #6A6F73; /* Testimonial Sub-Text */
    --gold-accent: #D4A017; /* Lines and Small Sub-Text */
    
}

/* –––––––––– CORE –––––––––– */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Muli', sans-serif;
    background: var(--white);
    color: var(--deep-teal);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.external-container {
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 1.5rem 0;
}

/* –––––––––– HEADINGS –––––––––– */

html {
    font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Muli", sans-serif;
    margin: 0;
    color: var(--deep-teal);
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.4rem; line-height: 1.15; }
h3 { font-size: 1.8rem; line-height: 1.2; }

p {
    margin: 0 0 1.25rem;
    line-height: 1.7;
}

/* –––––––––– GLOBAL SECTION TYPOGRAPHY –––––––––– */

.section-heading {
    text-align: center;
    margin: 0 auto 2rem;
}

.section-kicker {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.section-heading h2 {
    font-size: 2rem;
    color: var(--deep-teal);
    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.5;
}

.expanded-heading {
    max-width: 850px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1rem;
}


/* –––––––––– HEADER –––––––––– */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 20;
    background: linear-gradient(
        to bottom,
        rgba(10, 58, 64, 0.95),
        rgba(10, 58, 64, 0.7),
        transparent
    );
    transition: background 0.5s ease;
    padding: 1rem 0;
}

.site-header.scrolled {
    background: var(--deep-teal);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    font-size: 2.25rem;
    color: var(--white);
}

.brand-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--white);
    position: relative;
    padding-bottom: 0.2rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 2px;
    background: var(--gold-accent);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 58, 64, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 15; 
}

.site-header.nav-open + .mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* –––––––––– PAGES HEADER –––––––––– */

.pages .site-header, .tours .site-header { 
    background: var(--deep-teal);
}

/* –––––––––– HERO –––––––––– */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 3rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-content {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: var(--gold-accent);
    text-align: center;
    margin-bottom: 0.25rem;
}

.hero-heading {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw + 1rem, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

.hero-subtext {
    max-width: 620px;
    margin: 0 auto;
    color: var(--stone);
    font-size: 1.4rem;
    text-align: center;
    padding: 0 0 0 0.75rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.hero-reviews {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--stone);
    letter-spacing: 0.05em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.3s;
}

.hero-reviews .stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-right: 0.35rem;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* –––––––––– BUTTONS –––––––––– */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 7px;
    border: 1px solid transparent;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease;
}

.btn-primary {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: #b88a12;
    border-color: #b88a12;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.btn-outline:hover {
    background: var(--gold-accent);
    color: var(--charcoal);
    transform: translateY(-1px);
}

/* –––––––––– EXPLORE –––––––––– */

.explore-tours {
    background: var(--light-blue);
    padding: 4rem 0 6rem 0;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.explore-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.explore-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.explore-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.explore-card:hover img {
    transform: scale(1.07);
}

.explore-card-content {
    background: rgba(10, 58, 64, 0.95); 
    color: var(--white); 
    padding: 1rem 0.5rem 0.5rem 0.5rem; 
    text-align: center;
}

.explore-card-content h3 {
    font-size: 1.14rem;
    font-weight: 400;
    margin-bottom: 0.4rem; 
    color: var(--white); 
    position: relative; 
    display: inline-block; 
    padding-bottom: 0.2rem;
}

.explore-card-content h3::after { 
    content: ""; 
    position: absolute; 
    left: 0; bottom: -3px; 
    width: 0; 
    height: 2px; 
    background: var(--gold-accent); 
    transition: width 0.25s ease; 
}

.explore-card:hover .explore-card-content h3::after { 
    width: 100%; 
}

/* –––––––––– WHY CHOOSE –––––––––– */

.why-choose {
    background: var(--white);
    padding: 4rem 0 6rem 0;
}

.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.why-item {
    background: var(--light-blue);
    border-radius: 4px;
    padding: 1.1rem 0.9rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(37, 150, 190, 0.10);
}

.why-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold-accent);
    stroke-width: 1.75;
    margin-bottom: 0.45rem;
}

.why-item h3 {
    font-size: 1.1rem;
    color: var(--dark-teal);
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.35;
}

.why-item:nth-child(4) .why-icon svg {
    width: 32px;
}

/* –––––––––– TESTIMONIALS –––––––––– */

.testimonials {
    background: var(--light-blue);
    padding: 4rem 0;
}

.testimonial-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: left;
}

.testimonial-card .stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.testimonial-card .lead {
    font-size: 1rem;
    color: var(--deep-teal);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-size: 0.9rem;
    color: var(--slate);
    font-style: italic;
}

.testimonial-cta {
    text-align: center;
    margin: 2.5rem 0 2rem 0;
}

/* –––––––––– FOOTER –––––––––– */

.footer {
    background: var(--deep-teal);
    color: var(--stone);
    padding: 0 1.5rem 2rem;
    font-size: 0.95rem;
}

.footer-latest {
    padding: 3.5rem 0 2rem 0;
    margin-bottom: 3rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-latest h3 {
    color: var(--gold-accent);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.footer-latest p {
    margin: 0.25rem 0;
     color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-latest .line-1::before {
    content: "Limited availability for May, June and July 2026.";
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.footer-links, .footer-contact, .footer-copy {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-contact a {
    color: var(--stone);
    text-decoration: none;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    max-width: 1175px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* –––––––––– PAGES HEADING TEMPLATES –––––––––– */

.pages-header-image {
    margin-top: 6rem;
}

.pages-header-image picture, .pages-header-image img, .pages-header-image source {
    display: block;
    width: 100%;
    object-fit: cover;
}

.pages-heading {
    background: var(--light-blue);
    padding: 1.75rem 1.5rem 1.75rem 1.5rem;
}

.pages-heading h1 {
    font-size: 1.75rem;
    color: var(--deep-teal);
    margin: 0;
    text-align: left;
}

.pages-heading h2 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.5;
}

/* –––––––––– ABOUT –––––––––– */

.about.section {
    padding-top: 3rem;
    margin-bottom: 6rem;   
}

.about .bio-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin: 0 0 2.5rem 0rem;
    align-items: start;
}

.about h2 {
    font-size: 1.5rem;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
}

.about p {
    color: var(--charcoal);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.bio-highlight {
    background: var(--light-blue);
    border-radius: 4px;
    padding: 1.1rem 0.9rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(37, 150, 190, 0.10);
}

.bio-highlight h3 {
    font-size: 1.05rem;
    color: var(--dark-teal);
    margin-bottom: 0.4rem;
}

.bio-highlight p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.35;
}

.bio-gallery-grid {
    margin: 2rem 0 4rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bio-gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}


/* –––––––––– PAGES ———— TOURS –––––––––– */

.tours.section {
    padding-top: 3rem;
    margin-bottom: 6rem;   
}

.tours .explore-grid .explore-card {
    background: #f4f7f8;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tours .explore-grid .explore-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.tours .explore-grid .explore-card-content {
    background: #e4eef1;
    padding: 1rem;
    text-align: center;
}

.tours .explore-grid .explore-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tours .explore-grid .explore-card:hover img {
    transform: scale(1.06);
}

.tours .explore-grid .explore-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 0.35rem;
    position: relative;
    display: inline-block;
    padding: 0.35rem 0 0.2rem 0;
}

.tours .explore-grid .explore-card-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.25s ease;
}

.tours .explore-grid .explore-card:hover .explore-card-content h3::after {
    width: 100%;
}

.tour-group-heading {
    font-size: 1.5rem;
    color: var(--deep-teal);
    margin: 0 0 1rem 0;
    text-align: left;
}

.tours-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 3rem 0 2rem;
}

.price-divider {
    margin: 2.5rem 0 0 0;
}

.two-day-highlands {
    font-size: 0.9rem;
}


.tours .container {
    margin-bottom: 6rem;
}

/* –––––––––– PAGES ———— SITEMAP –––––––––– */

.sitemap.section {
    padding-top: 3rem;
    margin-bottom: 6rem;   
}

.sitemap .container {
    margin-top: -3.56rem;
    margin-bottom: 6rem;
}

.sitemap h2 {
    font-size: 1.2rem;
    color: var(--deep-teal);
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap li {
    margin-bottom: 0.6rem;
}

.sitemap a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sitemap a:hover {
    color: var(--gold-accent);
}


/* –––––––––– PAGES ———— VEHICLE –––––––––– */

.vehicle.section {
    padding-top: 1.5rem;
    margin-bottom: 6rem;   
}

/* –––––––––– PAGES ———— RESEARCH –––––––––– */

.research.section {
    padding-top: 2.5rem;
    margin-bottom: 6rem; 
}

.research h2 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--deep-teal);
}

.research h3 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.1rem;
    color: var(--deep-teal);
}

.research h4 {
    font-size: 1.2rem;
    padding-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.15rem;
    color: var(--deep-teal);
}

.research h5 {
    font-size: 1.1rem;
    margin-top: 2.2rem;
    margin-bottom: 0.1rem;
    color: var(--deep-teal);
}

.research p, .research li {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--charcoal);
}

.research ul {
    padding-left: 1.2rem;
}

.research-image {
    float: left;
    margin: 0.25rem 2rem 1rem 0;
    border-radius: 8px;
    border: 1px solid #dddddd;
    width: 40%;
    box-shadow: 0 2px 6px rgba(37, 150, 190, 0.10);
}

.research-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.research a {
    color: var(--link-blue, #2a6ebb);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.research a:hover {
    color: rgba(0, 0, 252, 0.6);
    opacity: 0.85; 
}

/* –––––––––– PAGES ———— OFF SEASON ISLANDS –––––––––– */

.off-season-islands.section {
    padding-top: 2.5rem;
    margin-bottom: 8rem; 
}

.off-season-islands h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--deep-teal);
}

.off-season-islands h3 {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: var(--slate);
}

.off-season-islands-faqs-accordion {
    background: var(--light-blue);
    border-radius: 8px;
}


.off-season-islands-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1rem 1.75rem;
}

.off-season-islands-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 1rem;
    color: var(--deep-teal);
    cursor: pointer;
    position: relative;
    letter-spacing: 0.02em;
}

.off-season-islands-faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.off-season-islands-faq-item.active .off-season-islands-faq-question::after {
    content: "–";
    transform: rotate(180deg);
}

.off-season-islands-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.off-season-islands-faq-answer p {
    color: var(--slate);
    line-height: 1.5;
}

.off-season-islands-faq-answer li {
    color: var(--slate);
    line-height: 1.5;
    padding-bottom: 1rem;
}

.off-season-islands-faq-answer-ferrries {
    margin: 1rem 2rem 3rem 2rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
}

.off-season-islands-faq-answer-ferrries h5 {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

.ferry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ferry-column h6 {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ferry-column h6 span {
    display: block;
    font-size: 0.95rem;
    color: var(--slate);
    font-weight: 500;
}

.ferry-column p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--slate);
    margin: 0.25rem 0;
}

/* –––––––––– PAGES ———— REVIEWS –––––––––– */

.reviews.section {
    padding-top: 2.5rem;
}

.reviews {
    background: var(--white);
    padding-bottom: 4rem;
}

.reviews-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold-accent);
    text-align: center;
}

.reviews-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.reviews-card {
    background: var(--light-blue);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: left;
}

.reviews-card .stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.reviews-card .lead {
    font-size: 1rem;
    color: var(--deep-teal);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reviews-card .quote {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reviews-card .author {
    font-size: 0.9rem;
    color: var(--slate);
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin: 2.5rem 0 2rem 0;
}


/* –––––––––– PAGES ———— FAQ ACCORDION –––––––––– */

.faqs.section {
    padding-top: 1.5rem;
    margin-bottom: 6rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 1rem;
    color: var(--deep-teal);
    cursor: pointer;
    position: relative;
    letter-spacing: 0.02em;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "–";
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    color: var(--slate);
    line-height: 1.5;
}

/* –––––––––– PAGES ———— ENQUIRY –––––––––– */

.enquiry.section {
    padding-top: 1.5rem;
    margin-bottom: 6rem;
}

.enquiry-form {
    max-width: 650px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.enquiry-form label {
    font-size: 1rem;
    color: var(--deep-teal);
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.1rem;
}

.enquiry-form input, .enquiry-form textarea, .enquiry-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Muli', sans-serif;
    color: var(--slate);
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: border-color 0.2s ease;
}

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

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-form label span {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--slate);
    margin-left: 0.25rem;
}

.enquiry-form input[type="number"] {
    width: 120px;
}

.enquiry-form select {
    appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-accent) 50%),
        linear-gradient(135deg, var(--gold-accent) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 13px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.enquiry-form select:hover {
    border-color: var(--gold-accent);
}

/* –––––––––– PAGES ———— CONFIRMATION –––––––––– */

.confirmation {
    margin-bottom: 8rem;
}

.confirmation h1 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

/* –––––––––– TOUR –––––––––– */

.tour-hero {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tour-hero img {
    width: 100%;
    height: 700px;    
    object-fit: cover;      
    object-position: top;
    display: block;
}

.tour-main {
    position: relative;
    margin-top: -350px;
    z-index: 5;
}

.tour-container {
    background: white;
    max-width: 80%;
    margin: 0 auto;
    padding: 2.5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.tour-container h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--deep-teal);
}

#tour-header {
    font-size: 1.25rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-teal);
    border-bottom: 1px solid var(--gold-accent);
}

.tour-container h2 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--deep-teal);
}

.tour-container h3 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.1rem;
    color: var(--deep-teal);
}

.tour-container h4 {
    font-size: 1.2rem;
    padding-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.15rem;
    color: var(--deep-teal);
}

.tour-container h5 {
    font-size: 1.1rem;
    margin-top: 2.2rem;
    margin-bottom: 0.1rem;
    color: var(--deep-teal);
}

.tour-container p, .tour-container li {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--charcoal);
}

.tour-container ul {
    padding-left: 1.2rem;
}

.tour-container section {
    padding-bottom: 2rem;
    display: block;
}

.tour-map {
    float: left;
    margin: 0.25rem 2rem 1rem 0;
    border-radius: 8px;
    border: 1px solid #dddddd;
    width: 40%;
    box-shadow: 0 2px 6px rgba(37, 150, 190, 0.10);
}

.tour-map-medium {
    float: left;
    margin: 0.25rem 2rem 1rem 0;
    border-radius: 8px;
    border: 1px solid #dddddd;
    width: 32.5%;
    box-shadow: 0 2px 6px rgba(37, 150, 190, 0.10);
}

.tour-map-small {
    float: left;
    margin: 0.25rem 2rem 1rem 0;
    border-radius: 8px;
    border: 1px solid #dddddd;
    width: 25%;
    box-shadow: 0 2px 6px rgba(37, 150, 190, 0.10);
}

.tour-map img, .tour-map-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* match the container */
}


/* ——— HIGHLIGHTS BLOCK ——— */

.highlights-block {
    background: var(--light-blue);
    padding: 1.5rem 2rem 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.highlights-block h4 {
    font-size: 1.2rem;
    color: var(--deep-teal);
    position: relative;
    padding: 0 0 0.5rem 0;
    margin: 0;
}

.highlights-block h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-accent);
    border-radius: 2px;
}

.highlights-grid {
    list-style: none;
    padding-top: 1rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem .5rem;
}

.highlights-grid li {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--charcoal);
    padding-left: 0.25rem;
    position: relative;
}

.highlights-grid li::before {
    content: "•";
    color: var(--gold-accent);
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -1rem;
}

.highlights-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-column h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.highlight-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-column li {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--charcoal);
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: .5rem;
}

.highlight-column li::before {
    content: "•";
    color: var(--gold-accent);
    position: absolute;
    left: 0;
    top: 0;
}

/* ——— GALLERY & VIDEO BLOCK ——— */


#gallery {
   padding-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    padding-top: 1.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.gallery-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.gallery-video a, .gallery-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    height: 100%;
}

.gallery-thumbs a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16.5 / 9.1;
    display: block;
}


/* ——— GALLERY & NO VIDEO BLOCK ——— */

.gallery-grid-no-video {
    display: grid;
    padding-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.gallery-thumbs-no-video {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    height: 100%;
}

.gallery-thumbs-no-video a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-thumbs-no-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16.5 / 9.1;
    display: block;
}


/* ——— EXTRA DAY GAELLERY GRID ——— */

#extra-day-text h4 {
   margin-bottom: 1rem;
}

#extra-day-text p {
   margin-bottom: 0;
}

#extra-day-gallery-grid {
   margin: 1.25rem 0 1.5rem 0;
}

#extra-day-gallery-grid img {
    height: 200px;
}


/* ———–––––––––– LIGHTBOX ––––––——— */


/* ————————————————————————————————
   GLIGHTBOX — LIGHTER BACKDROP + BRAND UI
——————————————————————————————— */

/* Backdrop overlay */
.goverlay {
    background: rgba(240, 245, 248, 0.92) !important; /* mist-blue */
    backdrop-filter: blur(4px);
}

/* Slide container */
.glightbox-container {
    background: none !important; /* prevents dark fallback */
}

/* Image styling */
.gslide-image img {
    border-radius: 0px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.20) !important;
}

/* Caption text */
.gdesc-inner {
    color: var(--deep-teal) !important;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

/* Close button */
.glightbox-close {
    color: var(--gold-accent) !important;
    font-size: 1.8rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.glightbox-close:hover {
    opacity: 1;
}

/* Navigation arrows */
.gnext, .gprev {
    color: var(--gold-accent) !important;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.gnext:hover, .gprev:hover {
    opacity: 1;
}

/* Slide fade transition */
.gslide {
    transition: opacity 0.35s ease !important;
}

/* Reduce the visible lightbox content size */
.glightbox-container .gslide {
    max-width: 900px;      /* adjust to taste */
    max-height: 80vh;      /* prevents full-screen takeover */
    margin: 0 auto;        /* centers the slide */
}

/* Also constrain the image/video inside */
.gslide-image img,
.gslide-media video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}



/* ——— TOUR PRICING BLOCK ——— */

.tour-pricing-block {
    background: var(--light-blue);
    padding: 1.5rem 2rem 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.tour-pricing-block h4 {
    font-size: 1.2rem;
    color: var(--deep-teal);
    position: relative;
    padding: 0 0 0.5rem 0;
    margin: 0;
}

.tour-pricing-block h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-accent);
    border-radius: 2px;
}

.tour-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#tour-pricing-grid-h4 {
    padding-top: 1rem;
}

.tour-prices p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--deep-teal);
    margin: 0 0 0.5rem 0;
}

.off-season-months-price {
    padding-top: 1rem;
}

.off-season {
    margin-top: 1.5rem;
    color: var(--link-blue, #2a6ebb);
    font-size: 1.05rem;
}

.off-season a:hover {
    color: rgba(0, 0, 252, 0.6);
    opacity: 0.85; 
}

.tour-dates {
    text-align: right;
}

.tour-dates p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
}


/* ——— TOUR FAQS BLOCK ——— */

#tour-faqs {
    margin-bottom: 1.5rem;
}

.tour-faqs a, .off-season a {
    color: var(--link-blue, #2a6ebb);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.tour-faqs a:hover {
    color: rgba(0, 0, 252, 0.6);
    opacity: 0.85; 
}

/* –––––––––– TOUR BOOK BLOCK –––––––––– */

.tour-book {;
    margin-bottom: 4rem;
}

.btn-book {
    display: block;
    background: var(--gold-accent);
    color: var(--charcoal);
    padding: 1.25rem 1.25rem;
    text-align: center;
    border-radius: 7px;
    font-weight: 600;
    border: 1px solid transparent;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease;
}

.btn-book:hover {
    background: #b88a12;
    border-color: #b88a12;
    transform: translateY(-1px);
}

/* –––––––––– RESPONSIVE –––––––––– */

@media (max-width: 900px) {
    
    .site-header {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        background: var(--deep-teal);
    }

    
    .pages-header-image {
        margin-top: 0;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        background: rgba(10, 58, 64, 0.95); 
        padding: 1.5rem;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        text-align: center;
        gap: 1.25rem;
    }

    .site-header.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .menu-toggle { 
        display: flex; 
    }
    
    .hero {
        min-height: 70vh;
        padding-top: 1rem;
    }
    
    .hero-actions {
        display: none;
    
    }

    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 3rem;
    }
    
    .footer-latest {
        text-align: center;
    }
    
    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .pages-header-image img {
        height: 450px;
    }
    
    .tour-hero img {
        height: 500px;
    }
    
    .tour-main {
        margin-top: 0;
    }
    
    .tour-container {
        max-width: 100%;
        padding: 2rem 5%;
    }
    
    .tour-map {
        display: block;
        margin: 0 0 2.5rem 0;
        float: left;
        width: 100%;
    }
    
    .tour-map-medium, .tour-map-small {
        display: block;
        margin: 0 15% 7% 15%;
        float: left;
        width: 70%;
    }
    
    .explore-grid, .why-grid, .highlights-grid, .highlights-columns { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .about .bio-row, .bio-gallery-grid, .tour-pricing-grid {
        grid-template-columns: 1fr;
    }

    .bio-highlight, .tour-dates {
        display: none;
    }
    
    .bio-gallery-item img {
        height: 600px;
    }
    
    .testimonial-grid,.reviews-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .reviews-kicker {
        padding-left: 0;
        margin-left: 0;
        text-align: left;
    }
    
    .gallery-grid, .gallery-grid-no-video {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-video {
        aspect-ratio: 16 / 9;
    }

    .gallery-thumbs, .gallery-thumbs-no-video {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .gallery-thumbs img,  .gallery-thumbs-no-video img  {
        aspect-ratio: 5 / 4;
        display: block;
    }
}


@media (max-width: 768px) {

    /* Stack header items */
    header .header-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px; /* spacing between logo/title and hamburger */
        text-align: center;
    }

    /* Center logo + title block */
    .brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand img {
        margin: 0 auto;
    }

    /* Center the hamburger menu */
    .menu-toggle {
        order: 2; /* ensures it appears below the brand */
        margin: 0 auto;
    }

    /* Optional: reduce top/bottom padding for tighter mobile header */
    header {
        padding: 120px 0;
    }
}







@media (max-width: 700px) {
    
    .brand-logo {
        height: 56px;
    }
    
    .ferry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    

    

    .explore-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid, .highlights-columns {
        grid-template-columns: 1fr;
    }
}


