/* Self-hosted, so there is no third-party request and no layout shift.
   Both faces are SIL Open Font License 1.1 — see assets/fonts/. */

@font-face {
	font-family: "Fraunces QCC";
	src: url("fonts/fraunces-wght.woff2") format("woff2-variations");
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Jakarta QCC";
	src: url("fonts/jakarta-wght.woff2") format("woff2-variations");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

:root {
	/* ink */
	--ink: #101a16;
	--ink-2: #46524b;
	--ink-3: #6b756f;

	/* green, taken from the crates themselves */
	--green: #0a3d28;
	--green-2: #10553a;
	--green-soft: #edf3ef;
	--crate: #00874a;

	/* gold: bright for decoration, deep for anything you have to read */
	--gold: #c8a45c;
	--gold-text: #7d5f20;
	--gold-soft: #f7f0e2;

	--cream: #faf8f4;
	--line: #e6e2da;
	--white: #fff;

	--r: 16px;
	--r-lg: 24px;
	--shadow: 0 1px 2px rgba(16, 26, 22, .04), 0 12px 32px -12px rgba(16, 26, 22, .12);
	--shadow-lg: 0 2px 4px rgba(16, 26, 22, .04), 0 28px 60px -20px rgba(16, 26, 22, .22);

	--font: "Jakarta QCC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-display: "Fraunces QCC", Georgia, "Times New Roman", serif;

	--pad: clamp(56px, 8vw, 112px);
}

/* ---------- reset ---------- */

.qcc-body * { box-sizing: border-box; }

.qcc-body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

.qcc-body :where(img) { max-width: 100%; height: auto; display: block; }
.qcc-body :where(a) { color: inherit; text-decoration: none; }
.qcc-body p { margin: 0 0 1em; }
.qcc-body h1, .qcc-body h2, .qcc-body h3, .qcc-body h4 { margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }

/* Display face on the big statements only — headings, prices, the logotype.
   Everything functional stays in the sans so it reads fast. */
.qcc-h1, .qcc-h2, .qcc-band-line, .qcc-logo-text, .qcc-footer-name,
.qcc-pkg-price span, .qcc-pick i, .qcc-total b, .qcc-article h2, .qcc-deposit strong {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -.012em;
}
.qcc-body ul, .qcc-body ol { margin: 0 0 1em; padding: 0 0 0 1.15em; }
.qcc-body ul li, .qcc-body ol li { margin: 0 0 .4em; }
.qcc-body button { font: inherit; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.qcc-skip {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: var(--green); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.qcc-skip:focus { left: 0; }

.qcc-wrap { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.qcc-pad { padding-block: var(--pad); }
.qcc-narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

/* ---------- type ---------- */

.qcc-h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.08; }
.qcc-h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.15; }
.qcc-h3 { font-size: clamp(1.08rem, 1.5vw, 1.28rem); letter-spacing: -.015em; }

.qcc-eyebrow {
	font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: var(--gold-text); margin: 0 0 14px;
}
.qcc-eyebrow-light { color: #e7d5ab; }

.qcc-sub { font-size: clamp(1.02rem, 1.35vw, 1.18rem); color: var(--ink-2); max-width: 62ch; }

.qcc-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.qcc-head-center { margin-inline: auto; text-align: center; }
.qcc-head-center .qcc-sub { margin-inline: auto; }

/* ---------- buttons ---------- */

.qcc-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 15px 26px; border-radius: 999px; border: 1.5px solid var(--green);
	background: var(--green); color: #fff; font-weight: 600; font-size: .98rem;
	letter-spacing: -.01em; cursor: pointer; transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
	white-space: nowrap;
}
.qcc-btn:hover { background: var(--green-2); border-color: var(--green-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.qcc-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.qcc-btn-ghost { background: transparent; color: var(--green); }
.qcc-btn-ghost:hover { background: var(--green-soft); border-color: var(--green); }

.qcc-btn-gold { background: var(--gold); border-color: var(--gold); color: #24180a; }
.qcc-btn-gold:hover { background: #d6b571; border-color: #d6b571; }

.qcc-btn-line { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.qcc-btn-line:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.qcc-btn-sm { padding: 11px 20px; font-size: .92rem; }
.qcc-btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.qcc-btn-block { width: 100%; }

/* ---------- header ---------- */

.qcc-header {
	position: sticky; top: 0; z-index: 90;
	background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.qcc-header.is-stuck { border-color: var(--line); box-shadow: 0 1px 24px -12px rgba(16,26,22,.3); }

.qcc-header-inner { display: flex; align-items: center; gap: 20px; min-height: 76px; }

.qcc-logo { display: inline-flex; align-items: center; gap: 11px; font-size: 1.14rem; }
.qcc-logo-mark { display: inline-flex; }
.qcc-logo-img {
	display: block;
	height: clamp(34px, 3.6vw, 46px);
	width: auto;
	max-width: 240px;
	object-fit: contain;
}
/* A logo drawn for dark backgrounds (gold or white artwork) needs one, so it
   sits on its own tile rather than disappearing into a white header. */
.qcc-logo-dark .qcc-logo-img {
	background: #000;
	border-radius: 10px;
	padding: 5px 9px;
	height: clamp(40px, 4vw, 52px);
}
.qcc-logo-markimg {
	height: 42px;
	width: 42px;
	border-radius: 10px;
	object-fit: contain;
	flex: none;
}
.qcc-footer-logo { height: clamp(64px, 7vw, 86px); width: auto; max-width: 260px; object-fit: contain; margin-bottom: 16px; }

.qcc-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.qcc-nav > a { padding: 9px 13px; border-radius: 10px; font-size: .95rem; font-weight: 500; color: var(--ink-2); transition: color .15s, background .15s; }
.qcc-nav > a:hover { color: var(--ink); background: var(--cream); }
.qcc-nav > a[aria-current="page"] { color: var(--green); font-weight: 600; }
.qcc-nav-phone { font-weight: 600 !important; color: var(--ink) !important; }
.qcc-nav .qcc-btn { margin-left: 8px; color: #fff; }

.qcc-burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 4px; cursor: pointer; }
.qcc-burger span { display: block; width: 17px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.qcc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.qcc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.qcc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

@media (max-width: 1020px) {
	.qcc-burger { display: flex; }
	.qcc-nav {
		position: absolute; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 2px;
		background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
		box-shadow: var(--shadow); display: none;
	}
	.qcc-nav.is-open { display: flex; }
	.qcc-nav > a { padding: 13px 4px; font-size: 1.02rem; }
	.qcc-nav .qcc-btn { margin: 10px 0 0; }
}

/* ---------- hero ---------- */

.qcc-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(78vh, 700px);
	background: #efeae1;
	overflow: hidden;
}
.qcc-hero-media { position: absolute; inset: 0; }
.qcc-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 82% 50%; }
.qcc-hero::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(94deg,
		rgba(255,253,250,.98) 0%,
		rgba(255,253,250,.96) 30%,
		rgba(255,253,250,.86) 42%,
		rgba(255,253,250,.42) 54%,
		rgba(255,253,250,0) 68%);
}
.qcc-hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(48px, 6vw, 88px); }
.qcc-hero-copy { max-width: 31rem; }
.qcc-hero-copy .qcc-h1 { font-size: clamp(2.05rem, 3.5vw, 3.3rem); margin-bottom: 18px; }
.qcc-hero-copy .qcc-sub { font-size: clamp(1rem, 1.3vw, 1.13rem); color: #3c4741; max-width: 30rem; }
.qcc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

@media (max-width: 900px) {
	.qcc-hero { display: block; min-height: 0; background: #fff; }
	.qcc-hero::after { display: none; }
	.qcc-hero-media { position: relative; inset: auto; }
	.qcc-hero-img { height: clamp(230px, 56vw, 380px); object-position: 68% 50%; }
	.qcc-hero-inner { padding-block: clamp(28px, 6vw, 40px) 4px; }
	.qcc-hero-copy { max-width: none; }
}

/* ---------- trust bar ---------- */

.qcc-trustbar { background: var(--cream); border-bottom: 1px solid var(--line); padding-block: 18px; }
.qcc-trust { display: flex; flex-wrap: wrap; gap: 10px 34px; padding: 0; margin: 0; list-style: none; }
.qcc-trust li { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--ink-2); font-weight: 500; }
.qcc-trust li::before {
	content: ""; width: 18px; height: 18px; flex: none; border-radius: 50%;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e3b2e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
	box-shadow: inset 0 0 0 1px var(--line);
}

/* ---------- generic sections ---------- */

.qcc-section { padding-block: var(--pad); }
.qcc-section-cream { background: var(--cream); }
.qcc-section-green { background: var(--green); color: #fff; }
.qcc-section-green .qcc-sub { color: rgba(255,255,255,.76); }

/* ---------- steps ---------- */

.qcc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.qcc-step { position: relative; }
.qcc-step-img { position: relative; border-radius: var(--r); overflow: hidden; margin-bottom: 18px; background: var(--green-soft); }
.qcc-step-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.qcc-step:hover .qcc-step-img img { transform: scale(1.04); }
.qcc-step-n {
	position: absolute; left: 12px; top: 12px; z-index: 2;
	display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
	border-radius: 50%; background: var(--green); color: #fff; font-size: .8rem; font-weight: 700;
	box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.qcc-step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.qcc-step p { color: var(--ink-2); font-size: .96rem; margin: 0; }

@media (max-width: 900px) { .qcc-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .qcc-steps { grid-template-columns: 1fr; } }

/* ---------- packages ---------- */

.qcc-pkgs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.qcc-pkg {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px 22px;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}
.qcc-pkg:hover { border-color: #cfc9bd; box-shadow: var(--shadow); transform: translateY(-3px); }
.qcc-pkg.is-popular { border-color: var(--green); box-shadow: var(--shadow); }
.qcc-pkg.is-popular::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px var(--green); }
.qcc-pkg-flag {
	position: absolute; top: -11px; left: 22px; background: var(--green); color: #fff;
	font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	padding: 5px 11px; border-radius: 999px;
}
.qcc-pkg-name { font-size: 1.18rem; margin-bottom: 4px; }
.qcc-pkg-blurb { font-size: .84rem; color: var(--ink-3); margin-bottom: 16px; min-height: 3.3em; }
.qcc-pkg-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 18px; }
.qcc-pkg-price span { font-size: 2.2rem; font-weight: 600; letter-spacing: -.02em; }
.qcc-pkg-price small { font-size: .8rem; color: var(--ink-3); font-weight: 500; }
.qcc-pkg-list { list-style: none; padding: 0; margin: 0 0 16px; font-size: .92rem; color: var(--ink-2); }
.qcc-pkg-list li { padding: 6px 0; border-bottom: 1px solid #f2f0ea; margin: 0; }
.qcc-pkg-list li:last-child { border-bottom: 0; }
.qcc-pkg-list strong { color: var(--ink); }
.qcc-pkg-best { font-size: .8rem; color: var(--ink-3); margin: 0 0 16px; }
.qcc-pkg .qcc-btn { margin-top: auto; }

@media (max-width: 1100px) { .qcc-pkgs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .qcc-pkgs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .qcc-pkgs { grid-template-columns: 1fr; } }

/* ---------- benefits ---------- */

.qcc-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.qcc-benefit h3 { font-size: 1.08rem; margin-bottom: 8px; }
.qcc-benefit p { color: var(--ink-2); font-size: .96rem; margin: 0; }
.qcc-benefit::before {
	content: ""; display: block; width: 34px; height: 3px; border-radius: 2px;
	background: var(--gold); margin-bottom: 16px;
}
.qcc-section-green .qcc-benefit p { color: rgba(255,255,255,.74); }

@media (max-width: 900px) { .qcc-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .qcc-benefits { grid-template-columns: 1fr; } }

/* ---------- split ---------- */

.qcc-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.qcc-split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.qcc-split-rev .qcc-split-media { order: 2; }
@media (max-width: 860px) {
	.qcc-split { grid-template-columns: 1fr; }
	.qcc-split-rev .qcc-split-media { order: 0; }
}

/* ---------- photo band ---------- */

.qcc-band { position: relative; min-height: clamp(300px, 42vw, 500px); background: var(--green); }
.qcc-band-img { width: 100%; height: clamp(300px, 42vw, 500px); object-fit: cover; object-position: 50% 44%; }
.qcc-band-copy {
	position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: clamp(28px, 4vw, 56px);
	background: linear-gradient(to top right, rgba(8,22,16,.9) 0%, rgba(8,22,16,.62) 26%, rgba(8,22,16,.22) 50%, rgba(8,22,16,0) 72%);
	color: #fff;
}
.qcc-band-line { font-size: clamp(1.45rem, 2.7vw, 2.3rem); max-width: 20ch; margin: 0; line-height: 1.18; }

/* ---------- faq ---------- */

.qcc-faqs { border-top: 1px solid var(--line); }
.qcc-faq { border-bottom: 1px solid var(--line); }
.qcc-faq summary { display: flex; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; list-style: none; }
.qcc-faq summary::-webkit-details-marker { display: none; }
.qcc-faq summary h3 { font-size: 1.06rem; margin: 0; flex: 1; }
.qcc-faq-icon { position: relative; flex: none; width: 18px; height: 18px; }
.qcc-faq-icon::before, .qcc-faq-icon::after {
	content: ""; position: absolute; inset: 50% 0 auto; height: 1.8px; background: var(--green); border-radius: 2px; transition: transform .2s;
}
.qcc-faq-icon::after { transform: rotate(90deg); }
.qcc-faq[open] .qcc-faq-icon::after { transform: rotate(0); }
.qcc-faq-a { padding: 0 46px 24px 0; }
.qcc-faq-a p { color: var(--ink-2); margin: 0; }

/* ---------- cta ---------- */

.qcc-cta { background: var(--green); color: #fff; padding-block: clamp(48px, 6vw, 84px); }
.qcc-cta-inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.qcc-cta .qcc-sub { color: rgba(255,255,255,.72); margin: 0; }
.qcc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- chips / towns ---------- */

.qcc-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.qcc-chips li a, .qcc-chips li span {
	display: inline-block; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line);
	background: #fff; font-size: .88rem; font-weight: 500; color: var(--ink-2); transition: .15s;
}
.qcc-chips li a:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); }

/* ---------- city grid ---------- */

.qcc-citygrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.qcc-citycard {
	display: block; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: #fff;
	transition: .18s;
}
.qcc-citycard:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.qcc-citycard strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.qcc-citycard span { font-size: .85rem; color: var(--ink-3); }
@media (max-width: 900px) { .qcc-citygrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .qcc-citygrid { grid-template-columns: 1fr; } }

/* ---------- guides ---------- */

.qcc-guidegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.qcc-guidecard {
	display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line);
	border-radius: var(--r); background: #fff; transition: .18s; height: 100%;
}
.qcc-guidecard:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.qcc-guidecard h3 { font-size: 1.14rem; margin-bottom: 10px; }
.qcc-guidecard p { color: var(--ink-2); font-size: .94rem; flex: 1; }
.qcc-guide-meta { font-size: .78rem; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin: 0; }
@media (max-width: 900px) { .qcc-guidegrid { grid-template-columns: 1fr; } }

.qcc-article { font-size: 1.06rem; }
.qcc-article h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 1.8em 0 .5em; }
.qcc-article h3 { font-size: 1.16rem; margin: 1.5em 0 .4em; }
.qcc-article p, .qcc-article li { color: #26312c; }
.qcc-article a:not(.qcc-btn) { color: var(--green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.qcc-article a.qcc-btn { color: #fff; text-decoration: none; }
.qcc-article a.qcc-btn-ghost { color: var(--green); }
.qcc-article a.qcc-btn-gold { color: #24180a; }
.qcc-article a:not(.qcc-btn):hover { color: var(--gold-text); }
.qcc-article ul, .qcc-article ol { padding-left: 1.3em; }
.qcc-article table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .95rem; }
.qcc-article th, .qcc-article td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.qcc-article th { background: var(--cream); font-weight: 700; }
.qcc-article blockquote { margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--gold); color: var(--ink-2); font-style: italic; }

/* ---------- breadcrumbs ---------- */

.qcc-crumbs { padding: 18px 0 0; font-size: .82rem; color: var(--ink-3); }
.qcc-crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.qcc-crumbs li { margin: 0; display: flex; align-items: center; gap: 6px; }
.qcc-crumbs li + li::before { content: "/"; color: #c9c4ba; }
.qcc-crumbs a:hover { color: var(--green); text-decoration: underline; }

/* ---------- page hero (interior) ---------- */

.qcc-phero { padding-block: clamp(28px, 4vw, 52px) clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.qcc-phero .qcc-h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 16px; }
.qcc-phero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.qcc-phero-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) { .qcc-phero-grid { grid-template-columns: 1fr; } }

/* ---------- booking form ---------- */

.qcc-book { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
@media (max-width: 980px) { .qcc-book { grid-template-columns: 1fr; } }

.qcc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.qcc-card-h { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.qcc-card-n { display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; flex: none; border-radius: 50%; background: var(--green); color: #fff; font-size: .76rem; font-weight: 700; }
.qcc-card-h h2 { font-size: 1.16rem; margin: 0; }
.qcc-card-note { font-size: .88rem; color: var(--ink-3); margin: 0 0 20px 37px; }

.qcc-field { margin-bottom: 16px; }
.qcc-field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 6px; }
.qcc-field input[type="text"], .qcc-field input[type="tel"], .qcc-field input[type="email"], .qcc-field input[type="date"], .qcc-field textarea, .qcc-field select {
	width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
	font: inherit; font-size: .98rem; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.qcc-field input:focus, .qcc-field textarea:focus, .qcc-field select:focus {
	outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(14,59,46,.1);
}
.qcc-field textarea { min-height: 88px; resize: vertical; }
.qcc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .qcc-field-row { grid-template-columns: 1fr; } }
.qcc-hint { font-size: .8rem; color: var(--ink-3); margin: 6px 0 0; }
.qcc-err { font-size: .84rem; color: #a4342a; margin: 8px 0 0; }
.qcc-ok { font-size: .84rem; color: #1c6b4c; margin: 8px 0 0; font-weight: 600; }

.qcc-weeks { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.qcc-weeks button {
	padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
	font-weight: 600; font-size: .92rem; cursor: pointer; transition: .15s;
}
.qcc-weeks button[aria-pressed="true"] { background: var(--green); border-color: var(--green); color: #fff; }

.qcc-picks { display: grid; grid-template-columns: repeat(auto-fit, minmax(138px, 1fr)); gap: 10px; }
.qcc-pick {
	position: relative; text-align: left; padding: 18px 16px; border: 1.5px solid var(--line);
	border-radius: 13px; background: #fff; cursor: pointer; transition: .15s;
}
.qcc-pick:hover { border-color: #cfc9bd; }
.qcc-pick[aria-pressed="true"] { border-color: var(--green); background: var(--green-soft); box-shadow: 0 0 0 3px rgba(14,59,46,.08); }
.qcc-pick b { display: block; font-size: 1rem; margin-bottom: 2px; }
.qcc-pick em { display: block; font-style: normal; font-size: .78rem; line-height: 1.35; color: var(--ink-3); margin-bottom: 10px; min-height: 2.7em; }
.qcc-pick i { display: block; font-style: normal; font-size: 1.55rem; font-weight: 600; letter-spacing: -.02em; }
.qcc-pick u { display: block; text-decoration: none; font-size: .78rem; color: var(--ink-3); margin-top: 4px; }
.qcc-pick-flag { position: absolute; top: -9px; right: 12px; background: var(--gold); color: #24180a; font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }

.qcc-addon { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid #f2f0ea; }
.qcc-addon:last-child { border-bottom: 0; }
.qcc-addon-copy { flex: 1; }
.qcc-addon-copy b { display: block; font-size: .96rem; }
.qcc-addon-copy span { font-size: .85rem; color: var(--ink-3); }
.qcc-stepper { display: flex; align-items: center; gap: 4px; flex: none; }
.qcc-stepper button { width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1rem; line-height: 1; }
.qcc-stepper button:hover { border-color: var(--green); color: var(--green); }
.qcc-stepper output { min-width: 26px; text-align: center; font-weight: 700; }

.qcc-check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.qcc-check input { margin-top: 2px; width: 20px; height: 20px; accent-color: var(--green); flex: none; cursor: pointer; }

.qcc-summary { position: sticky; top: 96px; }
.qcc-summary h2 { font-size: 1.1rem; margin-bottom: 16px; }
.qcc-lines { list-style: none; padding: 0; margin: 0 0 16px; }
.qcc-lines li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid #f2f0ea; margin: 0; font-size: .94rem; }
.qcc-lines li span:first-child { color: var(--ink-2); }
.qcc-lines li b { font-weight: 700; white-space: nowrap; }
.qcc-lines small { display: block; font-size: .78rem; color: var(--ink-3); }
.qcc-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 6px; border-top: 2px solid var(--ink); font-size: 1.05rem; font-weight: 700; }
.qcc-total b { font-size: 1.55rem; letter-spacing: -.02em; }
.qcc-deposit { background: var(--gold-soft); border-radius: 12px; padding: 14px 16px; margin: 14px 0 18px; font-size: .9rem; }
.qcc-deposit strong { display: block; font-size: 1.32rem; margin-bottom: 2px; }
.qcc-secure { text-align: center; font-size: .78rem; color: var(--ink-3); margin: 12px 0 0; }

/* ---------- zip checker ---------- */

.qcc-zip { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.qcc-zip input { flex: 1; min-width: 150px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 11px; font: inherit; }
.qcc-zip input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(14,59,46,.1); }

/* ---------- footer ---------- */

.qcc-footer { background: var(--ink); color: #a7b0ab; padding-block: clamp(48px, 6vw, 76px) 28px; font-size: .92rem; }
.qcc-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
.qcc-footer-name { color: #fff; font-size: 1.22rem; margin-bottom: 10px; }
.qcc-footer-blurb { max-width: 34ch; }
.qcc-footer-contact a { color: #fff; font-weight: 600; }
.qcc-footer-contact a:hover { color: var(--gold); }
.qcc-footer-h { color: #fff; font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.qcc-footer ul { list-style: none; padding: 0; margin: 0; }
.qcc-footer ul li { margin-bottom: 9px; }
.qcc-footer ul a:hover { color: #fff; }
.qcc-footer-base { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; margin-top: clamp(32px, 4vw, 52px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.qcc-footer-base p { margin: 0; }
.qcc-footer-legal { display: flex; gap: 20px; }
.qcc-footer-legal a:hover { color: #fff; }
@media (max-width: 860px) { .qcc-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .qcc-footer-grid { grid-template-columns: 1fr; } }

/* ---------- sticky mobile CTA ---------- */

.qcc-sticky-cta {
	position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; display: none;
	align-items: center; justify-content: center; padding: 16px; border-radius: 999px;
	background: var(--green); color: #fff; font-weight: 700; box-shadow: var(--shadow-lg);
}
@media (max-width: 760px) {
	.qcc-sticky-cta { display: flex; }
	.qcc-view-book .qcc-sticky-cta { display: none; }
	.qcc-footer { padding-bottom: 92px; }
}

@media (prefers-reduced-motion: reduce) {
	.qcc-body *, .qcc-body *::before, .qcc-body *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- tick list ---------- */

.qcc-ticks { list-style: none; padding: 0; margin: 22px 0 0; }
.qcc-ticks li {
	position: relative; padding-left: 30px; margin-bottom: 11px;
	color: var(--ink-2); font-size: .98rem;
}
.qcc-ticks li::before {
	content: ""; position: absolute; left: 0; top: .38em; width: 18px; height: 18px; border-radius: 50%;
	background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e3b2e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- tall split media ---------- */

.qcc-split-media-tall img { aspect-ratio: 1 / 1; }

/* ---------- photo mosaic ---------- */

.qcc-mosaic {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: clamp(130px, 15vw, 200px);
	gap: 14px;
}
.qcc-mosaic figure { margin: 0; border-radius: var(--r); overflow: hidden; background: var(--green-soft); }
.qcc-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.qcc-mosaic figure:hover img { transform: scale(1.05); }

.qcc-mosaic-a { grid-column: 1; grid-row: 1 / span 2; }
.qcc-mosaic-b { grid-column: 2; grid-row: 1; }
.qcc-mosaic-c { grid-column: 3 / span 2; grid-row: 1; }
.qcc-mosaic-d { grid-column: 2 / span 2; grid-row: 2; }
.qcc-mosaic-e { grid-column: 4; grid-row: 2; }

@media (max-width: 800px) {
	.qcc-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
	.qcc-mosaic-a { grid-column: 1; grid-row: 1 / span 2; }
	.qcc-mosaic-b { grid-column: 2; grid-row: 1; }
	.qcc-mosaic-c { grid-column: 2; grid-row: 2; }
	.qcc-mosaic-d { grid-column: 1 / span 2; grid-row: 3; }
	.qcc-mosaic-e { grid-column: 1 / span 2; grid-row: 4; }
}

/* ---------- guide lead image ---------- */

.qcc-guide-lead { margin: 0 0 clamp(24px, 3vw, 40px); border-radius: var(--r-lg); overflow: hidden; }
.qcc-guide-lead img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }

/* ---------- callout ---------- */

.qcc-note {
	background: var(--gold-soft);
	border-left: 3px solid var(--gold);
	border-radius: 0 12px 12px 0;
	padding: 15px 18px;
	margin: 0 0 20px;
	font-size: .94rem;
	color: #45392a;
}
.qcc-note strong { color: #2c2418; }

/* ---------- focus ---------- */

.qcc-body :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
	border-radius: 6px;
}
.qcc-btn:focus-visible { outline-offset: 4px; }
.qcc-section-green :where(a, button):focus-visible,
.qcc-cta :where(a, button):focus-visible,
.qcc-footer :where(a, button):focus-visible { outline-color: var(--gold); }

/* ---------- selection ---------- */

.qcc-body ::selection { background: var(--green); color: #fff; }

/* ---------- rate table ---------- */

.qcc-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }
.qcc-table {
	width: 100%; min-width: 520px; border-collapse: collapse;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
	font-size: .96rem;
}
.qcc-table th, .qcc-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.qcc-table thead th { background: var(--cream); font-weight: 700; font-size: .84rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.qcc-table tbody tr:last-child th, .qcc-table tbody tr:last-child td { border-bottom: 0; }
.qcc-table tbody tr:hover td { background: #fcfbf8; }
.qcc-table small { display: block; font-size: .82rem; color: var(--ink-3); }

/* ---------- extras list ---------- */

.qcc-rates { list-style: none; padding: 0; margin: 26px 0 0; }
.qcc-rates li { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); margin: 0; }
.qcc-rates li:last-child { border-bottom: 0; }
.qcc-rates strong { display: block; }
.qcc-rates span span { font-size: .9rem; color: var(--ink-3); }
.qcc-rates b { white-space: nowrap; }

/* ---------- revealed sub-field (stairs) ---------- */

.qcc-subfield {
	margin: 4px 0 0;
	padding: 16px 18px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 12px;
}
.qcc-subfield label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; }
.qcc-subfield select {
	width: 100%; max-width: 240px; padding: 11px 13px;
	border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: .96rem; background: #fff;
}
.qcc-subfield select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(10,61,40,.1); }
.qcc-subfield .qcc-hint { margin: 8px 0 0; }
