/* ============================================================
   FREEDIVE ICELAND — design system
   Palette drawn from Silfra itself: the Hall's deep cobalt
   shifting into the Cathedral's glowing green.
   ============================================================ */
:root {
	--deep:    #1A3A4A;   /* Silfra Deep — matched to diveiceland.is's theme navy for shared brand DNA */
	--cobalt:  #1B4F8C;   /* Glacial Cobalt — the Hall */
	--teal:    #2FBF9E;   /* Cathedral Teal — freedive.is's own signature accent */
	--ice:     #F5FBFB;   /* Ice White — light backgrounds */
	--basalt:  #20242B;   /* body text */
	--frost:   #C7DBDD;   /* muted borders / secondary text */
	--white:   #FFFFFF;

	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

	--radius: 14px;
	--radius-sm: 8px;
	--max-width: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--basalt);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cobalt); text-decoration: none; }
h1, h2, h3 {
	font-family: var(--font-display);
	color: var(--deep);
	line-height: 1.15;
	margin: 0 0 0.4em;
	font-weight: 600;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--teal);
	margin: 0 0 0.6em;
}
.eyebrow.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation: none !important; transition: none !important; }
}

/* ---- Header ---- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #E4EEEE;
}
.header-inner {
	max-width: var(--max-width); margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 20px;
}
.logo img { height: 36px; }
.desktop-nav { display: none; gap: 28px; }
.desktop-nav a {
	color: var(--deep); font-weight: 600; font-size: 0.95rem;
	position: relative; padding-bottom: 4px;
}
.desktop-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px; background: var(--teal);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta {
	display: none;
	background: var(--teal); color: var(--deep);
	padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
}
.header-cta:hover { background: var(--cobalt); color: var(--white); }
.mobile-menu-toggle {
	background: none; border: none; cursor: pointer;
	width: 30px; height: 22px; padding: 0;
	display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu-toggle span { display: block; height: 2px; background: var(--deep); border-radius: 2px; }
.mobile-nav {
	display: none; flex-direction: column;
	background: var(--white); border-top: 1px solid #E4EEEE;
	padding: 8px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; color: var(--deep); font-weight: 600; border-bottom: 1px solid #EEF5F5; }
.mobile-cta {
	margin-top: 12px; text-align: center;
	background: var(--teal); color: var(--deep);
	padding: 13px; border-radius: 999px; font-weight: 700;
}

@media (min-width: 880px) {
	.desktop-nav { display: flex; }
	.header-cta { display: inline-block; }
	.mobile-menu-toggle { display: none; }
}

/* ---- WhatsApp bubble ---- */
.whatsapp-bubble {
	position: fixed; bottom: 80px; right: 18px; z-index: 90;
	width: 54px; height: 54px; border-radius: 50%;
	background: #25D366; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 18px rgba(11,31,51,0.25);
}
.whatsapp-bubble img { width: 28px; height: 28px; }

/* ---- Sticky mobile CTA bar ---- */
.sticky-cta-bar {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 89;
	background: var(--deep); padding: 12px 20px;
}
.sticky-cta {
	display: block; text-align: center; background: var(--teal);
	color: var(--deep); padding: 13px; border-radius: 999px; font-weight: 700;
}
@media (min-width: 880px) { .sticky-cta-bar { display: none; } }

/* ---- Hero ---- */
.hero { position: relative; color: var(--white); background: var(--deep); overflow: hidden; }
.hero-photo { width: 100%; height: 750px; object-fit: cover; opacity: 0.9; display: none; }
.hero-photo-mobile { display: block; height: 460px; }

/* Signature element: the depth line — cobalt → teal, echoing the Hall-to-Cathedral shift */
.depth-line {
	position: absolute; top: 0; bottom: 0; left: 18px; width: 2px;
	background: linear-gradient(to bottom, var(--cobalt) 0%, var(--teal) 100%);
	z-index: 2; opacity: 0.85;
}
.depth-mark {
	position: absolute; left: 12px; transform: translateX(-100%);
	font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
	color: rgba(255,255,255,0.65); white-space: nowrap;
	padding-right: 10px;
}
.depth-mark::after {
	content: ""; position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
	width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
@media (max-width: 600px) { .depth-line, .depth-mark { display: none; } }

.hero-content {
	position: absolute; bottom: 0; left: 0; right: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(11,31,51,0.55) 40%, rgba(11,31,51,0.92) 100%);
	padding: 60px 24px 32px;
}
.hero-content .eyebrow { color: var(--teal); }
.hero-content h1 { color: var(--white); max-width: 560px; }
.hero-sub { max-width: 480px; color: rgba(255,255,255,0.85); font-size: 1.02rem; }
.hero-cta {
	display: inline-block; margin-top: 14px;
	background: var(--teal); color: var(--deep); font-weight: 700;
	padding: 14px 28px; border-radius: 999px; transition: transform 0.15s ease, background 0.15s ease;
}
.hero-cta:hover { background: var(--white); transform: translateY(-2px); }
@media (min-width: 880px) {
	.hero-photo-desktop { display: block; }
	.hero-photo-mobile { display: none; }
}

/* ---- Trust bar ---- */
.trust-bar {
	display: flex; flex-wrap: wrap; gap: 10px 32px; justify-content: center;
	background: var(--ice); padding: 20px 24px; font-size: 0.85rem; color: var(--cobalt); font-weight: 600;
	border-bottom: 1px solid #E4EEEE;
}

/* ---- Tour cards ---- */
.tour-cards-section { max-width: var(--max-width); margin: 0 auto; padding: 64px 20px 24px; text-align: center; }
.tour-cards-section h2 { text-align: center; }
.section-sub { color: #5B6570; margin: 0 auto 36px; max-width: 480px; }
.tour-card {
	text-align: left;
	display: grid; gap: 0;
	border: 1px solid #E4EEEE; border-radius: var(--radius);
	overflow: hidden; margin-bottom: 28px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tour-card:hover { box-shadow: 0 16px 32px rgba(11,31,51,0.08); transform: translateY(-2px); }
.tour-card-media { position: relative; }
.tour-card-media img { width: 100%; height: 240px; object-fit: cover; }
.tour-card-body { padding: 24px; }
.tour-card-desc { color: #5B6570; margin: -4px 0 16px; }
.tour-toggle { display: flex; gap: 8px; margin: 14px 0; background: var(--ice); padding: 4px; border-radius: 999px; }
.tour-toggle-links { max-width: 280px; margin-bottom: 24px; }
.toggle-btn {
	flex: 1; padding: 10px; border-radius: 999px; border: none;
	background: transparent; color: var(--cobalt); font-weight: 700; font-family: var(--font-body);
	cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
	text-align: center; text-decoration: none; display: block;
}
.toggle-btn.active { background: var(--deep); color: var(--white); }
.bokun-pane, .pane { display: none; }
.bokun-pane.active, .pane.active { display: block; }
.pane-note { color: #5B6570; font-size: 0.9rem; }
.more-tours-note { text-align: center; color: #5B6570; margin-top: 12px; }

/* ---- Homepage tour-card links (replaces embedded Bokun widgets) ---- */
.tour-card-links { display: flex; gap: 10px; margin: 16px 0 8px; flex-wrap: wrap; }
.tour-link-btn {
	flex: 1 1 auto; text-align: center; white-space: nowrap;
	padding: 12px 18px; border-radius: var(--radius-sm);
	font-family: var(--font-body); font-weight: 700;
	text-decoration: none; color: var(--white);
	background: var(--cobalt);
	transition: background 0.15s ease, transform 0.15s ease;
}
.tour-link-btn:hover { background: var(--deep); transform: translateY(-1px); }
.tour-link-btn-secondary { background: var(--deep); }
.tour-link-btn-secondary:hover { background: var(--cobalt); }
@media (max-width: 480px) { .tour-card-links { flex-direction: column; } }
@media (min-width: 720px) { .tour-card { grid-template-columns: 42% 1fr; align-items: start; } .tour-card-media img { height: 560px; max-height: 100%; } }

/* ---- Also offered / More options / Custom day ---- */
.also-offered-section { max-width: var(--max-width); margin: 0 auto; padding: 8px 20px 24px; }
.also-offered-section h2, .also-offered-section .eyebrow { text-align: center; }
.also-offered-section .tour-card-media img { height: 180px; }

.more-options-section { max-width: var(--max-width); margin: 0 auto; padding: 24px 20px 56px; }
.more-options-section .eyebrow { text-align: center; }
.more-options-links {
	display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.more-options-links a {
	display: flex; flex-direction: column; gap: 2px;
	padding: 14px 18px; background: var(--ice); border-radius: var(--radius-sm);
	color: var(--deep); font-weight: 700;
}
.more-options-links a span {
	font-weight: 400; color: #5B6570; font-size: 0.85rem;
}
.more-options-links a:hover { background: #EAF6F4; }

.custom-day-card {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: var(--deep); color: var(--white);
	padding: 20px 22px; border-radius: var(--radius);
}
.custom-day-card h3 { color: var(--white); margin-bottom: 2px; }
.custom-day-card p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.custom-day-cta {
	flex-shrink: 0; background: var(--teal); color: var(--deep); font-weight: 700;
	padding: 11px 20px; border-radius: 999px; white-space: nowrap;
}
.custom-day-cta:hover { background: var(--white); }
@media (max-width: 480px) {
	.custom-day-card { flex-direction: column; align-items: flex-start; }
}

/* ---- How it works ---- */
.how-it-works { background: var(--deep); color: var(--white); padding: 64px 20px; text-align: center; }
.how-it-works h2 { color: var(--white); }
.how-it-works .eyebrow { color: var(--teal); }
.steps { max-width: var(--max-width); margin: 32px auto 0; display: grid; gap: 24px; text-align: left; }
.step {
	background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius); padding: 24px;
}
.step-mark {
	display: inline-block; font-family: var(--font-display); font-size: 0.85rem;
	color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
	margin-bottom: 10px;
}
.step h3 { color: var(--white); }
.step p { color: rgba(255,255,255,0.75); margin: 0; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---- Video section ---- */
.video-section { max-width: var(--max-width); margin: 0 auto; padding: 56px 20px; text-align: center; }
.video-wrap {
	max-width: 780px; margin: 24px auto 0; border-radius: var(--radius);
	overflow: hidden; box-shadow: 0 20px 50px rgba(11,31,51,0.15);
	background: var(--deep);
	position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
}
.video-wrap iframe {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.ext-icon { font-size: 0.75em; opacity: 0.6; }

/* ---- Book Now picker modal ---- */
.book-picker-overlay {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(11,31,51,0.55);
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.book-picker-overlay[hidden] { display: none; }
.book-picker-card {
	position: relative; background: var(--white); border-radius: var(--radius);
	max-width: 620px; width: 100%; padding: 28px 24px 24px;
	box-shadow: 0 24px 60px rgba(11,31,51,0.3);
	max-height: 88vh; overflow-y: auto;
}
.book-picker-card h3 { text-align: center; margin-bottom: 18px; }
.book-picker-close {
	position: absolute; top: 12px; right: 14px; background: none; border: none;
	font-size: 1.6rem; line-height: 1; color: #5B6570; cursor: pointer; padding: 4px;
}
.book-picker-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.book-picker-options a {
	display: flex; flex-direction: column; gap: 2px;
	padding: 11px 12px; background: var(--ice); border-radius: var(--radius-sm);
	color: var(--deep); font-weight: 700; font-size: 0.9rem;
}
.book-picker-options a span { font-weight: 400; color: #5B6570; font-size: 0.75rem; }
.book-picker-options a:hover { background: #EAF6F4; }
@media (min-width: 500px) { .book-picker-options { grid-template-columns: repeat(3, 1fr); } }

/* ---- Course pricing & levels (Learn to Freedive) ---- */
.course-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 18px 0; }
.course-price-card {
	display: flex; flex-direction: column; gap: 2px;
	background: var(--ice); border-radius: var(--radius-sm); padding: 14px;
}
.course-price-card .lvl { font-weight: 700; color: var(--deep); font-family: var(--font-display); font-size: 1.05rem; }
.course-price-card .name { color: #5B6570; font-size: 0.85rem; }
.course-price-card .price { color: var(--cobalt); font-weight: 700; margin-top: 4px; }
.course-price-card .dur { color: #5B6570; font-size: 0.8rem; }
@media (min-width: 480px) { .course-price-grid { grid-template-columns: repeat(4, 1fr); } }

.course-faq { margin: 18px 0; }
.course-faq details {
	border: 1px solid #E4EEEE; border-radius: var(--radius-sm);
	padding: 12px 16px; margin-bottom: 8px;
}
.course-faq summary { font-weight: 700; color: var(--deep); cursor: pointer; }
.course-faq p { margin: 10px 0 0; color: #5B6570; }

.course-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.course-included-grid h4 { color: var(--deep); margin-bottom: 8px; }
.course-included-grid ul { padding-left: 18px; color: #5B6570; margin: 0; }

/* ---- FAQ accordion (reusable for FAQ page) ---- */
.faq-accordion details {
	border-bottom: 1px solid #E4EEEE; padding: 16px 0;
}
.faq-accordion summary { font-weight: 700; color: var(--deep); cursor: pointer; font-family: var(--font-display); font-size: 1.05rem; }
.faq-accordion p { margin: 10px 0 0; color: #5B6570; }

/* ---- Reviews section ---- */
.reviews-section { max-width: var(--max-width); margin: 0 auto; padding: 56px 20px; }
.reviews-section h2, .reviews-section .eyebrow { text-align: center; }
.reviews-grid { display: grid; gap: 16px; margin-top: 28px; }
.review-card { background: var(--ice); border-radius: var(--radius); padding: 20px; }
.review-stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 8px; }
.review-quote { color: var(--basalt); font-style: italic; margin-bottom: 12px; }
.review-author { font-weight: 700; color: var(--deep); font-size: 0.9rem; }
.review-date { color: #5B6570; font-size: 0.8rem; }
@media (min-width: 780px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Most popular badge ---- */
.most-popular-badge {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	background: var(--teal); color: var(--deep); font-weight: 700; font-size: 0.72rem;
	text-transform: uppercase; letter-spacing: 0.05em;
	padding: 5px 12px; border-radius: 999px;
}

/* ---- Map ---- */
.location-map { border-radius: var(--radius); overflow: hidden; margin: 20px 0; border: 1px solid #E4EEEE; }
.location-map iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ---- Travel guides ---- */
.travel-guides-section { max-width: var(--max-width); margin: 0 auto; padding: 56px 20px; }
.travel-guides-section h2, .travel-guides-section .eyebrow { text-align: center; }
.guides-grid { display: grid; gap: 20px; margin-top: 28px; }
.guide-card { border: 1px solid #E4EEEE; border-radius: var(--radius); overflow: hidden; }
.guide-card img { width: 100%; height: 180px; object-fit: cover; }
.guide-card-body { padding: 16px; }
.guide-card-body .eyebrow { text-align: left; }
.guide-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.guide-card-body p { color: #5B6570; font-size: 0.9rem; margin: 0 0 10px; }
.guide-card-body a { font-weight: 700; }
@media (min-width: 780px) { .guides-grid { grid-template-columns: repeat(4, 1fr); } }
.guide-article { max-width: 720px; margin: 0 auto; padding: 40px 20px 64px; }
.guide-article img { width: 100%; border-radius: var(--radius); margin-bottom: 24px; height: 320px; object-fit: cover; }
.guide-article .eyebrow { margin-bottom: 4px; }
.guide-article-meta { color: #5B6570; font-size: 0.85rem; margin-bottom: 24px; }
.guide-article h2 { margin-top: 28px; }

/* ---- Scuba redirect ---- */
.scuba-redirect { text-align: center; padding: 56px 20px; }
.scuba-cta {
	display: inline-block; margin-top: 12px;
	background: var(--cobalt); color: var(--white); font-weight: 700;
	padding: 13px 26px; border-radius: 999px;
}
.scuba-cta:hover { background: var(--deep); }

/* ---- Tour page template ---- */
.tour-page { max-width: var(--max-width); margin: 0 auto; padding: 0 20px 64px; }
.tour-hero { position: relative; margin: 0 -20px 28px; background: var(--deep); }
.tour-hero img { width: 100%; height: 300px; object-fit: cover; opacity: 0.85; }
.tour-hero h1 {
	position: absolute; bottom: 20px; left: 20px; right: 20px; color: var(--white);
	max-width: 700px;
}
.photo-caption {
	max-width: var(--max-width); margin: -18px auto 0; padding: 0 20px;
	font-size: 0.82rem; color: #5B6570; font-style: italic;
}
.tour-body { display: grid; gap: 28px; }
.tour-facts { padding-left: 20px; color: #5B6570; }
.tour-facts li { margin-bottom: 6px; }
.tour-booking { background: var(--ice); border-radius: var(--radius); padding: 20px; border: 1px solid #E4EEEE; }
@media (min-width: 880px) {
	.tour-body { grid-template-columns: 2fr 1fr; align-items: start; }
	.tour-booking { position: sticky; top: 96px; }
}

/* ---- Content pages ---- */
.content-page { max-width: 780px; margin: 0 auto; padding: 40px 20px 64px; }
.content-hero-img { border-radius: var(--radius); margin-bottom: 24px; height: 340px; object-fit: cover; width: 100%; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-grid img { border-radius: var(--radius-sm); height: 170px; object-fit: cover; }
@media (min-width: 780px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Forms ---- */
.inquiry-form, .medical-form { display: flex; flex-direction: column; gap: 16px; }
.inquiry-form label, .medical-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--deep); font-size: 0.92rem; }
.inquiry-form input, .inquiry-form textarea,
.medical-form input, .medical-form textarea {
	padding: 11px 14px; border: 1px solid #D6E4E4; border-radius: var(--radius-sm); font: inherit;
	background: var(--white);
}
.inquiry-form input:focus, .inquiry-form textarea:focus,
.medical-form input:focus, .medical-form textarea:focus {
	outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal);
}
.inquiry-form button, .medical-form button {
	background: var(--teal); color: var(--deep); border: none;
	padding: 13px; border-radius: 999px; font-weight: 700; cursor: pointer; font-family: var(--font-body);
}
.inquiry-form button:hover, .medical-form button:hover { background: var(--deep); color: var(--white); }
.form-banner { padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.form-banner--success { background: #E1F6EF; color: #106A52; }
.form-banner--error { background: #FDECEC; color: #B42318; }

/* ---- Medical statement questionnaire ---- */
.medical-page { max-width: 640px; }
.medical-page h2 { margin-top: 32px; margin-bottom: 4px; }
.section-note { color: #5B6570; font-size: 0.88rem; margin-bottom: 14px; }
.q-group { display: flex; flex-direction: column; }
.q-row {
	display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
	padding: 13px 0; border-bottom: 1px solid #E4EEEE;
}
.q-row p { margin: 0; font-size: 0.94rem; }
.yn { display: flex; gap: 8px; flex-shrink: 0; width: 100%; }
.yn button {
	padding: 9px 0; border-radius: 999px; border: 1px solid #D6E4E4;
	background: var(--white); font-weight: 600; font-size: 0.85rem; cursor: pointer; font-family: var(--font-body);
	flex: 1 1 0; min-width: 64px; white-space: nowrap; text-align: center;
	-webkit-appearance: none; appearance: none; -webkit-tap-highlight-color: transparent;
	transition: background-color 0.05s, border-color 0.05s, color 0.05s;
}
.yn button.active-yes { background: #B42318; border-color: #B42318; color: var(--white); }
.yn button.active-no { background: var(--teal); border-color: var(--teal); color: var(--deep); }
@media (min-width: 560px) {
	.q-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
	.yn { width: auto; }
	.yn button { padding: 7px 16px; flex: none; }
}
.block-warning, .clearance-warning {
	display: none; margin: 14px 0; padding: 14px 16px; border-radius: var(--radius-sm);
	font-size: 0.92rem; font-weight: 600;
}
.block-warning { background: #FDECEC; color: #B42318; }
.clearance-warning { background: #FFF6E0; color: #8A6100; }
.block-warning a { color: inherit; text-decoration: underline; }
.medical-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.medical-fields label, .agree-row + label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--deep); font-size: 0.92rem; }
.medical-fields input { padding: 11px 14px; border: 1px solid #D6E4E4; border-radius: var(--radius-sm); font: inherit; }
.agree-row { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0 16px; }
.agree-row input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.agree-row p { margin: 0; font-size: 0.85rem; color: #5B6570; }
#sig-field { width: 100%; padding: 11px 14px; border: 1px solid #D6E4E4; border-radius: var(--radius-sm); font: inherit; margin-bottom: 20px; }
.medical-page .btn-solid {
	background: var(--teal); color: var(--deep); border: none; width: 100%;
	padding: 14px; border-radius: 999px; font-weight: 700; cursor: pointer; font-family: var(--font-body); font-size: 1rem;
}
.medical-page .btn-solid:hover:not(:disabled) { background: var(--deep); color: var(--white); }
.medical-page .btn-solid:disabled { cursor: not-allowed; }

/* ---- Medical statement callout (used on tour pages) ---- */
.callout-box { background: var(--ice); border-radius: var(--radius-sm); padding: 16px 18px; margin: 24px auto; max-width: 560px; text-align: left; }
.callout-box .t { font-weight: 700; color: var(--deep); margin: 0 0 6px; }
.callout-box .p { font-size: 0.9rem; color: #5B6570; margin: 0 0 10px; }
.callout-box .link { font-weight: 700; color: var(--cobalt); }

/* ---- Footer ---- */
.site-footer { background: var(--deep); color: #A9C4C6; padding: 0 0 20px; position: relative; }
.footer-depth-line {
	height: 3px;
	background: linear-gradient(to right, var(--cobalt), var(--teal));
}
.footer-inner {
	max-width: var(--max-width); margin: 0 auto;
	display: grid; gap: 32px; padding: 48px 20px 0;
}
.footer-logo { height: 30px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-col a { display: block; color: #A9C4C6; margin-bottom: 8px; }
.footer-col a:hover { color: var(--teal); }
.cancellation-policy { font-size: 0.85rem; }
.footer-bottom { text-align: center; margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }
@media (min-width: 780px) { .footer-inner { grid-template-columns: 1.2fr repeat(4, 1fr); } }

/* Bigger tap targets on phones and tablets (accessibility: comfortable thumb size).
   The hit areas grow without moving anything on the page. */
@media (max-width: 879px) {
  .mobile-menu-toggle { position: relative; }
  .mobile-menu-toggle::after { content: ""; position: absolute; inset: -11px -7px; }
  .callout-box .link,
  .guide-card-body a,
  .more-tours-note a { display: inline-block; padding-block: 12px; margin-block: -12px; }
  .footer-col a { padding-block: 11px; margin-bottom: 0; }
}
