/* ============================================================
   GRAZE IN THE BAY — Main Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
    --bg:          #FAF7F0;
    --surface:     #FFFFFF;
    --cream:       #F0E9D8;
    --cream-dark:  #E5D9C3;
    --sage:        #586B4F;
    --sage-dark:   #445540;
    --sage-light:  #EBF0E8;
    --terra:       #B85C3C;
    --gold:        #9B7840;
    --dark:        #1C1916;
    --muted:       #6E6860;
    --border:      #E0D8CC;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-h:     80px;
    --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --trans:     0.3s var(--ease);
    --radius:    6px;
    --shadow:    0 4px 28px rgba(28,25,22,0.08);
    --shadow-lg: 0 12px 48px rgba(28,25,22,0.14);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { line-height: 1.8; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
    display: block;
}

/* --- Layout --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--sage  { background: var(--sage); color: #fff; }
.section--dark  { background: var(--dark); color: #fff; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary  { background: var(--sage); color: #fff; }
.btn--primary:hover { background: var(--sage-dark); box-shadow: 0 6px 24px rgba(88,107,79,0.35); }

.btn--outline  { border-color: currentColor; color: var(--sage); }
.btn--outline:hover { background: var(--sage); color: #fff; border-color: var(--sage); }

.btn--ghost    { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn--terra    { background: var(--terra); color: #fff; }
.btn--terra:hover { background: #9e4e31; }

.btn--nav {
    padding: 10px 22px;
    font-size: 0.75rem;
    background: var(--sage);
    color: #fff;
    border-radius: var(--radius);
}
.btn--nav:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn--active { background: var(--sage-dark) !important; }

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--trans), box-shadow var(--trans);
}

.nav.is-scrolled {
    background: rgba(250,247,240,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.nav.is-scrolled .nav__logo-name { color: var(--dark); }
.nav.is-scrolled .nav__logo-tag  { color: var(--muted); }
.nav.is-scrolled .nav__link      { color: var(--dark); }
.nav.is-scrolled .nav__hamburger span { background: var(--dark); }

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}
.nav__logo-img {
    height: 34px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    flex-shrink: 0;
}
.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav__logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    transition: color var(--trans);
    letter-spacing: 0.02em;
}
.nav__logo-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    transition: color var(--trans);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 4px;
    transition: color var(--trans), background var(--trans);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__link.is-active { color: #fff; }
.nav.is-scrolled .nav__link:hover { background: var(--cream); }

/* Dropdown */
.has-dropdown { position: relative; }
.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans), transform var(--trans);
    box-shadow: var(--shadow);
}
.has-dropdown:hover .nav__dropdown,
.has-dropdown:focus-within .nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--dark);
    border-radius: 4px;
    transition: background var(--trans);
}
.nav__dropdown li a:hover { background: var(--cream); }

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: transform var(--trans), opacity var(--trans), background var(--trans);
    transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,25,22,0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
    pointer-events: none;
}
.nav__overlay.is-open { pointer-events: auto; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(28,25,22,0.55) 0%,
        rgba(28,25,22,0.3) 60%,
        rgba(28,25,22,0.45) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-h);
    color: #fff;
    max-width: 720px;
}

.hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.2rem;
}

.hero__heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero__heading em { font-style: italic; color: rgba(255,255,255,0.85); }

.hero__sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (smaller, for inner pages) */
.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    margin-top: var(--nav-h);
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,25,22,0.7) 0%, rgba(28,25,22,0.1) 60%);
}
.page-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #fff;
}
.page-hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.75rem;
}
.page-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* --- Cards --- */
.card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.card__body { padding: 28px; }
.card__tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
    display: block;
}
.card__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.card__text  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.card__price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--sage);
    margin-bottom: 20px;
    font-weight: 500;
}
.card__price small { font-size: 0.75rem; font-family: var(--font-body); color: var(--muted); font-weight: 300; }

/* --- Services Grid (Homepage) --- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* --- Feature List --- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}
.feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}
.feature__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.feature__text  { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.gallery-grid__item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-grid__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.06); }
.gallery-grid__item--wide  { grid-column: span 2; }
.gallery-grid__item--tall  { grid-row: span 2; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(28,25,22,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; }
.lightbox__close {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.7);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color var(--trans);
}
.lightbox__close:hover { color: #fff; }
.lightbox__prev, .lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.4rem;
    padding: 12px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--trans);
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* --- Package Boxes --- */
.packages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.package {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    transition: box-shadow var(--trans), transform var(--trans);
}
.package:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.package--featured {
    border-color: var(--sage);
    background: var(--sage-light);
}
.package__badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--sage);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}
.package__title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.package__price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--sage);
    margin-bottom: 4px;
    font-weight: 500;
}
.package__price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }
.package__list { margin-bottom: 32px; }
.package__list li {
    font-size: 0.9rem;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.package__list li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Split Layout --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__content { order: 1; }
.split__img { border-radius: var(--radius); overflow: hidden; }
.split__img img { width: 100%; height: 520px; object-fit: cover; }
.split__content h2 { margin-bottom: 20px; }
.split__content p  { color: var(--muted); margin-bottom: 20px; }
.split__content .btn { margin-top: 12px; }

/* --- Testimonial / Quote --- */
.pullquote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 24px;
}
.pullquote__text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 24px;
}
.pullquote__author { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* --- CTA Banner --- */
.cta-banner {
    text-align: center;
    padding: 96px 24px;
}
.cta-banner h2 { margin-bottom: 16px; color: #fff; }
.cta-banner p  { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 36px; }
.cta-banner .btn--ghost { margin: 0 8px; }

/* --- Forms --- */
.form-wrap { max-width: 680px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.field--full { grid-column: 1 / -1; }

label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
    background: var(--surface);
    transition: border-color var(--trans), box-shadow var(--trans);
    -webkit-appearance: none;
    appearance: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(88,107,79,0.12);
}
textarea { resize: vertical; min-height: 140px; }

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6860' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 28px;
    font-size: 0.9rem;
}
.alert--success { background: var(--sage-light); border: 1px solid rgba(88,107,79,0.3); color: var(--sage-dark); }
.alert--error   { background: #fdf0ee; border: 1px solid rgba(184,92,60,0.3); color: var(--terra); }

/* Checkbox / Radio */
.check-group { display: flex; flex-direction: column; gap: 10px; }
.check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
}
.check-label input[type="checkbox"],
.check-label input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    padding: 0;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--sage);
    margin-top: 2px;
}

/* --- Contact Layout --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p  { color: var(--muted); margin-bottom: 12px; font-size: 0.92rem; }
.contact-info a  { color: var(--sage); }
.contact-info a:hover { text-decoration: underline; }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--border);
}
.contact-map iframe { display: block; }

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.8rem;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* --- Section Header --- */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 560px; }
.section-header--center p { margin: 0 auto; }

/* --- Divider --- */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* --- Price Tag --- */
.price-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sage);
    font-weight: 500;
}
.price-inline .per { font-size: 0.75rem; font-family: var(--font-body); color: var(--muted); font-weight: 300; }

/* --- Note / Info box --- */
.note {
    background: var(--cream);
    border-left: 3px solid var(--sage);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* --- Image strip --- */
.img-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.img-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
}
.footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
}
.footer__logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    display: block;
}
.footer__tagline { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer__hygiene { margin-top: 20px; }
.footer__heading {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.footer__nav ul li,
.footer__contact ul li {
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.footer__nav a,
.footer__contact a { transition: color var(--trans); }
.footer__nav a:hover,
.footer__contact a:hover { color: #fff; }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    max-width: 1180px;
    margin: 0 auto;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer__sister { margin-left: auto; text-align: right; }
.footer__sister a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer__sister a:hover { color: rgba(255,255,255,0.75); }

/* --- Booking summary panel --- */
.booking-summary {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}
.booking-summary h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 20px; }
.booking-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}
.booking-option:last-child { border-bottom: none; }
.booking-option strong { display: block; margin-bottom: 4px; color: var(--dark); }
.booking-option span { color: var(--muted); }

.book-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-sage    { color: var(--sage); }
.text-muted   { color: var(--muted); }
.text-gold    { color: var(--gold); }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-6  { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.gap-sm { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services  { grid-template-columns: repeat(2, 1fr); }
    .features  { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .split     { grid-template-columns: 1fr; gap: 40px; }
    .split__img img { height: 360px; }
    .split--reverse .split__img,
    .split--reverse .split__content { order: unset; }
    .packages  { grid-template-columns: 1fr; }
    .book-layout  { grid-template-columns: 1fr; }
    .booking-summary { position: static; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav__menu {
        position: fixed;
        top: 0; right: -320px;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 32px;
        gap: 0;
        box-shadow: -8px 0 40px rgba(28,25,22,0.15);
        z-index: 1001;
        transition: right 0.35s var(--ease);
        overflow-y: auto;
    }
    .nav__menu.is-open { right: 0; }
    .nav__overlay { display: block; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
    .nav__overlay.is-open { opacity: 1; pointer-events: auto; }

    /* Border on the li so it never clips the next item's text */
    .nav__menu > li { border-bottom: 1px solid var(--border); }
    .nav__menu > li:last-child { border-bottom: none; }

    .nav__link {
        color: var(--dark);
        font-size: 0.88rem;
        padding: 16px 0;
        border-bottom: none;
        width: 100%;
        border-radius: 0;
    }

    /* Parent "Our Grazes" tighter bottom so dropdown sits close */
    .has-dropdown > .nav__link { padding-bottom: 8px; }

    /* Dropdown: always-visible inline list, no cream box */
    .has-dropdown .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background: transparent;
        border-radius: 0;
        padding: 0 0 14px 0;
        margin: 0;
        min-width: unset;
    }
    .has-dropdown:hover .nav__dropdown { transform: none; }
    .nav__dropdown li { border: none; }
    .nav__dropdown li a {
        display: block;
        padding: 9px 0 9px 18px;
        font-size: 0.82rem;
        color: var(--muted);
        border-radius: 0;
        background: none;
        border-left: 2px solid var(--border);
        transition: color var(--trans), border-color var(--trans);
    }
    .nav__dropdown li a:hover {
        color: var(--sage);
        background: none;
        border-left-color: var(--sage);
    }

    .nav__link.is-active { color: var(--sage); }
    .nav__hamburger { display: flex; }
    .nav__hamburger.is-open span { background: var(--dark); }
    .nav.is-scrolled .nav__hamburger span { background: var(--dark); }
    .btn--nav { display: none; }

    .section  { padding: 64px 0; }
    .section--sm { padding: 48px 0; }

    .services  { grid-template-columns: 1fr; }
    .features  { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid__item--wide { grid-column: span 1; }
    .img-strip { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 36px; }
    .page-hero { height: 360px; }
    .hero { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
