/**
 * Global Base Styles — Tukumaaq
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* ── Smooth Scroll ──────────────────────────────────────────────────────────── */

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	font-family: var(--tk-font-body);
	font-size: var(--tk-size-body);
	font-weight: var(--tk-fw-body);
	line-height: var(--tk-lh-body);
	color: var(--tk-color-text);
	background-color: var(--tk-color-white);
	-webkit-font-smoothing: antialiased;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--tk-color-teal);
	transition: color var(--tk-transition-fast);
}

a:hover {
	color: var(--tk-color-navy);
}

/* ── Announcement Bar ──────────────────────────────────────────────────────── */

.tk-announcement-bar {
	background-color: var(--tk-color-navy);
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	color: var(--tk-color-white);
	width: 100%;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: max(var(--tk-space-lg), calc((100% - 1220px) / 2)) !important;
	padding-right: max(var(--tk-space-lg), calc((100% - 1220px) / 2)) !important;
}

.tk-announcement-bar p {
	margin: 0;
	line-height: 1;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */

.wp-block-button__link,
.tk-btn {
	display: inline-block;
	font-family: var(--tk-font-heading);
	font-size: var(--tk-size-btn);
	font-weight: var(--tk-fw-heading);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: var(--tk-radius-pill);
	padding: 0.75em 1.75em;
	transition: background-color var(--tk-transition-base), color var(--tk-transition-base);
	cursor: pointer;
	text-decoration: none;
	border: 2px solid transparent;
}

/* Primary button */
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background-color: var(--tk-color-sky);
	color: var(--tk-color-navy);
	border-color: var(--tk-color-sky);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	background-color: var(--tk-color-yellow);
	border-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
}

/* Outline button */
.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	color: var(--tk-color-navy);
	border-color: var(--tk-color-navy);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
	border-color: var(--tk-color-yellow);
}

/* Text link button */
.wp-block-button.is-style-text-link .wp-block-button__link {
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
	color: var(--tk-color-navy);
	font-family: var(--wp--preset--font-family--ilisarniq);
	font-weight: 900;
	font-size: 1.125rem;
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-color: var(--tk-color-sky);
	text-decoration-thickness: 6px;
	text-underline-offset: 8px;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.wp-block-button.is-style-text-link .wp-block-button__link::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%236ECCE0'/%3E%3Cpath d='M9.26959 4.76953L13.5 8.99996L9.26959 13.2304' stroke='%23092D3A' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M13.5 9L4.5 9' stroke='%23092D3A' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 18px 18px;
	background-repeat: no-repeat;
}

.wp-block-button.is-style-text-link .wp-block-button__link:hover {
	background: none;
	color: var(--tk-color-navy);
	text-decoration-color: var(--tk-color-yellow);
}

.wp-block-button.is-style-text-link .wp-block-button__link:hover::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23F7DE79'/%3E%3Cpath d='M9.26959 4.76953L13.5 8.99996L9.26959 13.2304' stroke='%23092D3A' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M13.5 9L4.5 9' stroke='%23092D3A' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── Site Header ───────────────────────────────────────────────────────────── */

.tk-site-header {
	position: sticky;
	top: 0;
	z-index: var(--tk-z-header);
	background-color: var(--tk-color-white);
	box-shadow: var(--tk-shadow-sm);
	height: 110px;
	padding-left: max(var(--tk-space-lg), calc((100% - 1220px) / 2)) !important;
	padding-right: max(var(--tk-space-lg), calc((100% - 1220px) / 2)) !important;
}

.tk-site-header .wp-block-site-title a {
	text-decoration: none;
	color: var(--tk-color-navy);
}

.tk-site-logo {
	display: flex;
	align-items: center;
}

.tk-site-logo a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.tk-site-logo__img {
	height: 90px;
	width: auto;
}

.tk-site-logo__title {
	font-family: var(--wp--preset--font-family--ilisarniq);
	font-weight: 900;
	font-size: 1.5rem;
	color: var(--tk-color-navy);
	letter-spacing: 0.15px;
	text-transform: uppercase;
}

/* ── Classic Navigation (Appearance → Menus) ─────────────────────────────── */

.tk-nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 2rem;
}

.tk-nav-menu li a {
	color: #183151;
	text-decoration: none;
	font-family: var(--tk-font-body);
	font-size: 1rem;
	font-weight: 400;
	transition: color var(--tk-transition-fast);
}

.tk-nav-menu li a:hover {
	color: var(--tk-color-teal);
}

/* Hamburger toggle — hidden on desktop */
.tk-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
}

.tk-nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--tk-color-navy);
	border-radius: 2px;
	transition: transform var(--tk-transition-fast), opacity var(--tk-transition-fast);
}

/* Active state — X shape */
.tk-nav-toggle[aria-expanded="true"] .tk-nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.tk-nav-toggle[aria-expanded="true"] .tk-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}
.tk-nav-toggle[aria-expanded="true"] .tk-nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
	.tk-nav-toggle {
		display: flex;
	}

	.tk-nav-menu {
		display: none;
		position: absolute;
		top: 75px;
		left: 0;
		right: 0;
		background-color: var(--tk-color-white);
		flex-direction: column;
		padding: var(--tk-space-md) var(--tk-space-lg);
		gap: 0;
		box-shadow: var(--tk-shadow-md);
		z-index: var(--tk-z-header);
	}

	.tk-nav-menu.is-open {
		display: flex;
	}

	.tk-nav-menu li {
		width: 100%;
	}

	.tk-nav-menu li a {
		display: block;
		padding: 0.75rem 0;
		border-bottom: 1px solid #e7e6f2;
	}

	.tk-nav-menu li:last-child a {
		border-bottom: none;
	}

	.tk-nav-menu li.tk-btn-book {
		margin-top: var(--tk-space-sm);
	}

	.tk-nav-menu li.tk-btn-book > a {
		text-align: center;
		padding: 14px 40px;
	}
}

/* "Book Now" pill button — add CSS class "tk-btn-book" to the menu item */
.tk-nav-menu li.tk-btn-book > a {
	display: inline-block;
	padding: 14px 40px;
	background-color: var(--tk-color-sky);
	color: var(--tk-color-navy);
	border-radius: var(--tk-radius-pill);
	font-family: var(--tk-font-heading);
	font-weight: 900;
	font-size: 1.0625rem;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: background-color var(--tk-transition-base), color var(--tk-transition-base);
}

.tk-nav-menu li.tk-btn-book > a:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
}

/* ── Site Footer ───────────────────────────────────────────────────────────── */

.tk-site-footer {
	background-color: var(--tk-color-white);
	color: var(--tk-color-navy);
	padding: var(--tk-space-xl) var(--tk-space-lg) var(--tk-space-md);
	padding-left: max(var(--tk-space-lg), calc((100% - 1220px) / 2)) !important;
	padding-right: max(var(--tk-space-lg), calc((100% - 1220px) / 2)) !important;
	border-top: 1px solid rgba(9, 45, 58, 0.1);
}

/* Footer 3-column grid */
.tk-footer-columns {
	display: flex;
	justify-content: space-between;
	gap: var(--tk-space-xl);
	max-width: 1220px;
	margin: 0 auto;
}

.tk-footer-columns > .tk-footer-col {
	flex: 0 1 auto;
	display: flex;
	flex-direction: column;
}

.tk-footer-col .tk-footer-btn {
	margin-top: auto;
}

/* Reset all WordPress block default spacing inside footer widgets */
.tk-footer-col .tk-footer-widget {
	margin-bottom: 0;
}

.tk-footer-col .tk-footer-widget:first-child {
	margin-top: 0;
}

.tk-footer-col .tk-footer-widget:first-child > *:first-child {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
	padding-top: 0;
}

/* Column headings */
.tk-footer-widget__title,
h3.tk-footer-widget__title {
	font-family: var(--tk-font-heading);
	font-weight: var(--tk-fw-heading);
	font-size: 1.375rem;
	color: var(--tk-color-navy);
	margin: 0 0 var(--tk-space-sm);
	letter-spacing: 0.15px;
}

/* Brand name in column 1 — same style as other footer headings */

/* Paragraph text */
.tk-footer-col p {
	line-height: 1.8;
	margin: 0 0 0.5rem;
	color: var(--tk-color-navy);
	font-size: 1rem;
}

.tk-footer-ilisaqsivik {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: var(--tk-space-md);
}

.tk-footer-ilisaqsivik__logo {
	width:  auto;
	height: 150px;
	object-fit: contain;
	flex-shrink: 0;
	border-radius: 20px;
}

.tk-footer-tagline {
	font-size: 1rem !important;
	margin: 0 !important;
	font-weight: 700;
}

/* Links */
.tk-footer-col a {
	color: var(--tk-color-navy);
	text-decoration: underline;
	font-weight: 700;
}

.tk-footer-col a:hover {
	color: var(--tk-color-teal);
}

/* Widget containers */
.tk-footer-widget {
	margin-bottom: var(--tk-space-md);
}

.tk-footer-widget p {
	line-height: 1.8;
	margin: 0 0 0.5rem;
	color: var(--tk-color-navy);
	font-size: 1rem;
}

.tk-footer-widget a {
	color: var(--tk-color-navy);
	text-decoration: underline;
	font-weight: 700;
}

.tk-footer-widget a:hover {
	color: var(--tk-color-teal);
}

.tk-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tk-footer-widget ul li {
	margin-bottom: 0.25rem;
}

.tk-footer-widget ul li a {
	color: var(--tk-color-navy);
	font-size: 1rem;
	line-height: 1.8;
	text-decoration: none;
	font-weight: 400;
}

.tk-footer-widget ul li a:hover {
	color: var(--tk-color-navy);
}

/* Footer nav (column 3 — Explore) */
.tk-footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tk-footer-nav li {
	margin-bottom: 0;
}

.tk-footer-nav li a {
	color: var(--tk-color-text);
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
}

.tk-footer-nav li a:hover {
	color: var(--tk-color-teal);
	text-decoration: underline;
}

/* "Book Now" pill button in footer */
.tk-footer-btn {
	display: inline-block;
	background-color: var(--tk-color-sky);
	color: var(--tk-color-navy) !important;
	border-radius: var(--tk-radius-pill);
	padding: 0.75em 2em;
	font-family: var(--tk-font-heading);
	font-weight: 900;
	font-size: var(--tk-size-btn);
	text-transform: uppercase;
	text-decoration: none !important;
	letter-spacing: 0.03em;
	margin-top: var(--tk-space-sm);
	transition: background-color var(--tk-transition-base);
}

.tk-footer-btn:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy) !important;
}

/* Footer brand — logo + title inline */
.tk-footer-brand-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: var(--tk-space-sm);
}

.tk-footer-logo {
	display: inline-flex;
	flex-shrink: 0;
}

.tk-footer-logo__img {
	height: 100px;
	width: auto;
}

/* Contact list with FA icons */
.tk-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tk-contact-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0.5rem;
}

.tk-contact-list li i {
	width: 20px;
	text-align: center;
	color: var(--tk-color-teal);
	font-size: 0.875rem;
}

.tk-contact-list li a {
	color: var(--tk-color-text);
	text-decoration: none;
}

.tk-contact-list li a:hover {
	color: var(--tk-color-teal);
	text-decoration: underline;
}

.tk-contact-list + .tk-footer-btn {
	margin-top: var(--tk-space-md);
}

/* Footer menu (nav) */
.tk-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tk-footer-menu li {
	margin-bottom: 0.5rem;
}

.tk-footer-menu li a {
	color: var(--tk-color-navy);
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.8;
	transition: color var(--tk-transition-fast);
}

.tk-footer-menu li a:hover {
	color: var(--tk-color-teal);
	text-decoration: underline;
}

/* Social links menu */
.tk-social-links {
	display: flex;
	gap: 0.5rem;
	margin-top: var(--tk-space-md);
	list-style: none;
	padding: 0;
}

.tk-social-links li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background-color: var(--tk-color-sky);
	color: var(--tk-color-navy);
	text-decoration: none !important;
	transition: background-color var(--tk-transition-fast), color var(--tk-transition-fast);
}

.tk-social-links li a svg {
	width: 16px;
	height: 16px;
}

.tk-social-links li a:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
}

/* Legacy: flat social icon links (Customizer-based, kept for backwards compat) */
.tk-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background-color: var(--tk-color-sky);
	color: var(--tk-color-white);
	text-decoration: none !important;
	transition: background-color var(--tk-transition-fast), color var(--tk-transition-fast);
}

.tk-social-icon svg {
	width: 16px;
	height: 16px;
}

.tk-social-icon:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
}

.tk-footer-divider {
	border: none;
	border-top: 1px solid #e7e6f2;
	max-width: 1220px;
	margin: var(--tk-space-lg) auto var(--tk-space-md);
}

.tk-footer-copyright {
	text-align: center;
	font-size: 1rem;
	color: var(--tk-color-navy);
	margin: 0;
}

.tk-footer-powered-by {
	text-align: center;
	font-size: 0.875rem;
	color: var(--tk-color-navy);
	margin: var(--tk-space-xs) 0 0;
	opacity: 0.75;
}

.tk-footer-powered-by a {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	text-decoration: none;
	margin-left: 0.35rem;
}

.tk-footer-powered-by img {
	height: 20px;
	width: 20px;
	vertical-align: middle;
}

/* ── Booking Modal ─────────────────────────────────────────────────────────── */

.tk-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(9, 45, 58, 0.6);
	z-index: 400;
	align-items: center;
	justify-content: center;
}

.tk-modal-overlay.is-open {
	display: flex;
}

.tk-modal {
	background: var(--tk-color-white);
	border-radius: var(--tk-radius-lg);
	padding: var(--tk-space-xl);
	max-width: 560px;
	width: 90%;
	position: relative;
	text-align: center;
}

.tk-modal__close {
	position: absolute;
	top: var(--tk-space-sm);
	right: var(--tk-space-sm);
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--tk-color-navy);
	line-height: 1;
}

/* Booking modal variant */
.tk-modal--booking {
	background: var(--tk-color-navy);
	border-radius: 50px;
	padding: var(--tk-space-xxl) var(--tk-space-xl);
	max-width: 620px;
	box-shadow: 0 4px 8px 5px rgba(0, 0, 0, 0.15);
}

.tk-modal--booking .tk-modal__close {
	color: var(--tk-color-white);
	top: var(--tk-space-md);
	right: var(--tk-space-md);
	font-size: 1.75rem;
}

.tk-modal--booking .tk-modal__close:hover {
	opacity: 0.7;
}

.tk-modal--booking .tk-modal__title {
	font-family: var(--tk-font-heading);
	font-weight: var(--tk-fw-heading);
	font-size: 2.5rem;
	line-height: 1.2;
	color: var(--tk-color-white);
	margin: 0 0 var(--tk-space-sm);
}

.tk-modal--booking .tk-modal__subtitle {
	font-family: var(--tk-font-body);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--tk-color-white);
	margin: 0 0 var(--tk-space-lg);
}

.tk-modal--booking .tk-modal__body {
	font-family: var(--tk-font-body);
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--tk-color-white);
	margin: 0 auto var(--tk-space-lg);
	max-width: 480px;
}

.tk-modal--booking .tk-modal__body p {
	display: block;
	margin: 0 0 1em !important;
}

.tk-modal--booking .tk-modal__body p:last-child {
	margin-bottom: 0 !important;
}

.tk-modal--booking .tk-modal__cta {
	display: inline-block;
	padding: 1.25em 2.5em;
	background-color: var(--tk-color-sky);
	color: var(--tk-color-navy);
	border-radius: var(--tk-radius-pill);
	font-family: var(--tk-font-heading);
	font-weight: 900;
	font-size: 1.125rem;
	line-height: 1;
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0.02em;
	transition: background-color var(--tk-transition-base), color var(--tk-transition-base);
	margin-top: var(--tk-space-md);
}

.tk-modal--booking .tk-modal__cta:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
}

/* ── Section Rhythm ─────────────────────────────────────────────────────────── */

.tk-pattern-about,
.tk-pattern-hotels,
.tk-pattern-amenities,
.tk-pattern-amenities-inline,
.tk-pattern-highlights,
.tk-pattern-cta,
.tk-pattern-hotel-feature,
.tk-pattern-story,
.tk-pattern-content-image,
.tk-pattern-room-features {
	padding-top: var(--tk-space-xxl);    /* 96px */
	padding-bottom: var(--tk-space-xxl); /* 96px */
}

/* ── Focus Indicators (Accessibility) ───────────────────────────────────────── */

*:focus-visible {
	outline: 3px solid var(--tk-color-sky);
	outline-offset: 2px;
}

/* Buttons — rounded focus ring */
.wp-block-button__link:focus-visible,
.tk-btn-book:focus-visible,
a.tk-nav-menu a:focus-visible {
	outline: 3px solid var(--tk-color-sky);
	outline-offset: 3px;
	border-radius: var(--tk-radius-pill);
}

/* Remove default outline on mouse click */
:focus:not(:focus-visible) {
	outline: none;
}

/* ── Section Spacing ───────────────────────────────────────────────────────── */

.entry-content > .wp-block-group {
	padding-top: 80px;
	padding-bottom: 80px;
}

.entry-content > .wp-block-group > *:first-child {
	margin-top: 0;
}

.entry-content > .wp-block-group > *:last-child {
	margin-bottom: 0;
}

/* Section header → content gap */
.tk-section-header {
	margin-bottom: 65px !important;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.tk-section-header h2 {
	margin-bottom: var(--tk-gap-tight) !important;
}

.tk-section-header p {
	margin-top: 0 !important;
}

@media (max-width: 768px) {
	.entry-content > .wp-block-group {
		padding-top: 40px;
		padding-bottom: 40px;
		padding-left: var(--tk-space-md);
		padding-right: var(--tk-space-md);
	}

	.tk-section-header {
		margin-bottom: var(--tk-space-md) !important;
	}
}

/* ── Kill WP default 24px margin between site-level blocks ───────────────── */

.wp-site-blocks > * {
	margin-block-start: 0;
}

/* ── Interior Page Hero ────────────────────────────────────────────────────── */

.tk-hero-interior {
	width: 100%;
	align-items: center !important;
	background-color: var(--tk-color-navy);
}

/* Shorter hero when no featured image */
.tk-hero-interior:not(:has(img)) {
	min-height: 330px !important;
}

.tk-hero-interior .wp-block-cover__background {
	background: linear-gradient(to right, rgba(9, 45, 58, 0.6) 0%, rgba(9, 45, 58, 0.35) 50%, transparent 100%) !important;
	opacity: 1 !important;
}

.tk-hero-interior .wp-block-cover__inner-container {
	max-width: 1220px;
	margin: 0 auto;
	width: 100%;
}

.tk-hero-interior .wp-block-post-title {
	font-family: var(--tk-font-heading);
	font-weight: var(--tk-fw-heading);
	font-size: 2rem;
	color: var(--tk-color-white);
	line-height: var(--tk-lh-tight);
	margin-top: var(--tk-space-sm);
	margin-bottom: 0;
}

.tk-hero-subtitle {
	margin-top: 2rem;
	max-width: 36rem;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */

.tk-breadcrumb {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.125rem;
	line-height: 1;
	color: var(--tk-color-white);
}

.tk-breadcrumb__home {
	color: var(--tk-color-white);
	opacity: 0.7;
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.tk-breadcrumb__home:hover {
	opacity: 1;
	color: var(--tk-color-white);
}

.tk-breadcrumb__sep {
	opacity: 0.7;
	display: flex;
	align-items: center;
}

.tk-breadcrumb__link {
	color: var(--tk-color-white);
	opacity: 0.7;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.tk-breadcrumb__link:hover {
	opacity: 1;
	color: var(--tk-color-white);
}

.tk-breadcrumb__current {
	opacity: 0.9;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

	/* Typography — scale down headings */
	h1, .has-gigantic-font-size   { font-size: 2rem !important; }
	h2, .has-huge-font-size       { font-size: 1.75rem !important; }
	h3, .has-xxx-large-font-size  { font-size: 1.5rem !important; }

	/* Header — reduce height + padding */
	.tk-site-header {
		height: 90px;
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
	}

	.tk-site-logo__img {
		height: 60px;
	}

	.tk-site-logo__title {
		font-size: 1.25rem;
	}

	/* Nav dropdown adjusts to shorter header */
	.tk-nav-menu {
		top: 65px;
	}

	/* Announcement bar — tighter padding */
	.tk-announcement-bar {
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
		font-size: 0.9375rem;
	}

	/* Footer — brand full-width, Stay in Touch + Explore side by side */
	.tk-footer-columns {
		flex-wrap: wrap !important;
		gap: var(--tk-space-lg) !important;
	}

	.tk-footer-columns > .tk-footer-col:first-child {
		flex: 0 0 100% !important;
		padding-bottom: var(--tk-space-md);
		border-bottom: 1px solid #e7e6f2;
	}

	/* Brand column — two grouped blocks: Tukumaaq identity | Ilisaqsivik attribution */
	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		row-gap: 6px;
		column-gap: var(--tk-space-lg);
	}

	/* Left block — Tukumaaq logo+name (row 1) and address (row 2) */
	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-brand-row {
		grid-column: 1;
		grid-row: 1;
		margin-bottom: 0;
		gap: var(--tk-space-sm);
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget > p {
		grid-column: 1;
		grid-row: 2;
		margin: 0 !important;
		color: var(--tk-color-navy);
		font-size: 0.9375rem;
		line-height: 1.5;
	}

	/* Center divider */
	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget::before {
		content: "";
		grid-column: 2;
		grid-row: 1 / 3;
		width: 1px;
		height: 100%;
		background: #e7e6f2;
		justify-self: center;
	}

	/* Right block — Ilisaqsivik attribution, vertically centered across both rows */
	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-ilisaqsivik {
		grid-column: 3;
		grid-row: 1 / 3;
		margin-top: 0;
		gap: var(--tk-space-md);
		justify-self: start;
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-logo__img {
		height: 64px;
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget__title {
		font-size: 1.625rem;
		margin-bottom: 0;
		white-space: nowrap;
	}

	/* Ilisaqsivik logo — match Tukumaaq's visual weight */
	.tk-footer-ilisaqsivik__logo {
		width: 64px;
		height: 64px;
	}

	.tk-footer-tagline {
		font-size: 0.9375rem !important;
		line-height: 1.5;
	}

	.tk-footer-columns > .tk-footer-col:nth-child(2),
	.tk-footer-columns > .tk-footer-col:last-child {
		flex: 0 1 calc(50% - var(--tk-space-lg) / 2) !important;
	}

	/* Footer container padding */
	.tk-site-footer {
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
		padding-top: var(--tk-space-lg);
	}

	/* Section spacing — moderate reduction */
	.entry-content > .wp-block-group {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	/* Hero — reduce min-height on tablet */
	.wp-block-cover {
		min-height: 50vh !important;
	}

	/* Buttons — slightly smaller on tablet */
	.wp-block-button__link,
	.tk-btn {
		padding: 0.65em 1.5em;
		font-size: 1rem;
	}
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px) — enhancements to existing rules
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

	/* Typography — further scale-down */
	h1, .has-gigantic-font-size   { font-size: 1.75rem !important; }
	h2, .has-huge-font-size       { font-size: 1.75rem !important; }
	h3, .has-xxx-large-font-size  { font-size: 1.35rem !important; }
	h4, .has-xx-large-font-size   { font-size: 1.2rem !important; }

	/* Body text — slightly tighter line height */
	body { line-height: 1.6; }

	/* Hero — shorter on mobile */
	.wp-block-cover {
		min-height: 40vh !important;
	}

	/* Hero inner content — comfortable padding */
	.wp-block-cover__inner-container {
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
	}

	/* Header padding override for mobile */
	.tk-site-header {
		height: 110px;
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
	}

	.tk-site-logo__img {
		height: 90px;
	}

	.tk-site-logo__title {
		font-size: 1.5rem;
	}

	/* Nav dropdown adjusts to shorter header */
	.tk-nav-menu {
		top: 110px;
	}

	/* Announcement bar — smaller text, tighter */
	.tk-announcement-bar {
		font-size: 0.8125rem;
		height: 38px;
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
	}

	/* Footer — comfortable padding */
	.tk-site-footer {
		padding-left: var(--tk-space-md) !important;
		padding-right: var(--tk-space-md) !important;
		padding-top: var(--tk-space-lg);
		padding-bottom: var(--tk-space-md);
	}

	/* Footer — brand full-width, cols 2+3 side by side */
	.tk-footer-columns {
		flex-wrap: wrap !important;
		gap: var(--tk-space-lg) !important;
	}

	.tk-footer-columns > .tk-footer-col:first-child {
		flex: 0 0 100% !important;
	}

	.tk-footer-columns > .tk-footer-col:nth-child(2),
	.tk-footer-columns > .tk-footer-col:last-child {
		flex: 0 1 calc(50% - var(--tk-space-lg) / 2) !important;
	}

	/* Buttons — keep inline, slightly smaller */
	.wp-block-button__link,
	.tk-btn {
		padding: 0.6em 1.25em;
		font-size: 0.9375rem;
	}

	/* Modal — nearly full width */
	.tk-modal {
		width: 95%;
		padding: var(--tk-space-md);
	}

	.tk-modal--booking {
		border-radius: 24px;
		padding: var(--tk-space-lg) var(--tk-space-md);
	}

	.tk-modal--booking .tk-modal__title {
		font-size: 1.75rem;
	}

	.tk-modal--booking .tk-modal__subtitle {
		font-size: 1.1rem;
	}

	.tk-modal--booking .tk-modal__body {
		font-size: 1rem;
	}

	/* Section rhythm — reduce on mobile */
	.tk-pattern-about,
	.tk-pattern-hotels,
	.tk-pattern-amenities,
	.tk-pattern-amenities-inline,
	.tk-pattern-highlights,
	.tk-pattern-cta,
	.tk-pattern-hotel-feature,
	.tk-pattern-story,
	.tk-pattern-content-image,
	.tk-pattern-room-features {
		padding-top: var(--tk-space-xl);    /* 64px */
		padding-bottom: var(--tk-space-xl); /* 64px */
	}

	/* Section header — reduce on mobile */
	.tk-section-header {
		margin-bottom: 32px !important;
	}
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small phones (≤480px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {

	/* Typography — minimum comfortable sizes */
	h1, .has-gigantic-font-size   { font-size: 1.5rem !important; }
	h2, .has-huge-font-size       { font-size: 1.5rem !important; }
	h3, .has-xxx-large-font-size  { font-size: 1.15rem !important; }

	/* Tighter section spacing */
	.entry-content > .wp-block-group {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.tk-section-header {
		margin-bottom: var(--tk-space-sm) !important;
	}

	/* Footer widget title — slightly smaller */
	.tk-footer-widget__title,
	h3.tk-footer-widget__title {
		font-size: 1.2rem;
	}

	/* Section rhythm — minimum spacing on small phones */
	.tk-pattern-about,
	.tk-pattern-hotels,
	.tk-pattern-amenities,
	.tk-pattern-amenities-inline,
	.tk-pattern-highlights,
	.tk-pattern-cta,
	.tk-pattern-hotel-feature,
	.tk-pattern-story,
	.tk-pattern-content-image,
	.tk-pattern-room-features {
		padding-top: var(--tk-space-lg);    /* 40px */
		padding-bottom: var(--tk-space-lg); /* 40px */
	}

	/* Social icons — slightly smaller */
	.tk-social-icon {
		width: 32px;
		height: 32px;
	}

	.tk-social-icon svg {
		width: 14px;
		height: 14px;
	}

	/* Footer — everything stacks, centered */
	.tk-footer-columns {
		gap: var(--tk-space-md) !important;
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: var(--tk-space-sm);
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget > h3 {
		margin-bottom: 0;
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-widget > p {
		margin-bottom: 0;
		border-left: none;
		padding-left: 0;
	}

	.tk-footer-columns > .tk-footer-col:first-child .tk-footer-ilisaqsivik {
		border-left: none;
		padding-left: 0;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.tk-footer-ilisaqsivik__logo {
		width: 64px;
		height: 64px;
	}

	.tk-footer-logo__img {
		height: 72px;
	}

	.tk-footer-columns > .tk-footer-col {
		border-bottom: 1px solid #e7e6f2;
		padding-bottom: var(--tk-space-md);
	}

	.tk-footer-columns > .tk-footer-col:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.tk-footer-columns > .tk-footer-col:nth-child(2),
	.tk-footer-columns > .tk-footer-col:last-child {
		flex: 0 0 100% !important;
		text-align: center;
	}

	/* Center contact list items */
	.tk-footer-columns > .tk-footer-col:nth-child(2) .tk-contact-list li {
		justify-content: center;
	}

	.tk-footer-columns > .tk-footer-col:nth-child(2) .tk-footer-btn {
		display: inline-block;
	}

	/* Center nav links */
	.tk-footer-nav {
		padding: 0;
	}

	.tk-social-links {
		justify-content: center;
	}

	/* Tighter divider spacing */
	.tk-footer-divider {
		margin-top: var(--tk-space-md);
		margin-bottom: var(--tk-space-sm);
	}

	.tk-footer-copyright {
		font-size: 0.875rem;
	}
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Landscape orientation (short viewports)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-height: 500px) and (orientation: landscape) {

	/* Hero — prevent taking full screen in landscape */
	.wp-block-cover {
		min-height: 60vh !important;
	}

	/* Announcement bar — collapse on landscape phones */
	.tk-announcement-bar {
		height: 32px;
		font-size: 0.75rem;
	}
}
