/* design tokens */
:root {
    --cream: #FBF7EC;
    --orange: #E8923E;
    --honey: #E8B93E;
    --mint: #9FD3B4;
    --dark: #2F3A38;
    --band: #3A4A48;
}

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

html { scroll-behavior: auto; } /* js handles smooth scroll */

body {
    font-family: 'Poppins', 'Nunito', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--dark);
    font-size: 16px;
    line-height: 1.6;
}

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

h2 {
    color: var(--orange);
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
h3 { font-weight: 600; font-size: 1.05rem; }
h4 { margin: 1rem 0 .3rem; }

.wrap { max-width: 1000px; margin: 0 auto; padding: 70px 24px; }

/* ---------- nav ---------- */
.nav {
    position: sticky; top: 0; z-index: 20;
    background: var(--cream);
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-logo img { height: 44px; width: auto; border-radius: 6px; }
.nav nav a {
    color: var(--dark); text-decoration: none;
    margin-left: 22px; font-size: .95rem; letter-spacing: .02em;
}
.nav nav a:hover { color: var(--orange); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(rgba(30,40,38,.55), rgba(30,40,38,.35));
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1000px; margin: 0 auto; padding: 0 24px;
    width: 100%;
}
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 600; }
.hero .honey { color: var(--honey); }
.hero-sub { color: #fff; font-size: 1.2rem; margin-top: .4rem; }
.hero-tag { color: #fff; font-size: 1rem; max-width: 560px; margin: .8rem 0 1.4rem; }
.cta {
    display: inline-block; background: var(--mint); color: var(--dark);
    text-decoration: none; font-weight: 600; letter-spacing: .02em;
    padding: 12px 30px; border-radius: 30px;
}
.cta:hover { filter: brightness(.95); }
.hero-phone { margin-top: .8rem; }
.hero-phone a { color: #fff; text-decoration: none; font-weight: 500; }
.hero-watermark {
    position: absolute; bottom: 24px; left: 24px; z-index: 2;
    height: 64px; width: auto; border-radius: 8px; opacity: .9;
}

/* ---------- about band ---------- */
.band { background: var(--band); }
.band h2 { color: var(--honey); }
.band .cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card {
    background: #fff; padding: 22px 20px; border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.card h3 a { color: inherit; }
.card h3 { border-bottom: 2px solid var(--honey); padding-bottom: 4px; margin-bottom: 8px; display: block; }
.band h2 { color: var(--orange); }

/* ---------- pricing ---------- */
.rates {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 700px;
}
.rates h3 { margin-bottom: .6rem; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; }
.rates table { width: 100%; border-collapse: collapse; }
.rates td { padding: 6px 0; }
.rates td:last-child { text-align: right; font-weight: 600; color: var(--orange); }
.rates tr { border-bottom: 1px dotted rgba(0,0,0,.25); }

/* ---------- quote ---------- */
.quote { position: relative; text-align: center; color: #fff; }
.quote-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.quote-bg::after { content: ''; position: absolute; inset: 0; background: rgba(30,40,38,.65); }
.quote blockquote {
    position: relative; z-index: 2;
    max-width: 760px; margin: 0 auto; padding: 100px 24px;
    font-style: italic; font-size: 1.15rem; line-height: 1.9;
}

/* ---------- self catering / activities / hogs ---------- */
.feature {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px;
    align-items: center; margin-bottom: 40px;
}
.feature img { border-radius: 12px; }
.feature-text p { font-size: 1.15rem; }
.feature-text-only .feature-text { grid-column: 1 / -1; }
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.photo-pair img { border-radius: 12px; }
.activities-list { list-style: none; counter-reset: item; margin-left: 0; }
.activities-list li { position: relative; padding-left: 50px; margin-bottom: 22px; }
.activities-list li::before {
    counter-increment: item; content: counter(item);
    position: absolute; left: 0; top: 0;
    background: var(--orange); color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
}
.hogs-list { list-style: none; }
.hogs-list li {
    padding: 8px 0 8px 28px; position: relative;
}
.hogs-list li::before { content: '\2022'; position: absolute; left: 0; color: var(--orange); }

/* ---------- gallery ---------- */
.gallery-preview img { border-radius: 12px; }
.gallery-toggle {
    background: var(--orange); color: #fff; border: none; cursor: pointer;
    padding: 10px 24px; border-radius: 30px; font-weight: 600;
    margin: 24px 0; font-family: inherit; font-size: .95rem;
}
.gallery-all {
    display: none; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-all.open { display: grid; }
.gallery-all img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; }
.gallery-collapse {
    display: none; background: var(--dark); color: var(--cream); border: none; cursor: pointer;
    padding: 10px 24px; border-radius: 30px; font-weight: 600;
    margin: 24px 0 0; font-family: inherit; font-size: .95rem;
}
.gallery-collapse.show { display: inline-block; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.contact-photo { border-radius: 12px; order: 2; }
.contact p { margin-bottom: .9rem; }
.contact a { color: var(--orange); text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.terms { margin-top: 20px; }
.terms summary {
    cursor: pointer; font-weight: 600; color: var(--orange);
    border-bottom: 2px solid var(--orange); padding-bottom: 4px; list-style: none;
}
.terms summary::after { content: ' +'; }
.terms[open] summary::after { content: ' -'; }
.terms ul { list-style: none; }
.terms li { padding: 6px 0 6px 20px; position: relative; }
.terms li::before { content: '\2022'; position: absolute; left: 0; color: var(--orange); }

/* ---------- footer ---------- */
footer {
    text-align: center; padding: 50px 24px; background: var(--band); color: var(--cream);
}
footer img { height: 60px; width: auto; margin: 0 auto 16px; border-radius: 8px; }
footer p { font-size: .85rem; }

/* ---------- responsive ---------- */
@media (max-width: 800px) {
    .band .cards { grid-template-columns: 1fr 1fr; }
    .rates { grid-template-columns: 1fr; }
    .feature { grid-template-columns: 1fr; }
    .photo-pair { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-photo { order: 2; }
    .gallery-all { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .band .cards { grid-template-columns: 1fr; }
    .nav nav a { margin-left: 12px; }
}
