body {
    background: linear-gradient(135deg, #f9ed32 0%, #931a1d 50%, #201818 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: 140px;
    padding-bottom: 2rem;
}

/* Hero + About band: ~15% lighter stops (fallback hexes; color-mix where supported) */
:root {
    --homepage-hero-about-gradient: linear-gradient(135deg, #fcf5a8 0%, #b55a5c 100%);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
    :root {
        --homepage-hero-about-gradient: linear-gradient(
            135deg,
            color-mix(in srgb, #f9ed32 85%, white) 0%,
            color-mix(in srgb, #931a1d 85%, white) 100%
        );
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'quincy-cf', Georgia, serif;
}

h3,h4,h5,h6{
    color:#7a1517;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    z-index: 2;
}

/* Wobbling background animation for coming-soon cards */
.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(249, 237, 50, 0.3) 0%, rgba(147, 26, 29, 0.3) 100%);
    z-index: -1;
    animation: cardWobble1 8s ease-in-out infinite;
}

.coming-soon-card::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 32px;
    background: linear-gradient(225deg, rgba(147, 26, 29, 0.2) 0%, rgba(249, 237, 50, 0.2) 100%);
    z-index: -2;
    animation: cardWobble2 10s ease-in-out infinite;
}

/* Silver Fern SVG Styling */
.silver-fern {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    color: rgba(147, 26, 29, 0.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.silver-fern svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fern-left {
    left: -20px;
    top: 15%;
    height: 500px;
    width: auto;
    transform-origin: 50% 10%;
    animation: fernSway1 6s ease-in-out infinite;
}

.fern-right {
    right: -20px;
    bottom: 10%;
    height: 450px;
    width: auto;
    transform-origin: 50% 10%;
    animation: fernSway2 7s ease-in-out infinite;
}

/* Wobbling background animations removed - now using pseudo-elements for card backgrounds */

/* Kōwhai Branch Styling */
.kowhai-branch {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    color: rgba(249, 237, 50, 0.2);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.08));
}

.kowhai-branch svg {
    width: 100%;
    height: 100%;
    display: block;
}

.branch-left-1 {
    left: 15%;
    top: 8%;
    height: 320px;
    width: auto;
    transform-origin: 20% 15%;
    animation: branchSway1 8s ease-in-out infinite;
}

.branch-right-1 {
    right: 12%;
    top: 45%;
    height: 340px;
    width: auto;
    transform-origin: 80% 15%;
    animation: branchSway2 9s ease-in-out infinite;
}

/* Inner content container with constrained width */
.coming-soon-card > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5.52rem;
}

/* Add vertical padding to first and last children */
.coming-soon-card > *:first-child {
    padding-top: 3rem;
}

.coming-soon-card > *:last-child {
    padding-bottom: 3rem;
}

/* Reset for specific elements that need different treatment */
.coming-soon-card > .submark-container {
    padding: 0;
    padding-top: 3rem;
}

.coming-soon-card > .btn-book-now {
    padding: 1rem 2.5rem;
    padding-bottom: 1rem;
}

/* Silver Fern breeze animations */
@keyframes fernSway1 {
    0%, 100% {
        transform: rotate(-3deg) translateX(0px);
    }
    25% {
        transform: rotate(8deg) translateX(15px);
    }
    50% {
        transform: rotate(-2deg) translateX(-5px);
    }
    75% {
        transform: rotate(6deg) translateX(10px);
    }
}

@keyframes fernSway2 {
    0%, 100% {
        transform: rotate(5deg) translateX(0px);
    }
    30% {
        transform: rotate(-7deg) translateX(-12px);
    }
    60% {
        transform: rotate(4deg) translateX(8px);
    }
    80% {
        transform: rotate(-5deg) translateX(-8px);
    }
}

/* Kōwhai branch breeze animations */
@keyframes branchSway1 {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
    }
    25% {
        transform: rotate(5deg) translateY(-8px);
    }
    50% {
        transform: rotate(-1deg) translateY(4px);
    }
    75% {
        transform: rotate(4deg) translateY(-6px);
    }
}

@keyframes branchSway2 {
    0%, 100% {
        transform: rotate(3deg) translateY(0px);
    }
    30% {
        transform: rotate(-6deg) translateY(6px);
    }
    60% {
        transform: rotate(2deg) translateY(-5px);
    }
    85% {
        transform: rotate(-4deg) translateY(3px);
    }
}

/* Card wobble animations for background layers */
@keyframes cardWobble1 {
    0%, 100% {
        transform: rotate(0deg) scale(1.02);
    }
    25% {
        transform: rotate(1deg) scale(1.025) translateX(2px);
    }
    50% {
        transform: rotate(-0.5deg) scale(1.02) translateX(-1px);
    }
    75% {
        transform: rotate(0.8deg) scale(1.023) translateX(1.5px);
    }
}

@keyframes cardWobble2 {
    0%, 100% {
        transform: rotate(0deg) scale(1.03);
    }
    20% {
        transform: rotate(-1.2deg) scale(1.035) translateY(2px);
    }
    40% {
        transform: rotate(0.8deg) scale(1.032) translateY(-1px);
    }
    60% {
        transform: rotate(-0.6deg) scale(1.033) translateY(1.5px);
    }
    80% {
        transform: rotate(1deg) scale(1.031) translateY(-1.2px);
    }
}
.main-heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.sub-heading {
    font-family: 'figtree', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #7f8c8d;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.content-text {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    padding-left: 150px;
    padding-right: 150px;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .content-text {
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        max-width: 100%;
    }
    ul.content-text {
        padding-left: 2rem;
        padding-right: 0;
        box-sizing: border-box;
    }
    .content-text ul {
        padding-left: 2rem;
        padding-right: 0;
    }
}

/* Service Item Styling */
.service-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(147, 26, 29, 0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #931a1d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-item p {
    margin-bottom: 0.5rem;
}

.service-item .price {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0.75rem;
}

.service-item ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.content-text ul {
    text-align: left;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
}
ul.content-text {
    padding-left: 180px;
    padding-right: 150px;
}
.content-text ul li {
    margin-bottom: 1rem;
}
.coming-soon-card  > h1.greeting {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.coming-soon-card > h1 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.coming-soon-card > h2 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
}
.coming-soon-card > h3 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Homepage full-width sections: center headings and card copy (hero excluded by markup) */
.coming-soon-card.homepage-full-width-section > h2 {
    text-align: center;
}

.coming-soon-card.homepage-full-width-section > p.content-text {
    text-align: center;
}

.coming-soon-card.homepage-full-width-section .content-text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
}

.homepage-hero-card {
    position: relative;
    background: var(--homepage-hero-about-gradient);
    max-width: none;
    width: 100%;
    margin: -8px 0 0;
    padding: 0;
    border-radius: 0;
}

.homepage-hero-card::before,
.homepage-hero-card::after {
    display: none;
}

.homepage-hero-toucan-bg {
    position: absolute;
    inset: 8% 28% 12% 8%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    max-width: min(22rem, 42vw);
    margin: 0;
}

.homepage-hero-toucan-bg svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(52vh, 22rem);
}

.homepage-hero-toucan-bg svg path,
.homepage-hero-toucan-bg svg ellipse {
    opacity: 0.22;
    animation: none;
    stroke-opacity: 0.38;
}

.homepage-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, min(42vw, 560px));
    gap: 1.5rem;
    align-items: center;
    max-width: none;
    width: 100%;
    padding-top: 3rem;
    padding-right: 0;
    padding-bottom: 3rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.homepage-hero-content {
    grid-column: 1;
    padding: 0;
    position: relative;
    z-index: 2;
}

.homepage-hero-content h1.greeting {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem;
    line-height: 1;
}

.homepage-hero-content h3 {
    font-family: 'figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #000000;
    margin: 0 0 1.25rem;
    line-height: 1.35;
}

.homepage-hero-content .btn-book-now {
    margin-top: 0.25rem;
}

.homepage-hero-image-wrapper {
    grid-column: 2;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    width: min(100%, 560px);
    justify-self: end;
    align-self: center;
}

.homepage-hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 360px;
    object-fit: cover;
}

.homepage-hero-card:not(.homepage-hero-has-image) .homepage-hero-layout {
    display: block;
    max-width: 800px;
    padding-right: 5.52rem;
    text-align: center;
}

.homepage-full-width-section {
    max-width: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(to bottom right, #fff8c8, #a6910e);
}

.homepage-full-width-section.homepage-about-band {
    background: var(--homepage-hero-about-gradient);
}

.homepage-full-width-section.homepage-testimonials-band {
    background: #f4f1ea url('/images/faded_milford_sound.jpg') center / cover no-repeat;
}

.homepage-full-width-section::before,
.homepage-full-width-section::after {
    display: none;
}

/* Homepage contact: split CTA (left) and inquiry form (right) — full viewport width */
.homepage-full-width-section.homepage-contact-split {
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    background: transparent;
    padding: 0;
    overflow: visible;
}

.coming-soon-card.homepage-contact-split > * {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.homepage-contact-split__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 22rem;
    min-width: 0;
}

.homepage-contact-split__cta {
    background: #f4f1ea;
    padding: 2.5rem 1.75rem 2.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    min-width: 0;
}

.homepage-contact-split__heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #2c1810;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    position: relative;
}

.homepage-contact-split__heading-visible {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
}

.homepage-contact-split__heading-g-wrap {
    position: relative;
    display: inline-block;
}

.homepage-contact-split__heading-g {
    position: relative;
    z-index: 0;
}

.homepage-contact-split__heading-toucan {
    position: absolute;
    left: calc(50% - 15px);
    bottom: calc(100% - 25px);
    width: clamp(2rem, 5.5vw, 2.85rem);
    transform: translate(-50%, 0.15em);
    color: #931a1d;
    pointer-events: none;
    z-index: 1;
    line-height: 0;
}

.homepage-contact-split__heading-toucan svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.92;
}

.homepage-contact-split__heading-rest {
    white-space: nowrap;
}

.homepage-contact-split__book-btn {
    margin-top: 1rem;
}

.homepage-contact-split__hint {
    margin: 1.5rem 0 0;
    font-size: 1.25rem;
    color: #555;
    max-width: 17rem;
    line-height: 1.45;
}

.homepage-contact-split__form-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.5rem 2.5rem;
    box-sizing: border-box;
    min-width: 0;
    overflow: visible;
}

.homepage-contact-split__form-col.homepage-section-with-bg {
    background:
        var(--homepage-section-bg-image, none),
        var(--homepage-hero-about-gradient);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-form.homepage-contact-split__form {
    width: 100%;
    max-width: 26rem;
    margin: 0;
    text-align: left;
    min-width: 0;
}

.homepage-contact-split__form-panel {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.35rem 1.35rem;
    box-shadow: 0 0.5rem 2rem rgba(160, 90, 20, 0.18);
    box-sizing: border-box;
}

.homepage-contact-split__form-panel .form-group:last-of-type {
    margin-bottom: 0;
}

.homepage-contact-split__form-panel,
.contact-form.homepage-contact-split__form {
    text-align: left;
}

.homepage-contact-split__submit-wrap {
    text-align: center;
    margin-top: 1.25rem;
}

.homepage-contact-split__submit-wrap .btn-submit {
    margin-top: 0;
}

.homepage-section-with-bg {
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
        var(--homepage-section-bg-image, none),
        rgba(255, 255, 255, 0.95);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.homepage-full-width-section.homepage-section-with-bg {
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
        var(--homepage-section-bg-image, none),
        linear-gradient(to bottom right, #fff8c8, #a6910e);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Difference: keep the photo band only around the cards, with pearl around it */
.homepage-full-width-section.homepage-section-with-bg.homepage-difference-section {
    background: #f4f1ea;
    padding-left: 0;
    padding-right: 0;
}

.coming-soon-card.homepage-difference-section > .homepage-paragraph-section {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.section-heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.contact-info {
    font-size: 1rem;
    color: #3498db;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.icon-container {
    margin-bottom: 2rem;
}
.main-icon {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 1rem;
}
.construction-icon {
    font-size: 3rem;
    color: #e67e22;
    margin: 0 1rem;
}
.flag-icon {
    font-size: 2rem;
    color: #e74c3c;
    margin: 0 0.5rem;
}
nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 1.2rem;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo {
    height: 100px;
    width: auto;
    max-width: 400px;
}
nav.site-nav .site-nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
    font-size: 1.2rem;
}
.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.nav-social a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
.nav-social img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}
nav.site-nav a.site-nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.3;
    transition: color 0.3s;
}
nav.site-nav a.site-nav-link:not(.nav-book-now) {
    font-family: 'quincy-cf', Georgia, serif;
}
nav.site-nav .site-nav-menu > li {
    position: relative;
}
nav.site-nav .site-nav-menu > li.has-dropdown {
    padding-bottom: 0.5rem;
}
nav.site-nav .site-nav-menu > li.has-dropdown > a.site-nav-link::after {
    content: '▾';
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.7rem;
    vertical-align: middle;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.75rem 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    z-index: 1100;
}
/* Invisible bridge so the pointer can move from the parent link into the menu */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}
.nav-dropdown li {
    width: 100%;
    list-style: none;
}
nav.site-nav .nav-dropdown a.site-nav-link {
    display: block;
    padding: 0.55rem 1rem;
    white-space: nowrap;
}
nav.site-nav .site-nav-menu > li.has-dropdown:hover > .nav-dropdown {
    display: flex;
}
nav.site-nav a.site-nav-link:not(.nav-book-now):hover {
    color: #3498db;
}
nav.site-nav a.site-nav-link.nav-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #931a1d;
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(147, 26, 29, 0.3);
    line-height: 1;
    vertical-align: middle;
}
nav.site-nav a.site-nav-link.nav-book-now:hover {
    background-color: #7a1517;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(147, 26, 29, 0.4);
    color: white;
}
.submark-container {
    display: flex;
    justify-content: center;
    margin-bottom: -3.1rem;
    position: relative;
    z-index: 1;
    transform: translateX(-80px);
}
.submark-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
}
/* Submark SVG Animation Styles */
.submark-container svg {
    height: 100px;
    width: auto;
    max-width: 100%;
    overflow: visible;
}
.submark-container svg path,
.submark-container svg ellipse {
    stroke: #931a1d;
    stroke-width: 2.5;
    stroke-linejoin: round;
    stroke-linecap: round;
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: 
        drawStroke 3s ease-in-out forwards,
        fillIn 1s ease-in-out 3s forwards,
        fadeBorder 3s ease-in-out 4s infinite;
}
.submark-container svg ellipse {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}
@keyframes drawStroke {
    0% {
        stroke-dashoffset: 2000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes fillIn {
    0% {
        fill-opacity: 0;
    }
    100% {
        fill-opacity: 1;
    }
}
@keyframes fadeBorder {
    0%, 100% {
        stroke-opacity: 0.4;
    }
    50% {
        stroke-opacity: 1;
    }
}
/* Eye blink animation */
.submark-container svg ellipse {
    animation: 
        drawStroke 3s ease-in-out forwards,
        fillIn 1s ease-in-out 3s forwards,
        fadeBorder 3s ease-in-out 4s infinite,
        blink 8s ease-in-out 4s infinite;
}
@keyframes blink {
    0%, 13%, 17%, 100% {
        opacity: 1;
    }
    15% {
        opacity: 0;
    }
    43%, 47% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
}
.news-section {
    margin-top: 2rem;
    max-width: 1200px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}
.news-title a:hover {
    color: #3498db;
}
.news-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #95a5a6;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}
.news-source {
    font-weight: 500;
}
.news-date {
    font-style: italic;
}
.contact-form {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.contact-form .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.contact-form .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}
.contact-form .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}
.contact-details {
    text-align: left;
}
.contact-details .content-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-details .content-text i {
    font-size: 1.2rem;
    color: #3498db;
    min-width: 24px;
}
.social-links {
    margin-top: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}
.social-icon:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    color: white;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    text-decoration: none;
}

.service-card h3 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.3rem;
    color: #931a1d;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

.homepage-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.homepage-service-slot {
    min-height: 240px;
}

.homepage-service-slot-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.homepage-service-slot-image {
    overflow: visible;
    border-radius: 16px;
    box-shadow: none;
    background: transparent;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.homepage-service-slot-top_left.homepage-service-slot-image {
    justify-content: flex-start;
}

.homepage-service-slot-bottom_right.homepage-service-slot-image {
    justify-content: flex-end;
}

.homepage-service-image {
    display: block;
    width: 68%;
    max-width: 360px;
    min-height: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.homepage-service-slot-empty {
    border: 2px dashed rgba(147, 26, 29, 0.2);
    border-radius: 16px;
    min-height: 240px;
    background: rgba(255, 255, 255, 0.35);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.homepage-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.homepage-testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 16rem;
    background: #931a1d;
    color: #fff;
    border-radius: 15px;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    text-align: center;
    align-items: center;
}

.homepage-testimonials-grid .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.homepage-testimonials-grid .testimonial-text {
    color: #fff;
    flex: 1 1 auto;
    margin-bottom: 1.25rem;
    text-align: center;
    align-self: stretch;
}

.homepage-testimonials-grid .testimonial-author {
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin-top: auto;
    align-self: stretch;
}

.homepage-testimonial-card .homepage-testimonial-photo {
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.homepage-paragraph-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.homepage-paragraph-block {
    display: flow-root;
    margin: 0;
    text-align: left;
}

/* .content-text uses large vertical margins site-wide; keep normal rhythm here */
.homepage-paragraph-section .content-text.homepage-paragraph-text {
    margin-top: 0;
    margin-bottom: 0;
}

.homepage-paragraph-text {
    text-align: left;
}

.coming-soon-card.homepage-full-width-section .homepage-paragraph-text,
.coming-soon-card.homepage-full-width-section .content-text.homepage-paragraph-text {
    text-align: center;
}

.coming-soon-card.homepage-full-width-section .homepage-paragraph-text ul,
.coming-soon-card.homepage-full-width-section .homepage-paragraph-text ol {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.homepage-about-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
    border: 7px double rgba(160, 160, 160, 0.5);
    box-sizing: border-box;
}

.homepage-about-card-has-image {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.homepage-about-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-about-card .homepage-paragraph-section {
    display: grid;
    gap: 1rem;
}

.homepage-about-card .homepage-paragraph-block {
    display: block;
}

.homepage-about-card .homepage-paragraph-image,
.homepage-about-card .homepage-paragraph-image-left,
.homepage-about-card .homepage-paragraph-image-right {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.homepage-about-card .content-text.homepage-paragraph-text {
    padding: 0;
}

.homepage-about-card-cta {
    margin: 1.5rem 0 0;
}

.homepage-about-card-cta .btn-book-now {
    margin-top: 0;
}

.homepage-about-card-image-wrapper {
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-about-card-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 314px;
    object-fit: contain;
}

.homepage-difference-section .homepage-paragraph-section {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    padding: 2rem clamp(1.25rem, 4vw, 3.5rem);
    box-sizing: border-box;
    background: transparent;
}

.homepage-difference-section .homepage-paragraph-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
        var(--homepage-section-bg-image, none),
        linear-gradient(to bottom right, #fff8c8, #a6910e);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.homepage-difference-section .homepage-paragraph-block {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.homepage-difference-section .content-text.homepage-paragraph-text {
    padding: 0;
}

.homepage-difference-section .homepage-paragraph-image,
.homepage-difference-section .homepage-paragraph-image-left,
.homepage-difference-section .homepage-paragraph-image-right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
}

.homepage-paragraph-image {
    width: min(42%, 320px);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
}

.homepage-paragraph-image-left {
    float: left;
    margin-right: 1.5rem;
}

.homepage-paragraph-image-right {
    float: right;
    margin-left: 1.5rem;
}

.homepage-about-image-wrapper {
    margin: 2rem auto;
    max-width: 760px;
}

.homepage-about-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.homepage-testimonial-photo {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 999px;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #931a1d;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
        padding-top: 200px;
    }
    
    /* General image constraints for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    nav.site-nav {
        padding: 0.5rem 1rem;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-logo {
        height: 80px;
        max-width: 300px;
    }
    nav.site-nav .site-nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .nav-dropdown {
        position: static;
        display: flex;
        min-width: 0;
        box-shadow: none;
        background: transparent;
        padding: 0.25rem 0 0 1rem;
    }
    nav.site-nav .nav-dropdown a.site-nav-link {
        padding: 0.25rem 0;
        white-space: normal;
    }
    nav.site-nav .site-nav-menu > li.has-dropdown {
        padding-bottom: 0;
    }
    nav.site-nav .site-nav-menu > li.has-dropdown > a.site-nav-link::after {
        content: '';
        margin-left: 0;
    }
    .nav-social {
        gap: 1.5rem;
    }
    .nav-social img {
        height: 28px;
        width: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    .submark-container {
        transform: translateX(-45px);
        margin-bottom: -2rem;
    }
    .submark-container svg {
        height: 70px;
    }
    .coming-soon-card {
        padding: 0.75rem;
        margin: 1rem;
        border-radius: 20px;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    .homepage-hero-card,
    .homepage-full-width-section {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
    }

    .homepage-contact-split__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .homepage-contact-split__cta {
        padding: 2rem 1.25rem 1.75rem;
    }

    .homepage-contact-split__form-col {
        padding: 1.75rem 1rem 2rem;
    }

    .homepage-contact-split__form-panel {
        padding: 1.25rem 1rem 1.15rem;
    }

    .homepage-contact-split__heading-toucan {
        width: clamp(1.75rem, 11vw, 2.5rem);
        transform: translate(-50%, 0.2em);
    }
    
    /* Constrain pseudo-elements on mobile */
    .coming-soon-card::before,
    .coming-soon-card::after {
        display: none;
    }
    
    .fern-left {
        height: 350px;
        left: -60px;
        top: 12%;
    }
    
    .fern-right {
        height: 320px;
        right: -60px;
        bottom: 8%;
    }
    
    .branch-left-1 {
        height: 240px;
        left: -20px;
        top: 10%;
    }
    
    .branch-right-1 {
        height: 260px;
        right: -20px;
        top: 48%;
    }
    
    .coming-soon-card > * {
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .coming-soon-card > *:first-child {
        padding-top: 2rem;
    }
    
    .coming-soon-card > *:last-child {
        padding-bottom: 2rem;
    }
    
    .coming-soon-card > .submark-container {
        padding-top: 2rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    .sub-heading {
        font-size: 1.1rem;
    }
    .content-text {
        font-size: 0.95rem;
    }
    .coming-soon-card > h1.greeting {
        font-size: 2.5rem;
        box-sizing: border-box;
        max-width: 100%;
    }

    .homepage-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-right: 0;
        text-align: center;
    }

    .homepage-hero-card:not(.homepage-hero-has-image) .homepage-hero-layout {
        padding-right: 1rem;
    }

    .homepage-hero-image-wrapper {
        grid-column: 1;
        border-radius: 16px 0 0 16px;
        width: 100%;
        max-width: none;
        justify-self: end;
        margin: 0 0 0 auto;
    }

    .homepage-hero-content h1.greeting {
        font-size: 2.75rem;
    }

    .homepage-hero-content h3 {
        font-size: 1.1rem;
    }

    .homepage-hero-image {
        max-height: 280px;
    }

    .homepage-hero-toucan-bg {
        inset: 14% 6% 22% 6%;
        max-width: min(14rem, 72vw);
    }

    .homepage-hero-toucan-bg svg {
        max-height: min(40vh, 14rem);
    }

    .section-heading {
        font-size: 1.75rem;
        box-sizing: border-box;
        max-width: 100%;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .news-section {
        margin-top: 1.5rem;
    }
    .social-icons {
        gap: 0.75rem;
    }
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .aracari-image-container {
        margin: 2rem auto;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }
    
    .aracari-bird-image {
        border-radius: 12px;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    
    .image-caption {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .btn-book-now {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .coming-soon-card > .btn-book-now {
        padding-bottom: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .homepage-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services-grid .service-card:nth-child(4) {
        grid-column: auto;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
        box-sizing: border-box;
        width: 100%;
    }

    .homepage-service-slot,
    .homepage-service-slot-empty {
        min-height: 220px;
    }

    .homepage-service-slot-image {
        justify-content: center;
        overflow: hidden;
        border-radius: 16px;
        background: #f8f9fa;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .homepage-service-slot-image .homepage-service-image {
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 220px;
        border-radius: 0;
    }
    
    .service-item h3 {
        font-size: 1.05rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .homepage-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .homepage-paragraph-block {
        display: block;
    }

    .homepage-paragraph-image,
    .homepage-paragraph-image-left,
    .homepage-paragraph-image-right {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }

    .homepage-about-card,
    .homepage-about-card-has-image {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .homepage-about-card-image {
        max-height: 160px;
    }

    .homepage-difference-section .homepage-paragraph-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem clamp(1rem, 4vw, 2rem);
    }

    .homepage-about-image-wrapper {
        margin: 1.25rem 0;
        max-width: 100%;
    }

    .homepage-testimonial-photo {
        width: 96px;
        height: 96px;
    }
    
    .testimonials-grid .testimonial-card:nth-child(3) {
        grid-column: auto !important;
        max-width: 100% !important;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        box-sizing: border-box;
        width: 100%;
    }
    
    .contact-form {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
.site-footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-content {
    max-width: 700px;
    margin: 0 auto;
}
.footer-content--columns {
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    gap: 2rem 2.5rem;
}
.footer-col {
    min-width: 0;
}
.footer-col--left {
    text-align: left;
    justify-self: start;
}
.footer-col--center {
    text-align: center;
    justify-self: center;
    max-width: 22rem;
}
.footer-col--right {
    text-align: right;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}
.footer-col--right .footer-email,
.footer-col--right .footer-login {
    margin-bottom: 0;
}
.footer-col--right .nav-social {
    margin: 0.35rem 0 0;
    justify-content: flex-end;
}
.footer-brand {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c3e50;
    margin: 0 0 0.5rem;
}
.footer-license {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
}
.footer-badge {
    margin: 0 0 1rem;
    text-align: center;
}
.footer-disclaimer {
    margin: 0.65rem 0 0;
    max-width: 26rem;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: #95a5a6;
    font-style: italic;
}
.iaa-badge {
    max-width: 100px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.iaa-badge:hover {
    opacity: 1;
}
.footer-email {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}
.footer-email a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-email a:hover {
    color: #2980b9;
}
.footer-copyright {
    font-size: 0.875rem;
    color: #95a5a6;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-links {
    font-size: 0.75rem;
    color: #95a5a6;
    margin: 0.75rem 0 0;
}
.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #7f8c8d;
}

/* Aracari Bird Image Styling */
.aracari-image-container {
    margin: 3rem auto;
    text-align: center;
    max-width: 600px;
}

.aracari-bird-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aracari-bird-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.image-caption {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Book Now Button */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #931a1d;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(147, 26, 29, 0.3);
    line-height: 1;
    vertical-align: middle;
}

.btn-book-now:hover {
    background-color: #7a1517;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(147, 26, 29, 0.4);
    color: white;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'figtree', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #931a1d;
    box-shadow: 0 0 0 3px rgba(147, 26, 29, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #931a1d;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(147, 26, 29, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #7a1517;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(147, 26, 29, 0.4);
}

/* Footer Login Link */
.footer-login {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.footer-login a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-login a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .footer-content--columns {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1.75rem;
    }
    .footer-col--left,
    .footer-col--center,
    .footer-col--right {
        text-align: center;
        justify-self: center;
        max-width: 100%;
    }
    .footer-col--right {
        align-items: center;
    }
    .footer-col--right .nav-social {
        justify-content: center;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
    .footer-license,
    .footer-email {
        font-size: 0.9rem;
    }
    .footer-disclaimer {
        font-size: 0.625rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    .footer-copyright {
        font-size: 0.8rem;
    }
    .footer-links {
        font-size: 0.7rem;
    }
    .footer-badge img,
    .iaa-badge {
        max-width: 80px;
        height: auto;
    }
}

/* Services Grid - Landing Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(249, 237, 50, 0.3) 0%, rgba(147, 26, 29, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-card-title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #931a1d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-description {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-includes {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-list li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #931a1d;
    font-weight: bold;
    font-size: 1.1rem;
}

.homepage-service-slot-text.service-card {
    width: 125%;
    min-height: calc(280px * 0.85 * 0.85);
    padding: 0;
    background: transparent;
    color: lightgrey;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-service-slot-text.service-card:hover {
    background: transparent;
    box-shadow: none;
}

/* Translucent “frame” (20% white) behind the red panel, overlapping the image slightly */
.homepage-service-text-halo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 11px;
    border-radius: 22px;
    box-sizing: border-box;
    background: lightgray;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

.homepage-service-text-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem 1.25rem;
    border-radius: 15px;
    background: #931a1d;
    text-align: center;
    box-sizing: border-box;
    transition: background-color 0.3s;
}

.homepage-service-slot-text.service-card h3,
.homepage-service-slot-text.service-card p {
    color: #ffffff;
}

.homepage-service-slot-text.service-card:hover .homepage-service-text-panel {
    background: #ffffff;
}

.homepage-service-slot-text.service-card:hover h3 {
    color: #931a1d;
}

.homepage-service-slot-text.service-card:hover p {
    color: #7f8c8d;
}

.homepage-service-slot-top_right.service-card {
    justify-self: start;
    margin-left: -42%;
}

.homepage-service-slot-bottom_left.service-card {
    justify-self: end;
    margin-right: -42%;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .service-card {
        padding: 1.5rem;
        box-sizing: border-box;
        width: 100%;
    }

    .homepage-service-slot-text.service-card {
        width: 100%;
        min-height: 220px;
        justify-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }

    .homepage-service-text-halo {
        border-radius: 20px;
        padding: 12px;
    }

    .homepage-service-text-panel {
        border-radius: 14px;
        padding: 1.5rem 1.25rem;
    }
    
    .service-card-title {
        font-size: 1.5rem;
    }
}

/* Service Offerings landing page */
.services-offerings-page {
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0 0 2rem;
    padding: 0;
    box-sizing: border-box;
}

.services-offerings-page .content-text {
    color: #2c1810;
    line-height: 1.65;
}

/* Hero */
.services-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f4f1ea;
}

.services-hero__gradient {
    position: relative;
    z-index: 3;
    height: 12px;
    background: linear-gradient(to right, #f9ed32 0%, #e89838 100%);
}

.services-hero__mountains {
    position: absolute;
    inset: 12px 0 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.services-hero__mountains::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.72) 45%,
        rgba(244, 241, 234, 0.92) 100%
    );
}

.services-hero__body {
    position: relative;
    z-index: 2;
    max-width: 52rem;
    min-height: 20rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    box-sizing: border-box;
}

.services-hero__body--no-photo {
    min-height: auto;
    padding-bottom: 2.5rem;
}

.services-hero__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #931a1d;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.services-hero__text {
    margin: 0 0 1rem;
    padding: 0;
    max-width: none;
}

.services-hero__text:last-child {
    margin-bottom: 0;
}

.services-hero__forest {
    position: relative;
    z-index: 2;
    width: 100%;
    line-height: 0;
    margin-top: 1rem;
}

.services-hero__forest img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    object-position: center;
}

/* One-off section */
.services-one-off {
    background: #f4f1ea;
    padding: 3rem 0 2.5rem;
}

.services-e2e {
    background: linear-gradient(to right, #f9ed32 0%, #e89838 100%);
    padding: 3rem 0 0;
}

.services-section-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.services-section-heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #931a1d;
    margin: 0 0 1rem;
    line-height: 1.25;
    text-align: center;
}

.services-section-intro,
.e2e-category__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.services-section-intro__text {
    text-align: center;
}

.services-section-intro__text .content-text {
    margin: 0;
    padding: 0;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.services-section-intro__media,
.e2e-category__header-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-intro-image {
    display: block;
    width: 100%;
    max-width: 28rem;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.services-section-intro--reverse .services-section-intro__media {
    order: -1;
}

.services-section-intro--text-only {
    grid-template-columns: 1fr;
}

/* Service cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.services-card {
    border-radius: 56px;
    padding: 2rem 1.5rem 2.25rem;
    text-align: center;
    box-sizing: border-box;
    min-width: 0;
}

.services-card--amber {
    background: #ffbe60;
}

.services-card--cream {
    background: #faf8f0;
}

.services-card__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: #2c1810;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.services-card__divider {
    border: none;
    border-top: 1px solid rgba(44, 24, 16, 0.35);
    margin: 0.85rem auto;
    max-width: 85%;
}

.services-card__line {
    margin: 0;
    font-size: 0.95rem;
    color: #2c1810;
    line-height: 1.5;
}

.services-section-cta {
    text-align: center;
    margin: 0;
    padding: 0 0 0.5rem;
}

.services-section-link {
    font-size: 1rem;
    color: #2c1810;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-section-link:hover {
    color: #931a1d;
}

.services-cta-bar {
    text-align: center;
    padding: 1rem 1.5rem 1.25rem;
    background: linear-gradient(to right, #f9ed32 0%, #e89838 100%);
}

.services-cta-bar .services-section-link {
    font-weight: 500;
}

/* Community Support */
.services-community {
    position: relative;
    background-color: #931a1d;
    background-image:
        url('/images/Fern.svg'),
        url('/images/Fern.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: -8% 20%, 108% 60%;
    background-size: 280px auto, 240px auto;
    overflow: hidden;
}

.services-community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(147, 26, 29, 0.88);
    pointer-events: none;
}

.services-community__inner {
    position: relative;
    z-index: 1;
    max-width: 50rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
    text-align: center;
    box-sizing: border-box;
}

.services-community__heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.25;
}

.services-community__text {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.65;
}

.services-community__link {
    color: #ffffff;
    text-decoration: none;
}

.services-community__link:hover {
    color: #f9ed32;
}

.services-community__link strong {
    font-weight: 700;
}

@media (max-width: 991px) {
    .services-section-intro,
    .services-section-intro--reverse,
    .e2e-category__header,
    .e2e-category__header--reverse {
        grid-template-columns: 1fr;
    }

    .services-section-intro--reverse .services-section-intro__media {
        order: 0;
    }

    .services-section-intro__media {
        order: -1;
    }

    .services-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .services-card {
        flex: 0 0 min(85vw, 320px);
        scroll-snap-align: center;
        border-radius: 48px;
    }
}

@media (max-width: 768px) {
    .services-hero__body {
        padding: 2rem 1.25rem 1.5rem;
    }

    .services-one-off,
    .services-e2e {
        padding-top: 2rem;
    }

    .services-section-inner {
        padding: 0 1.25rem;
    }

    .services-community__inner {
        padding: 2.5rem 1.25rem 3rem;
    }

    .services-community {
        background-size: 200px auto, 180px auto;
    }
}

/* End-to-end services page */
body:has(.e2e-services-page) {
    align-items: stretch;
    background: #fffbea;
}

.e2e-services-page {
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.e2e-services-page + .site-footer {
    margin-top: 0;
}

.e2e-services-page .content-text {
    color: #2c1810;
    line-height: 1.65;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Hero (aligned with .gs-hero) */
.e2e-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fffbea;
    padding: 0 0 2rem;
    box-sizing: border-box;
}

.e2e-hero--has-image {
    --e2e-hero-panel-estimate: calc(8.75rem + 8lh);
    min-height: 0;
    padding: 0 0 calc(var(--e2e-hero-panel-estimate) * 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.e2e-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 12px;
    background: linear-gradient(to right, #f9ed32 0%, #e89838 100%);
}

.e2e-hero__image {
    position: absolute;
    inset: 0;
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.e2e-hero__image::after {
    display: none;
    content: none;
}

.e2e-hero__panel {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem 1rem;
    text-align: center;
    box-sizing: border-box;
}

.e2e-hero--has-image .e2e-hero__panel {
    margin-top: calc(var(--e2e-hero-panel-estimate, calc(8.75rem + 8lh)) * 0.15);
    padding: 2.5rem 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

.e2e-hero__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #931a1d;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.e2e-hero__text {
    color: #2c1810;
    line-height: 1.65;
    margin: 0 0 0.75rem;
}

.e2e-hero__text:last-child {
    margin-bottom: 0;
}

/* Intro band */
.e2e-intro {
    background: #fffbea;
    padding: 2.5rem 0 2rem;
    box-sizing: border-box;
}

.e2e-intro__layout {
    display: grid;
    grid-template-columns: minmax(12rem, 22rem) minmax(0, 1fr);
    gap: 0;
    max-width: 72rem;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
    align-items: stretch;
}

.e2e-intro__callout {
    background: #931a1d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.75rem;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50% + 1.5rem);
    border-radius: 0 2rem 2rem 0;
    box-sizing: border-box;
}

.e2e-intro__callout-title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    color: #ffffff;
}

.e2e-intro__content {
    padding: 1.5rem 0 1.5rem 2rem;
    box-sizing: border-box;
}

.e2e-intro__lead {
    margin: 0 0 0.75rem;
}

.e2e-intro__list {
    text-align: left;
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
}

.e2e-intro__list li {
    margin-bottom: 0.65rem;
}

.e2e-intro__note {
    margin: 0;
    font-size: 0.95rem;
}

.e2e-intro__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.e2e-pill {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    background: #931a1d;
    color: #ffffff;
    font-family: 'figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.e2e-pill:hover,
.e2e-pill:focus-visible {
    background: #7a1517;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.e2e-pill.is-active {
    background: #7a1517;
    box-shadow: 0 0 0 2px #fffbea, 0 0 0 4px #931a1d;
}

/* Collapsible category panels (progressive enhancement: requires html.e2e-js) */
.e2e-panels__hint {
    display: none;
}

html.e2e-js .e2e-category {
    display: none;
}

html.e2e-js .e2e-category.is-active {
    display: block;
}

html.e2e-js .e2e-panels__hint {
    display: block;
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
    color: #4a4a4a;
    font-size: 0.95rem;
}

html.e2e-js .e2e-panels.e2e-panels--has-active .e2e-panels__hint {
    display: none;
}

/* Category sections */
.e2e-category {
    padding: 3rem 0 2.5rem;
    box-sizing: border-box;
    overflow: visible;
}

.e2e-category--cream {
    background: #fffbea;
}

.e2e-category--gradient {
    background: linear-gradient(to right, #f9ed32 0%, #e89838 100%);
    padding-bottom: 3rem;
}

.e2e-category__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.e2e-category__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #931a1d;
    margin: 0 0 0.75rem;
    line-height: 1.25;
    text-align: left;
}

.e2e-category--gradient .e2e-category__title {
    color: #5c120f;
}

.e2e-category__header-text.services-section-intro__text {
    text-align: left;
}

.e2e-category__header .e2e-category__title {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.e2e-category__header .e2e-category__intro {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #2c1810;
    line-height: 1.6;
    text-align: left;
    max-width: 28rem;
    margin-left: 0;
    margin-right: auto;
}

/* Section images flush to viewport edge (Canva / about-aracari pattern) */
@media (min-width: 992px) {
    .e2e-category__header--bleed-start {
        --e2e-bleed-image-min: 21.6rem;
        --e2e-bleed-image-max: 50.4vw;
        grid-template-columns: minmax(var(--e2e-bleed-image-min), var(--e2e-bleed-image-max)) minmax(0, 1fr);
        gap: clamp(1.25rem, 2.5vw, 2rem);
        width: 100%;
        max-width: none;
        margin: 0 0 2.5rem;
        padding: 0 max(1.5rem, calc((100% - 72rem) / 2 + 1.5rem)) 0 0;
        box-sizing: border-box;
    }

    .e2e-category__header--bleed-end {
        --e2e-bleed-image-min: 21.6rem;
        --e2e-bleed-image-max: 50.4vw;
        grid-template-columns: minmax(0, 1fr) minmax(var(--e2e-bleed-image-min), var(--e2e-bleed-image-max));
        width: 100%;
        max-width: none;
        margin: 0 0 2.5rem;
        padding: 0 0 0 max(1.5rem, calc((100% - 72rem) / 2 + 1.5rem));
        box-sizing: border-box;
    }

    .e2e-category__header--bleed-start .e2e-category__header-media,
    .e2e-category__header--bleed-end .e2e-category__header-media {
        justify-content: stretch;
        align-items: stretch;
        opacity: 1;
    }

    .e2e-category__header--bleed-start .e2e-category__header-media::before,
    .e2e-category__header--bleed-start .e2e-category__header-media::after,
    .e2e-category__header--bleed-end .e2e-category__header-media::before,
    .e2e-category__header--bleed-end .e2e-category__header-media::after {
        display: none;
        content: none;
    }

    .e2e-category__header--bleed-start picture,
    .e2e-category__header--bleed-end picture {
        display: block;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .e2e-category__header--bleed-start .services-intro-image,
    .e2e-category__header--bleed-end .services-intro-image,
    .e2e-category__header--bleed-start img,
    .e2e-category__header--bleed-end img {
        width: 100%;
        max-width: none;
        min-height: clamp(16rem, 33.6vw, 26.4rem);
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        display: block;
        opacity: 1;
        filter: none;
    }

    .e2e-category__header--bleed-start .services-intro-image {
        border-radius: 0 24px 24px 0;
    }

    .e2e-category__header--bleed-end .services-intro-image {
        border-radius: 24px 0 0 24px;
    }

    .e2e-category__header--bleed-start .e2e-category__header-text,
    .e2e-category__header--bleed-end .e2e-category__header-text {
        padding: 1rem 0;
    }
}

/* Service cards grid — gap 15% tighter; min width absorbs reclaimed space */
.e2e-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(240px + 0.225rem), 1fr));
    gap: 1.275rem;
}

.e2e-card {
    box-sizing: border-box;
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.e2e-card--burgundy {
    background: #931a1d;
    border-radius: 56px;
    padding: 2.1rem 1.5rem 2.35rem;
    color: #ffffff;
}

.e2e-card--arch {
    background: #faf8f0;
    border-radius: 80px 80px 0 0;
    padding: 2.1rem 1.5rem 2.35rem;
    color: #2c1810;
}

.e2e-card__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.e2e-card--burgundy .e2e-card__title {
    color: #ffffff;
}

.e2e-card--arch .e2e-card__title {
    color: #2c1810;
}

.e2e-card__divider {
    border: none;
    margin: 0.85rem auto;
    max-width: 85%;
    width: 100%;
}

.e2e-card--burgundy .e2e-card__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.e2e-card--arch .e2e-card__divider {
    border-top: 1px solid rgba(44, 24, 16, 0.35);
}

.e2e-card__text,
.e2e-card__line {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.e2e-card--burgundy .e2e-card__text,
.e2e-card--burgundy .e2e-card__line,
.e2e-card--burgundy .e2e-card__body {
    color: #ffffff;
    font-family: 'figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.e2e-card--arch .e2e-card__line {
    color: #2c1810;
}

.e2e-card__body {
    font-size: 0.9rem;
    line-height: 1.55;
}

.e2e-card__body p {
    margin: 0 0 0.65rem;
}

.e2e-card__body p:last-child {
    margin-bottom: 0;
}

.e2e-card__list {
    text-align: left;
    margin: 0 0 0.65rem;
    padding-left: 1.25rem;
}

.e2e-card--burgundy a {
    color: #f9ed32;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.e2e-card--burgundy a:hover {
    color: #ffffff;
}

.e2e-card__price {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.45;
    margin-top: auto;
    padding-top: 0.25rem;
}

.e2e-card--burgundy .e2e-card__price {
    color: #ffffff;
}

.e2e-card--arch .e2e-card__price {
    color: #2c1810;
}

.e2e-community.services-community {
    margin-top: 0;
}

@media (max-width: 991px) {
    .e2e-category__header--bleed-start,
    .e2e-category__header--bleed-end {
        padding: 0 1.5rem;
        margin-bottom: 2.5rem;
    }

    .e2e-category__header--bleed-start .services-intro-image,
    .e2e-category__header--bleed-end .services-intro-image {
        max-width: 28rem;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }

    .e2e-intro__layout {
        grid-template-columns: 1fr;
    }

    .e2e-intro__callout {
        margin-left: 0;
        padding-left: 1.75rem;
        border-radius: 1.25rem;
    }

    .e2e-intro__content {
        padding: 1.5rem 0 0;
    }

    .e2e-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.85rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .e2e-card {
        flex: 0 0 min(85vw, 320px);
        scroll-snap-align: center;
    }

    .e2e-card--burgundy,
    .e2e-card--arch {
        border-radius: 48px;
    }

    .e2e-card--arch {
        border-radius: 64px 64px 0 0;
    }
}

@media (max-width: 991px) {
    .e2e-hero--has-image {
        --e2e-hero-panel-estimate: calc(8rem + 10lh);
    }
}

@media (max-width: 768px) {
    .e2e-hero__panel {
        padding: 2rem 1.25rem 1rem;
    }

    .e2e-hero--has-image .e2e-hero__panel {
        padding: 2rem 1.25rem 1.5rem;
    }

    .e2e-intro {
        padding-top: 2rem;
    }

    .e2e-intro__layout,
    .e2e-intro__nav,
    .e2e-category__inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .e2e-category {
        padding-top: 2rem;
    }
}

/* About page */
body:has(.about-page) {
    align-items: stretch;
}

.about-page {
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #f4f1ea;
    box-sizing: border-box;
    overflow: hidden;
}

.about-page + .site-footer {
    margin-top: 0;
}

.about-page p {
    color: #2c1810;
    line-height: 1.6;
}

.about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section-inner {
    max-width: 74rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    overflow: visible;
}

.about-section-title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: #2c1810;
    line-height: 1.15;
    margin: 0;
    text-align: center;
}

.about-hero {
    position: relative;
    min-height: 18rem;
    background:
        linear-gradient(rgba(244, 241, 234, 0.72), rgba(244, 241, 234, 0.72)),
        url('/images/faded_milford_sound.jpg') center / cover no-repeat,
        #f4f1ea;
}

.about-hero__wash {
    position: absolute;
    inset: 3rem 0 0;
    background: linear-gradient(to right, rgba(249, 237, 50, 0.75) 0%, rgba(255, 154, 72, 0.78) 100%);
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 62rem;
    margin: 0 auto;
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    box-sizing: border-box;
}

.about-hero__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.25rem);
    font-weight: 500;
    color: #931a1d;
    margin: 0 0 1.4rem;
    line-height: 1.1;
}

.about-hero__intro {
    max-width: 54rem;
    margin: 0 auto;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    text-align: center;
}

.about-kelsey {
    position: relative;
    padding: 3rem 0 4.5rem;
    background:
        linear-gradient(rgba(244, 241, 234, 0.92), rgba(244, 241, 234, 0.92)),
        url('/images/Fern.svg') 96% 18% / 416px auto no-repeat,
        #f4f1ea;
}

.about-kelsey .about-section-title {
    margin-bottom: 1.9rem;
}

.about-kelsey__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
    gap: 2rem;
    align-items: center;
}

.about-kelsey__bio {
    position: relative;
    z-index: 2;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    background: #9f171b;
    border-radius: 32px;
    box-shadow: 0 0 0 18px rgba(78, 78, 64, 0.2), 0 16px 28px rgba(0, 0, 0, 0.08);
}

.about-kelsey__bio p {
    color: #ffffff;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    margin: 0 0 1.15rem;
}

.about-kelsey__bio p:last-child {
    margin-bottom: 0;
}

.about-kelsey__image-frame {
    position: relative;
    z-index: 1;
    margin-left: -0.35rem;
    padding: 1.5rem 0 1.5rem 1.5rem;
    background: #ffad58;
    border-radius: 0;
}

.about-kelsey__image-frame picture {
    display: block;
    aspect-ratio: 4 / 5;
}

.about-kelsey__image {
    aspect-ratio: 4 / 5;
    border-radius: 28px 0 0 28px;
    object-position: center;
}

.about-aracari {
    padding: 3.5rem 1.5rem 3rem;
    background: linear-gradient(to right, #f9df4a 0%, #ff914d 100%);
    overflow: visible;
}

.about-aracari__layout {
    display: grid;
    grid-template-columns: minmax(10.5rem, 19.6rem) minmax(0, 1fr);
    align-items: center;
    max-width: 76rem;
    margin: 0 auto;
}

.about-aracari__image-frame {
    position: relative;
    z-index: 2;
    aspect-ratio: 5 / 7;
    overflow: hidden;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.about-aracari__image {
    aspect-ratio: 5 / 7;
}

.about-aracari__panel {
    min-height: 26rem;
    padding: clamp(2rem, 5vw, 3.75rem);
    background: rgba(250, 248, 240, 0.94);
    border-radius: 28px;
    text-align: center;
    box-sizing: border-box;
}

.about-aracari__panel .about-section-title {
    color: #931a1d;
    margin-bottom: 2rem;
}

.about-aracari__panel p {
    max-width: 46rem;
    margin: 0 auto 1.45rem;
}

.about-aracari__panel p:last-child {
    margin-bottom: 0;
}

.about-name-story {
    position: relative;
    padding: 4rem 1.5rem 3rem;
    background-color: #9f171b;
    background-image:
        linear-gradient(rgba(159, 23, 27, 0.9), rgba(159, 23, 27, 0.9)),
        url('/images/Fern.svg'),
        url('/images/Fern.svg');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, -4% 14%, 62% 108%;
    background-size: auto, 364px auto, 416px auto;
}

.about-name-story__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 32rem);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    max-width: 74rem;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: #faf8f0;
    border-radius: 28px;
    box-sizing: border-box;
}

.about-name-story__copy .about-section-title {
    color: #931a1d;
    text-align: center;
    margin-bottom: 1.7rem;
}

.about-name-story__copy p {
    margin: 1.5rem;
}

.about-name-story__copy p:last-child {
    margin-bottom: 0;
}

.about-name-story__figure {
    margin: -10%;
    width:110%;
}

.about-name-story__figure picture {
    display: block;
    aspect-ratio: 4 / 3;
}

.about-name-story__image {
    aspect-ratio: 4 / 3;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.about-name-story__figure figcaption {
    margin-top: 0.9rem;
    color: #2c1810;
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
}

@media (min-width: 992px) {
    .about-kelsey .about-section-inner {
        max-width: none;
        padding: 0;
    }

    .about-kelsey .about-section-title {
        padding-left: max(1.5rem, calc((100% - 74rem) / 2 + 1.5rem));
        padding-right: 1.5rem;
        box-sizing: border-box;
    }

    .about-kelsey__layout {
        grid-template-columns: minmax(0, 74rem) minmax(18rem, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 0 0 max(1.5rem, calc((100% - 74rem) / 2 + 1.5rem));
        box-sizing: border-box;
    }

    .about-kelsey__bio {
        min-width: 0;
    }

    .about-kelsey__image-frame {
        margin-left: -30%;
        margin-right: 0;
        width: 130%;
        min-width: 0;
    }

    .about-aracari {
        padding: 3.5rem 0 3rem;
    }

    .about-aracari__layout {
        grid-template-columns: minmax(12.6rem, 29.4vw) minmax(0, 1fr);
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0 max(1.5rem, calc((100% - 76rem) / 2 + 1.5rem)) 0 0;
        box-sizing: border-box;
    }

    .about-aracari__image-frame {
        margin-right: -10%;
        width: 105%;
        min-width: 0;
    }

    .about-aracari__panel {
        min-width: 0;
    }

    .about-name-story {
        padding: 4rem 0 3rem max(1.5rem, calc((100% - 74rem) / 2 + 1.5rem));
    }

    .about-name-story__card {
        grid-template-columns: minmax(0, 74rem) minmax(18rem, 1fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        max-width: none;
        width: 100%;
        margin: 0;
        padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 4vw, 3.5rem) 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .about-name-story__copy {
        min-width: 0;
        padding-right: clamp(1.5rem, 4vw, 3.5rem);
        box-sizing: border-box;
    }

    .about-name-story__figure {
        margin: 0;
        width: 100%;
        min-width: 0;
    }

    .about-name-story__figure figcaption {
        padding-right: 1.5rem;
        box-sizing: border-box;
    }
}

@media (max-width: 991px) {
    .about-kelsey__layout,
    .about-aracari__layout,
    .about-name-story__card {
        grid-template-columns: 1fr;
    }

    .about-aracari__layout {
        max-width: 76rem;
        margin: 0 auto;
        padding-right: 0;
    }

    .about-kelsey .about-section-inner {
        max-width: 74rem;
        padding: 0 1.5rem;
    }

    .about-kelsey .about-section-title {
        padding-left: 0;
        padding-right: 0;
    }

    .about-kelsey__layout {
        padding-left: 0;
    }

    .about-aracari {
        padding: 3.5rem 1.5rem 3rem;
    }

    .about-name-story {
        padding: 4rem 1.5rem 3rem;
    }

    .about-name-story__card {
        padding: clamp(2rem, 4vw, 3.5rem);
    }

    .about-name-story__copy {
        padding-right: 0;
    }

    .about-kelsey__image-frame {
        max-width: 28rem;
        width: 100%;
        margin: 1rem auto 0;
        margin-right: auto;
        padding: 1rem;
        border-radius: 22px;
    }

    .about-kelsey__image,
    .about-name-story__image {
        border-radius: 18px;
    }

    .about-aracari__image-frame {
        width: min(100%, 23.8rem);
        max-width: none;
        margin: 0 auto -1rem;
        margin-left: auto;
        border-radius: 18px;
    }

    .about-aracari__panel {
        min-height: auto;
        padding-top: 3rem;
    }

    .about-name-story__figure {
        order: -1;
        margin-right: 0;
    }

    .about-name-story__figure figcaption {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .about-hero__inner {
        padding: 4.75rem 1.25rem 3.75rem;
    }

    .about-kelsey {
        padding: 2.5rem 0 3rem;
    }

    .about-section-inner,
    .about-aracari,
    .about-name-story {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .about-kelsey__bio {
        border-radius: 24px;
        box-shadow: 0 0 0 10px rgba(78, 78, 64, 0.2), 0 12px 22px rgba(0, 0, 0, 0.08);
    }

    .about-name-story__card {
        padding: 1.5rem;
        border-radius: 22px;
    }
}

/* General Services (One-off Services) page */
body:has(.general-services-page) {
    align-items: stretch;
}

.general-services-page {
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
    box-sizing: border-box;
}

.general-services-page + .site-footer {
    margin-top: 0;
}

.gs-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f4f1ea;
    padding: 0 0 2rem;
    box-sizing: border-box;
}

.gs-hero--has-image {
    --gs-hero-panel-estimate: calc(8.75rem + 8lh);
    min-height: 0;
    padding: 0 0 calc(var(--gs-hero-panel-estimate) * 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.gs-hero__image {
    position: absolute;
    inset: 0;
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.gs-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
}

.gs-hero__panel {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem 1rem;
    text-align: center;
    box-sizing: border-box;
}

.gs-hero--has-image .gs-hero__panel {
    margin-top: calc(var(--gs-hero-panel-estimate, calc(8.75rem + 8lh)) * 0.15);
    padding: 2.5rem 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

.gs-hero__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #931a1d;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.gs-hero__intro {
    color: #2c1810;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.gs-hero__intro a {
    color: #931a1d;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gs-hero__intro a:hover {
    color: #7a1517;
}

.gs-hero__fee-note {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.gs-layout {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 0rem;
    box-sizing: border-box;
}

.gs-main {
    display: flex;
    flex-direction: column;
    gap: 1.275rem;
    width: 107%;
    max-width: 52rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    z-index: 25;
}

.gs-service-card {
    background: linear-gradient(to right, #fbf6a6 0%, #e89838 100%);
    border-radius: 28px;
    padding: 2.1rem 2rem 1.85rem;
    text-align: center;
    box-sizing: border-box;
}

.gs-service-card__title {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #7a2e0f;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.gs-service-card__body {
    text-align: center;
}

.gs-service-card__description {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    color: #2c1810;
    line-height: 1.6;
}

.gs-service-card__description:last-child {
    margin-bottom: 0;
}

.gs-service-card__price {
    margin-top: 1.25rem;
    padding-top: 0.25rem;
}

.gs-service-card__price-line {
    display: block;
    font-size: 1rem;
    color: #2c1810;
    line-height: 1.5;
}

.gs-sidebar {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    background: #5a8ab5;
    border-radius: 0;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.gs-sidebar__strip {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gs-sidebar__cta {
    position: relative;
    z-index: 1;
    margin: 2rem 1.25rem;
    padding: 2rem 1.5rem;
    background: rgba(244, 241, 234, 0.95);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    box-sizing: border-box;
}

.gs-sidebar__btn {
    width: 100%;
    max-width: 16rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 992px) {
    .gs-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) min(360px, 36vw);
        align-items: stretch;
        padding: 0 0 0rem;
    }

    .gs-main {
        grid-column: 1;
        max-width: min(52rem, 100%);
        margin: 0 auto;
        padding: 2rem 2rem 2rem 1.5rem;
        width: 107%;
        z-index: 25;
    }

    .gs-sidebar {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
        width: 100%;
        min-height: 0;
        align-self: stretch;
    }
}

@media (max-width: 991px) {
    .gs-hero--has-image {
        --gs-hero-panel-estimate: calc(8rem + 10lh);
    }

    .gs-layout {
        padding: 0 0 2.5rem;
    }

    .gs-main {
        padding: 2rem 1.25rem;
    }

    .gs-sidebar {
        min-height: auto;
    }

    .gs-sidebar__strip {
        position: absolute;
        inset: 0;
        min-height: 180px;
        opacity: 1;
    }

    .gs-sidebar__cta {
        margin-top: 0;
    }

    .gs-hero__panel {
        padding: 2rem 1.25rem 1rem;
    }
}

