/* =========================================================
 * Custom properties — palette & type, ported verbatim from
 * the source React app's src/index.css @theme block.
 * ========================================================= */
:root {
	--iv-cream: #FDFCFB;
	--iv-cream-card: #FFFFFF;
	--iv-green: #0F172A;
	--iv-green-hover: #1E293B;
	--iv-green-light: #F7F5F2;
	--iv-orange: #B59972;
	--iv-orange-hover: #9E8159;
	--iv-border: #E2E8F0;

	--iv-font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
	--iv-font-display: "Playfair Display", Georgia, serif;
	--iv-font-mono: "JetBrains Mono", ui-monospace, monospace;

	--iv-radius-lg: 12px;
	--iv-radius-md: 8px;
}

* { box-sizing: border-box; }

/*
 * Several components below (.iv-modal, .iv-mobile-menu) set their own
 * `display` value for their open state. An author-stylesheet rule that sets
 * `display` beats the user-agent stylesheet's `[hidden]{display:none}` at
 * equal specificity, since author origin outranks user-agent origin in the
 * cascade — so without this override, JS-toggled `hidden` attributes get
 * silently ignored and those elements render open on every page load.
 * This rule guarantees `hidden` always wins, as intended.
 */
[hidden] { display: none !important; }

body {
	background-color: var(--iv-cream);
	color: var(--iv-green);
	font-family: var(--iv-font-sans);
	letter-spacing: -0.011em;
	margin: 0;
}

h1, h2, h3, h4, .iv-font-display {
	font-family: var(--iv-font-display);
	margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

::selection { background-color: var(--iv-orange); color: #fff; }

.iv-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 1.4rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	transition: background-color 0.2s ease;
}
.iv-btn-accent { background-color: var(--iv-orange); color: #fff; }
.iv-btn-accent:hover { background-color: var(--iv-orange-hover); }
.iv-btn-dark { background-color: var(--iv-green); color: #fff; }
.iv-btn-dark:hover { background-color: var(--iv-green-hover); }
.iv-btn-ghost { background: transparent; border: 1px solid var(--iv-border); color: var(--iv-green); }

.iv-eyebrow, .iv-eyebrow-pill {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--iv-orange);
	margin-bottom: 0.75rem;
}
.iv-eyebrow-pill {
	padding: 0.3rem 0.9rem;
	border-radius: 999px;
	background: var(--iv-green-light);
}

/* =========================================================
 * Header
 * ========================================================= */
.iv-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background-color: var(--iv-green);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 4px 12px rgba(15,23,42,0.15);
}
.iv-header-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
	height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.iv-logo { display: flex; align-items: center; gap: 0.6rem; color: #fff; flex-shrink: 0; }
.iv-logo-icon {
	width: 32px; height: 32px; border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.iv-logo:hover .iv-logo-icon { background-color: var(--iv-orange); transform: rotate(45deg); }
.iv-logo-text {
	font-family: var(--iv-font-display); font-weight: 900;
	letter-spacing: -0.02em; text-transform: none; font-size: 1.15rem;
}
.iv-logo-accent { color: var(--iv-orange); font-family: var(--iv-font-sans); font-weight: 700; letter-spacing: 0; margin-left: 0; }
.iv-logo-footer .iv-logo-rest { color: #fff; }
.iv-logo-footer .iv-logo-accent { color: var(--iv-orange); }

.iv-desktop-nav { display: none; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.iv-nav-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.2); margin: 0 0.35rem; flex-shrink: 0; }
.iv-nav-link {
	display: inline-block; padding: 0.45rem 0.9rem; border-radius: 999px;
	font-size: 0.875rem; font-weight: 500;
	color: rgba(253,252,251,0.85);
	transition: color 0.2s ease, background-color 0.2s ease;
}
.iv-nav-link:hover { color: var(--iv-orange); background: rgba(255,255,255,0.05); }
.iv-nav-link.is-active { background: rgba(255,255,255,0.15); color: #fff; font-weight: 600; }

.iv-header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.iv-icon-btn {
	background: transparent; border: none; color: rgba(253,252,251,0.85);
	padding: 0.45rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
}
.iv-icon-btn:hover { background: rgba(255,255,255,0.1); color: var(--iv-orange); }
.iv-hide-mobile { display: none; }
.iv-hide-desktop { display: inline-flex; }

.iv-search-inline { display: flex; align-items: center; }
.iv-search-form {
	display: flex; align-items: center; gap: 0.35rem;
	background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
	border-radius: 999px; padding: 0.25rem 0.5rem 0.25rem 0.75rem;
}
.iv-search-form input {
	background: transparent; border: none; color: #fff;
	font-size: 0.75rem; width: 128px; font-family: inherit;
}
.iv-search-form input::placeholder { color: rgba(253,252,251,0.45); }
.iv-search-form input:focus { outline: none; }
.iv-search-close { background: none; border: none; color: rgba(253,252,251,0.65); font-size: 1.1rem; line-height: 1; padding: 0 0.2rem; }

.iv-lang-switcher { position: relative; }
.iv-lang-current {
	display: inline-flex; align-items: center; gap: 0.35rem;
	background: transparent; color: rgba(253,252,251,0.85); border: none;
	padding: 0.45rem 0.65rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
}
.iv-lang-current:hover { background: rgba(255,255,255,0.05); color: var(--iv-orange); }
.iv-lang-icon { color: var(--iv-orange); }
.iv-lang-chevron { opacity: 0.6; }
.iv-lang-dropdown {
	display: none; position: absolute; right: 0; top: calc(100% + 8px);
	background: #fff; border-radius: var(--iv-radius-lg);
	box-shadow: 0 10px 30px rgba(15,23,42,0.15);
	list-style: none; margin: 0; padding: 0.35rem; min-width: 144px; z-index: 50;
	border: 1px solid rgba(15,23,42,0.08);
}
.iv-lang-dropdown.iv-open { display: block; }
.iv-lang-dropdown li a {
	display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
	padding: 0.45rem 0.65rem; border-radius: var(--iv-radius-md);
	color: var(--iv-green); font-size: 0.75rem; font-weight: 500;
}
.iv-lang-dropdown li a:hover,
.iv-lang-dropdown li.is-active a { background: var(--iv-green-light); }
.iv-lang-code { font-family: var(--iv-font-mono); font-size: 0.625rem; opacity: 0.5; font-weight: 700; text-transform: uppercase; }

.iv-mobile-menu {
	background: var(--iv-green); padding: 1rem 1.5rem 1.5rem;
	display: flex; flex-direction: column; gap: 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.iv-mobile-nav-list { display: flex; flex-direction: column; gap: 0.35rem; }
.iv-mobile-nav-list .iv-nav-link { display: block; color: #fff; }

#iv-scroll-progress {
	position: fixed; top: 0; left: 0; height: 3px; width: 0%;
	background: var(--iv-orange); z-index: 60; transition: width 0.1s linear;
}

/* =========================================================
 * Hero
 * ========================================================= */
.iv-hero-welcome {
	max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem 0;
}
.iv-hero-welcome .iv-hero {
	position: relative; overflow: hidden;
	background: #fff; border: 1px solid rgba(15,23,42,0.08);
	border-radius: 24px; padding: 2rem 2rem;
	box-shadow: 0 1px 3px rgba(15,23,42,0.06);
}
.iv-hero-welcome .iv-hero::before,
.iv-hero-welcome .iv-hero::after {
	content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.iv-hero-welcome .iv-hero::before {
	top: -48px; right: -48px; width: 192px; height: 192px;
	background: rgba(181,153,114,0.1); filter: blur(40px);
}
.iv-hero-welcome .iv-hero::after {
	bottom: -48px; left: -48px; width: 192px; height: 192px;
	background: rgba(15,23,42,0.06); filter: blur(40px);
}
.iv-hero {
	max-width: 1280px; margin: 0 auto; padding: 0;
	display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
	position: relative; z-index: 1;
}
.iv-hero-copy h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 1rem; font-weight: 800; }
.iv-hero-copy p { font-size: 1rem; color: rgba(15,23,42,0.7); margin-bottom: 1.5rem; max-width: 42ch; line-height: 1.65; }
.iv-hero-media { display: flex; justify-content: center; }
.iv-hero-media-frame {
	width: 100%; max-width: 420px; aspect-ratio: 1;
	border-radius: var(--iv-radius-lg); border: 2px solid rgba(15,23,42,0.08);
	padding: 0.5rem; background: var(--iv-cream);
}
.iv-hero-media-frame img {
	width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--iv-radius-lg) - 4px);
}

/* =========================================================
 * Journal sections
 * ========================================================= */
.iv-journal { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.iv-journal-heading {
	display: flex; align-items: center; gap: 0.75rem;
	margin-bottom: 1.75rem; padding-bottom: 1rem;
	border-bottom: 1px solid rgba(15,23,42,0.08);
}
.iv-journal-heading h2 { font-size: 1.6rem; flex: 1; }
.iv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--iv-orange); flex-shrink: 0; }
.iv-journal-fashion .iv-dot { background: #fbbf24; }
.iv-journal-lifestyle .iv-dot { background: #10b981; }
.iv-journal-travel .iv-dot { background: #60a5fa; }
.iv-journal-beauty .iv-dot { background: #f472b6; }
.iv-explore-link { font-size: 0.75rem; font-weight: 700; font-family: var(--iv-font-mono); color: var(--iv-orange); letter-spacing: 0.02em; }
.iv-explore-link:hover { color: var(--iv-orange-hover); text-decoration: underline; }

.iv-journal-grid-3col { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.75rem; }
.iv-journal-grid-feature-left,
.iv-journal-grid-feature-right {
	display: grid; grid-template-columns: 1fr; gap: 1.75rem;
	/* Without this, grid's default align-items:stretch forces the thumbs
	   column to match the tall featured-image column's height, leaving a
	   large blank gap below the (correctly-sized) stacked thumbnails. */
	align-items: start;
}
.iv-journal-thumbs { display: flex; flex-direction: column; gap: 1rem; }
.iv-journal-list { display: flex; flex-direction: column; gap: 1.5rem; }

.iv-card {
	background: var(--iv-cream-card);
	border-radius: var(--iv-radius-lg);
	overflow: hidden;
	border: 1px solid rgba(15,23,42,0.08);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.iv-card:hover { box-shadow: 0 4px 14px rgba(15,23,42,0.08); }

.iv-card-grid .iv-card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s ease; }
.iv-card-grid:hover .iv-card-media img { transform: scale(1.03); }
.iv-card-grid .iv-card-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.iv-card-grid .iv-card-title { font-size: 1.25rem; font-weight: 700; }
.iv-card-grid .iv-card-meta { padding-top: 1rem; margin-top: 0.75rem; border-top: 1px solid rgba(15,23,42,0.05); }
.iv-card-grid .iv-card-readmore { display: none; }
.iv-card-badge {
	display: inline-block; width: fit-content; align-self: flex-start;
	font-size: 0.5625rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.08em; font-family: var(--iv-font-mono);
	color: var(--iv-orange); background: var(--iv-green-light);
	padding: 0.2rem 0.5rem; border-radius: 999px; margin-bottom: 0.5rem;
	border: 1px solid rgba(15,23,42,0.08);
}
.iv-card-title { font-size: 1.1rem; line-height: 1.3; margin-bottom: 0.5rem; }
.iv-card-title a:hover { color: var(--iv-orange); }
.iv-card-excerpt { font-size: 0.9rem; color: rgba(15,23,42,0.7); margin-bottom: 0.75rem; line-height: 1.6; }
.iv-card-meta {
	display: flex; align-items: center; justify-content: space-between;
	font-size: 0.625rem; font-family: var(--iv-font-mono);
}
.iv-card-author { color: rgba(15,23,42,0.5); font-weight: 600; }
.iv-card-readmore { font-weight: 700; color: var(--iv-orange); white-space: nowrap; }

/* Compact row cards — Fashion/Travel side thumbnails */
.iv-card-row-compact {
	display: flex; align-items: center; gap: 1rem;
	padding: 1.25rem; overflow: visible;
}
.iv-card-row-compact:hover { border-color: rgba(181,153,114,0.25); }
.iv-card-row-compact .iv-card-media {
	flex: 0 0 96px; width: 96px; height: 96px; overflow: hidden;
	border-radius: var(--iv-radius-md); background: rgba(15,23,42,0.03);
}
.iv-card-row-compact .iv-card-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.5s ease;
}
.iv-card-row-compact:hover .iv-card-media img { transform: scale(1.05); }
.iv-card-row-compact .iv-card-body { padding: 0; flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.iv-card-row-compact .iv-card-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0; line-height: 1.35; }
.iv-card-row-compact .iv-card-title a {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.iv-card-row-compact .iv-card-meta { margin-top: 0.15rem; }
.iv-card-row-compact .iv-card-readmore { display: none; }

/* Wide row cards — Beauty list layout */
.iv-card-row-wide {
	display: flex; flex-direction: column; align-items: stretch;
	padding: 1.25rem 1.5rem; overflow: visible; gap: 1rem;
}
.iv-card-row-wide .iv-card-media {
	width: 100%; overflow: hidden; border-radius: var(--iv-radius-md);
	background: rgba(15,23,42,0.03);
}
.iv-card-row-wide .iv-card-media img {
	width: 100%; aspect-ratio: 16/10; object-fit: cover;
	transition: transform 0.5s ease;
}
.iv-card-row-wide:hover .iv-card-media img { transform: scale(1.02); }
.iv-card-row-wide .iv-card-body { padding: 0; flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.iv-card-row-wide .iv-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0; line-height: 1.35; }
.iv-card-row-wide .iv-card-excerpt { font-size: 0.8125rem; margin-bottom: 0; }
.iv-card-row-wide .iv-card-excerpt {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.iv-card-row-wide .iv-card-meta { padding-top: 0.35rem; font-size: 0.6875rem; }
.iv-card-row-wide .iv-card-readmore { display: none; }

.iv-empty { color: rgba(15,23,42,0.5); font-style: italic; }

/* =========================================================
 * Brand marquee
 * ========================================================= */
.iv-marquee-wrap { overflow: hidden; background: var(--iv-green-light); padding: 1.5rem 0; }
.iv-marquee-track { display: flex; gap: 3rem; width: max-content; animation: iv-marquee 40s linear infinite; }
.iv-marquee-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: rgba(15,23,42,0.6); white-space: nowrap; }
.iv-marquee-item:hover { color: var(--iv-orange); }
@keyframes iv-marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* =========================================================
 * Newsletter block
 * ========================================================= */
.iv-newsletter-block {
	max-width: 960px; margin: 3rem auto; padding: 0 1.5rem;
}
.iv-newsletter-inner {
	position: relative; overflow: hidden;
	background: var(--iv-green); color: #fff;
	border-radius: 40px; padding: 3rem 2rem; text-align: center;
	box-shadow: 0 20px 40px rgba(15,23,42,0.15);
	border: 1px solid var(--iv-green-hover);
}
.iv-newsletter-inner::before,
.iv-newsletter-inner::after {
	content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.iv-newsletter-inner::before {
	top: 0; right: 0; width: 256px; height: 256px;
	background: rgba(255,255,255,0.05); transform: translate(30%, -50%);
}
.iv-newsletter-inner::after {
	bottom: 0; left: 0; width: 256px; height: 256px;
	background: rgba(181,153,114,0.1); transform: translate(-30%, 50%);
}
.iv-newsletter-eyebrow {
	display: block; position: relative; z-index: 1;
	font-size: 0.6875rem; font-family: var(--iv-font-mono); font-weight: 700;
	letter-spacing: 0.12em; text-transform: uppercase; color: var(--iv-orange);
	margin-bottom: 0.75rem;
}
.iv-newsletter-inner h2 {
	position: relative; z-index: 1;
	color: #fff; font-size: 1.75rem; margin: 0 0 0.75rem;
}
.iv-newsletter-lead {
	position: relative; z-index: 1;
	color: rgba(253,252,251,0.8); max-width: 50ch; margin: 0 auto 1.5rem;
	font-size: 0.875rem; line-height: 1.65;
}
.iv-newsletter-form-wrap {
	position: relative; z-index: 1;
	max-width: 420px; margin: 0 auto;
}
.iv-newsletter-form-wrap .wpcf7 { width: 100%; }
.iv-newsletter-form-wrap form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas: "field submit" "status status";
	gap: 0.5rem;
	width: 100%; margin: 0;
}
.iv-newsletter-block .iv-newsletter-form-wrap form {
	grid-template-columns: minmax(220px, 320px) auto;
	justify-content: center;
}
.iv-newsletter-form-wrap form > p { margin: 0; padding: 0; }
.iv-newsletter-form-wrap form > p:first-of-type { grid-area: field; }
.iv-newsletter-form-wrap form > p:nth-of-type(2) { grid-area: submit; }
.iv-newsletter-form-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }
.iv-newsletter-block .iv-newsletter-form-wrap input[type="email"],
.iv-newsletter-block .iv-newsletter-form-wrap input[type="text"] {
	width: 100%; padding: 0.85rem 1.25rem; border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.1); color: #fff; font-family: inherit; font-size: 0.75rem;
}
.iv-newsletter-block .iv-newsletter-form-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.iv-newsletter-block .iv-newsletter-form-wrap input[type="submit"] {
	padding: 0.85rem 1.5rem; border-radius: 999px; border: none;
	background: var(--iv-orange); color: #fff; font-weight: 700; font-size: 0.75rem;
	white-space: nowrap; cursor: pointer;
}
.iv-newsletter-form-wrap .wpcf7-response-output {
	grid-area: status;
	width: 100%; margin: 0.25rem 0 0; padding: 0.75rem 1.25rem;
	border-radius: 16px; font-size: 0.75rem; line-height: 1.55; text-align: center;
	border: 1px solid transparent;
}
.iv-newsletter-block .wpcf7-not-valid-tip { display: none; }
.iv-newsletter-block .wpcf7 form.sent .wpcf7-response-output {
	background: rgba(255,255,255,0.1); border-color: rgba(181,153,114,0.35); color: rgba(253,252,251,0.95);
}
.iv-newsletter-block .wpcf7 form.invalid .wpcf7-response-output,
.iv-newsletter-block .wpcf7 form.unaccepted .wpcf7-response-output,
.iv-newsletter-block .wpcf7 form.failed .wpcf7-response-output,
.iv-newsletter-block .wpcf7 form.aborted .wpcf7-response-output,
.iv-newsletter-block .wpcf7 form.spam .wpcf7-response-output {
	background: rgba(127,29,29,0.22); border-color: rgba(252,165,165,0.35); color: #fecaca;
}
.iv-newsletter-block .wpcf7 form .wpcf7-response-output:empty { display: none; padding: 0; border: 0; }
.iv-newsletter-form-wrap .wpcf7-spinner { grid-area: status; justify-self: center; margin-top: 0.25rem; }
.iv-newsletter-fine {
	position: relative; z-index: 1;
	font-size: 0.625rem; color: rgba(255,255,255,0.4); margin-top: 1rem;
}

/* Modal newsletter — light panel */
.iv-newsletter-modal-title {
	position: relative; z-index: 1;
	margin: 0 0 0.5rem; color: var(--iv-green);
	font-family: var(--iv-font-display); font-size: 1.6rem; font-weight: 800;
}
.iv-newsletter-modal-body {
	margin: 0 auto 1.35rem; max-width: 40ch;
	color: rgba(15,23,42,0.6); font-size: 0.875rem; line-height: 1.6;
}
.iv-modal .iv-newsletter-form-wrap form {
	grid-template-columns: 1fr;
	grid-template-areas: "field" "submit" "status";
	gap: 0.6rem;
}
/* Keep the email input and the submit button the exact same width (equal,
   full-width, stacked): both are block-level, width:100% and border-box so
   their differing horizontal padding never changes their outer width. */
.iv-modal .iv-newsletter-form-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }
.iv-modal .iv-newsletter-form-wrap input[type="email"],
.iv-modal .iv-newsletter-form-wrap input[type="text"] {
	display: block; box-sizing: border-box;
	width: 100%; padding: 0.85rem 1.25rem; border-radius: 999px;
	font-family: inherit; font-size: 0.8125rem;
	border: 1px solid rgba(15,23,42,0.12); background: #fff; color: var(--iv-green);
}
.iv-modal .iv-newsletter-form-wrap input::placeholder { color: rgba(15,23,42,0.4); }
.iv-modal .iv-newsletter-form-wrap input[type="submit"],
.iv-modal .iv-newsletter-form-wrap button.wpcf7-submit.iv-modal-submit-ready {
	display: flex; box-sizing: border-box; justify-content: center; align-items: center;
	width: 100%; padding: 0.85rem 1.5rem; border-radius: 999px; border: none;
	background: var(--iv-orange); background-image: none;
	color: #fff; font-family: inherit; font-weight: 700; font-size: 0.8125rem;
	cursor: pointer; transition: background-color 0.2s ease;
}
.iv-modal .iv-newsletter-form-wrap .iv-modal-submit-inner {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.iv-modal .iv-newsletter-form-wrap .iv-modal-submit-icon {
	display: inline-flex; width: 16px; height: 16px; flex-shrink: 0;
}
.iv-modal .iv-newsletter-form-wrap .iv-modal-submit-icon svg { display: block; width: 16px; height: 16px; }
.iv-modal .iv-newsletter-form-wrap input[type="submit"]:hover,
.iv-modal .iv-newsletter-form-wrap button.wpcf7-submit.iv-modal-submit-ready:hover { background-color: var(--iv-orange-hover); }
.iv-modal .wpcf7-not-valid-tip { display: none; }
.iv-modal .wpcf7 form.sent .wpcf7-response-output {
	background: rgba(181,153,114,0.12); border-color: rgba(181,153,114,0.35); color: var(--iv-green);
}
.iv-modal .wpcf7 form.invalid .wpcf7-response-output,
.iv-modal .wpcf7 form.unaccepted .wpcf7-response-output,
.iv-modal .wpcf7 form.failed .wpcf7-response-output {
	background: #fef2f2; border-color: #fecaca; color: #b91c1c;
}
.iv-modal .wpcf7 form .wpcf7-response-output:empty { display: none; padding: 0; border: 0; }

/* =========================================================
 * Footer
 * ========================================================= */
.iv-footer {
	position: relative; overflow: hidden;
	background: var(--iv-green); color: rgba(253,252,251,0.9);
	padding: 4rem 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.iv-footer-glow {
	position: absolute; border-radius: 50%; pointer-events: none; filter: blur(48px);
}
.iv-footer-glow-tr { top: -48px; right: -48px; width: 256px; height: 256px; background: rgba(181,153,114,0.05); }
.iv-footer-glow-bl { bottom: -48px; left: -48px; width: 256px; height: 256px; background: rgba(255,255,255,0.05); }
.iv-footer-inner {
	position: relative; z-index: 1;
	max-width: 1280px; margin: 0 auto;
	display: grid; grid-template-columns: 1fr; gap: 2.5rem;
	padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.iv-footer-tagline { color: rgba(253,252,251,0.7); font-size: 0.875rem; margin: 1rem 0; max-width: 32ch; line-height: 1.65; }
.iv-social-icons { display: flex; gap: 0.75rem; }
.iv-social-icon {
	width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
	display: flex; align-items: center; justify-content: center; color: rgba(253,252,251,0.9);
}
.iv-social-icon:hover { background: var(--iv-orange); color: #fff; }
.iv-footer-links h4, .iv-footer-trust h4, .iv-footer-apps h4 {
	font-size: 0.6875rem; font-family: var(--iv-font-mono); text-transform: uppercase;
	letter-spacing: 0.1em; margin-bottom: 1rem; color: var(--iv-orange); font-weight: 600;
}
.iv-footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.iv-footer-links a { color: rgba(253,252,251,0.8); font-size: 0.875rem; }
.iv-footer-links a:hover { color: var(--iv-orange); }

.iv-trustpilot-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.iv-trustpilot-brand span { font-size: 1.35rem; color: #fff; }
.iv-trustpilot-stars { display: flex; gap: 0.35rem; }
.iv-trustpilot-star {
	width: 32px; height: 32px; background: #00b67a; color: #fff;
	display: flex; align-items: center; justify-content: center;
	border-radius: 2px;
}

.iv-app-badges { display: flex; flex-direction: column; gap: 0.6rem; }
.iv-app-badge {
	display: flex; align-items: center; gap: 0.75rem;
	padding: 0.75rem 1rem; border-radius: var(--iv-radius-lg);
	background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); color: #fff;
}
.iv-app-badge:hover { background: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.2); }
.iv-app-badge-static { cursor: default; text-decoration: none; }
.iv-app-badge-static:hover { background: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.1); }
.iv-app-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.iv-app-badge-eyebrow { font-size: 0.5625rem; text-transform: uppercase; opacity: 0.5; }
.iv-app-badge-title { font-size: 0.8125rem; font-weight: 700; }

.iv-footer-bottom {
	position: relative; z-index: 1;
	max-width: 1280px; margin: 0 auto; padding: 2rem 0;
	text-align: center; font-size: 0.75rem; color: rgba(253,252,251,0.5);
}

/* =========================================================
 * Back-to-top / modal / cookie banner
 * ========================================================= */
.iv-back-to-top {
	position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 45;
	width: 46px; height: 46px; border-radius: 50%; border: none;
	background: var(--iv-green); color: #fff; font-size: 1.2rem;
	box-shadow: 0 6px 16px rgba(15,23,42,0.25);
}

.iv-modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; }
.iv-modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,0.6); }
.iv-modal-panel {
	position: relative; background: #fff; border-radius: var(--iv-radius-lg); padding: 2rem;
	max-width: 420px; width: 90%; text-align: center;
}
.iv-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: none; font-size: 1.4rem; color: rgba(15,23,42,0.5); }
.iv-fine-print { font-size: 0.75rem; color: rgba(15,23,42,0.45); margin-top: 1rem; }

.iv-cookie-banner {
	position: fixed; left: 1rem; bottom: 1rem; z-index: 65; max-width: 360px;
	background: var(--iv-green); color: #fff; border-radius: var(--iv-radius-md);
	padding: 1.25rem; font-size: 0.85rem;
}
.iv-cookie-banner a { color: var(--iv-orange); text-decoration: underline; }
.iv-cookie-actions { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
/* .iv-btn-ghost defaults to dark text/border for light backgrounds — override
   for this banner's dark navy background, or the Dismiss button is invisible. */
.iv-cookie-banner .iv-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }

/* =========================================================
 * Archive (category / search) & 404
 * ========================================================= */
.iv-archive, .iv-search-page { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.iv-back-link {
	display: inline-block; margin-bottom: 0.75rem;
	font-size: 0.75rem; font-family: var(--iv-font-mono); font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em; color: var(--iv-orange);
}
.iv-back-link:hover { color: var(--iv-green); }
.iv-archive-title, .iv-search-title { font-size: 2rem; margin-bottom: 0.5rem; font-weight: 800; }
.iv-search-query { color: var(--iv-orange); font-style: italic; }
.iv-archive-count, .iv-search-count {
	font-size: 0.75rem; font-family: var(--iv-font-mono); color: rgba(15,23,42,0.45); margin-bottom: 2rem;
}
.iv-search-header { border-bottom: 1px solid var(--iv-border); padding-bottom: 1.5rem; margin-bottom: 2rem; }
.iv-search-empty {
	text-align: center; max-width: 640px; margin: 3rem auto; padding: 3rem 2rem;
	background: #fff; border: 1px solid var(--iv-border); border-radius: var(--iv-radius-lg);
}
.iv-search-empty-icon { color: var(--iv-orange); opacity: 0.5; margin: 0 auto 1rem; }
.iv-search-empty h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.iv-search-empty p { font-family: var(--iv-font-display); font-style: italic; color: rgba(15,23,42,0.55); font-size: 0.875rem; line-height: 1.65; }
.iv-404 { text-align: center; padding: 6rem 1.5rem; }
.iv-404 p { color: rgba(15,23,42,0.6); margin: 1rem 0 2rem; }

/* =========================================================
 * Single post
 * ========================================================= */
.iv-single-toolbar { max-width: 1280px; margin: 0 auto; padding: 1.5rem 1.5rem 0; }
.iv-single-layout { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem 4rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.iv-single-sidebar { display: flex; flex-direction: column; gap: 2rem; order: 2; }
.iv-widget {
	background: var(--iv-green-light); border: 1px solid rgba(15,23,42,0.05);
	border-radius: 24px; padding: 1.5rem;
}
.iv-widget-eyebrow {
	display: block; font-size: 0.625rem; font-family: var(--iv-font-mono); font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase; color: var(--iv-orange); margin-bottom: 0.35rem;
}
.iv-widget h4 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.5rem; }
.iv-widget-desc { font-size: 0.75rem; color: rgba(15,23,42,0.7); line-height: 1.6; margin-bottom: 1rem; }
.iv-sidebar-form-wrap form {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: "field" "submit" "status";
	gap: 0.5rem; width: 100%; margin: 0;
}
.iv-sidebar-form-wrap form > p { margin: 0; padding: 0; }
.iv-sidebar-form-wrap form > p:first-of-type { grid-area: field; }
.iv-sidebar-form-wrap form > p:nth-of-type(2) { grid-area: submit; }
.iv-sidebar-form-wrap .wpcf7-response-output {
	grid-area: status; width: 100%; margin: 0; padding: 0.65rem 0.85rem;
	border-radius: 12px; font-size: 0.6875rem; line-height: 1.5; text-align: center;
	border: 1px solid transparent;
}
.iv-widget-newsletter .wpcf7-not-valid-tip { display: none; }
.iv-widget-newsletter .wpcf7 form.sent .wpcf7-response-output {
	background: rgba(181,153,114,0.12); border-color: rgba(181,153,114,0.35); color: var(--iv-green);
}
.iv-widget-newsletter .wpcf7 form.invalid .wpcf7-response-output,
.iv-widget-newsletter .wpcf7 form.unaccepted .wpcf7-response-output,
.iv-widget-newsletter .wpcf7 form.failed .wpcf7-response-output {
	background: #fef2f2; border-color: #fecaca; color: #b91c1c;
}
.iv-widget-newsletter .wpcf7 form .wpcf7-response-output:empty { display: none; padding: 0; border: 0; }
.iv-sidebar-form-wrap input[type="email"],
.iv-sidebar-form-wrap input[type="text"] {
	width: 100%; padding: 0.65rem 1rem; border-radius: 999px;
	border: 1px solid rgba(15,23,42,0.1); background: #fff; font-size: 0.75rem;
}
.iv-sidebar-form-wrap input[type="submit"] {
	width: 100%; padding: 0.65rem 1rem; border-radius: 999px; border: none;
	background: var(--iv-orange); color: #fff; font-weight: 700; font-size: 0.75rem;
}
.iv-widget-fine { font-size: 0.5625rem; color: rgba(15,23,42,0.4); text-align: center; margin-top: 0.75rem; }
.iv-widget-recent-heading {
	display: flex; align-items: center; gap: 0.5rem;
	border-bottom: 1px solid rgba(15,23,42,0.08); padding-bottom: 0.5rem; margin-bottom: 1rem;
}
.iv-widget-recent-heading h4 { margin: 0; font-size: 0.6875rem; font-family: var(--iv-font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.iv-widget-recent-heading svg { color: var(--iv-orange); }
.iv-recent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.iv-recent-card {
	display: flex; align-items: center; gap: 0.75rem;
	background: #fff; border: 1px solid rgba(15,23,42,0.08); border-radius: var(--iv-radius-lg);
	padding: 0.6rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.iv-recent-card:hover { border-color: rgba(181,153,114,0.3); box-shadow: 0 2px 8px rgba(15,23,42,0.06); }
.iv-recent-thumb { flex: 0 0 64px; width: 64px; height: 64px; border-radius: var(--iv-radius-md); overflow: hidden; background: rgba(15,23,42,0.03); }
.iv-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.iv-recent-body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.iv-recent-title { font-size: 0.75rem; font-weight: 600; line-height: 1.35; color: var(--iv-green); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.iv-recent-cat { font-size: 0.5625rem; font-family: var(--iv-font-mono); font-weight: 700; color: var(--iv-orange); text-transform: uppercase; }
.iv-single-content { order: 1; }
.iv-single-title { font-size: 2.1rem; line-height: 1.2; margin: 0.75rem 0; }
.iv-single-byline { color: rgba(15,23,42,0.55); margin-bottom: 1.5rem; }
.iv-single-hero img { width: 100%; border-radius: var(--iv-radius-lg); aspect-ratio: 16/9; object-fit: cover; margin-bottom: 1.75rem; }
.iv-single-body { font-size: 1.05rem; line-height: 1.75; }
.iv-single-body p { margin: 0 0 1.25rem; }
.iv-single-body .article-quote,
.article-quote {
	font-family: var(--iv-font-display);
	font-style: italic;
	border-left: 2px solid var(--iv-orange);
	padding-left: 1.5rem;
	color: var(--iv-green);
}
.iv-author-box {
	display: flex; gap: 1rem; align-items: center; margin-top: 2.5rem;
	padding: 1.5rem; background: var(--iv-green-light); border-radius: var(--iv-radius-lg);
}
.iv-author-avatar { flex-shrink: 0; line-height: 0; }
.iv-author-box img {
	border-radius: 50%; width: 56px; height: 56px; object-fit: cover;
	border: 2px solid rgba(201,124,44,0.25);
}
.iv-author-heading {
	font-family: var(--iv-font-display); font-weight: 700; color: var(--iv-green);
	margin: 0 0 0.35rem; font-size: 0.95rem;
}
.iv-author-name { font-weight: 700; margin: 0 0 0.25rem; }
.iv-author-bio { color: rgba(15,23,42,0.6); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* =========================================================
 * Legal pages
 * ========================================================= */
.iv-legal { max-width: 840px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.iv-legal-title { font-size: 2rem; margin-bottom: 1.5rem; }
.iv-legal-body { line-height: 1.75; color: rgba(15,23,42,0.8); }
.iv-legal-body h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.iv-legal-body p { margin: 0 0 1rem; }

/* =========================================================
 * About page
 * ========================================================= */
.iv-about { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.iv-about-title { font-size: 2.25rem; margin-bottom: 2rem; }
.iv-about-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.iv-about-copy p { line-height: 1.75; margin-bottom: 1.25rem; color: rgba(15,23,42,0.8); }
.iv-dropcap:first-letter {
	font-family: var(--iv-font-display); font-size: 3.5rem; float: left; line-height: 0.8;
	padding-right: 0.5rem; padding-top: 0.3rem; color: var(--iv-orange);
}
.iv-pull-quote { margin: 1.5rem 0; font-size: 1.15rem; }
.iv-about-photo-card { position: relative; border-radius: var(--iv-radius-lg); overflow: hidden; }
.iv-about-photo-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.iv-about-photo-quote {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem;
	background: rgba(15,23,42,0.75); color: #fff; border-radius: var(--iv-radius-md);
	font-family: var(--iv-font-display); font-style: italic; font-size: 0.95rem;
}
.iv-about-philosophy {
	border-left: 3px solid var(--iv-orange); padding-left: 1.75rem;
	max-width: 70ch;
}
.iv-about-philosophy h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.iv-about-philosophy p { color: rgba(15,23,42,0.75); line-height: 1.75; }

/* =========================================================
 * Contact page
 * ========================================================= */
.iv-contact { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.iv-contact-title { font-size: 2.25rem; margin-bottom: 0.75rem; }
.iv-contact-subcopy { color: rgba(15,23,42,0.65); max-width: 60ch; margin-bottom: 2.5rem; }
.iv-contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.iv-contact-photo-card { border-radius: var(--iv-radius-lg); overflow: hidden; }
.iv-contact-photo-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.iv-contact-form-card { background: var(--iv-cream-card); border: 1px solid var(--iv-border); border-radius: var(--iv-radius-lg); padding: 2rem; }
.iv-contact-form-card input, .iv-contact-form-card textarea {
	width: 100%; padding: 0.7rem 1rem; margin-bottom: 1rem; border-radius: var(--iv-radius-md);
	border: 1px solid var(--iv-border); font-family: inherit;
}
.iv-contact-form-card input[type="submit"] { background: var(--iv-orange); color: #fff; border: none; font-weight: 700; width: auto; padding: 0.7rem 1.75rem; }

/* =========================================================
 * Responsive — desktop breakpoint
 * ========================================================= */
@media (min-width: 768px) {
	.iv-desktop-nav { display: flex; }
	.iv-hide-mobile { display: inline-flex; }
	.iv-hide-desktop { display: none; }
	.iv-hero-welcome .iv-hero { padding: 3.5rem; }
	.iv-hero { grid-template-columns: 1fr 1fr; }
	.iv-hero-copy { text-align: left; }
	.iv-journal-grid-3col { grid-template-columns: repeat(3, 1fr); }
	.iv-journal-grid-feature-left { grid-template-columns: 7fr 5fr; }
	.iv-journal-grid-feature-right { grid-template-columns: 5fr 7fr; }
	.iv-journal-thumbs { flex-direction: column; gap: 1.25rem; }
	.iv-card-row-compact .iv-card-media {
		flex: 0 0 112px; width: 112px; height: 112px;
	}
	.iv-card-row-wide {
		flex-direction: row; align-items: center; gap: 1.75rem;
	}
	.iv-card-row-wide .iv-card-media {
		flex: 0 0 224px; width: 224px; height: 144px;
	}
	.iv-card-row-wide .iv-card-media img {
		width: 100%; height: 100%; aspect-ratio: auto;
	}
	.iv-card-row-wide .iv-card-title { font-size: 1.25rem; }
	.iv-card-row-wide .iv-card-excerpt {
		-webkit-line-clamp: 1;
	}
	.iv-single-layout { grid-template-columns: 320px 1fr; }
	.iv-single-sidebar { order: 1; position: sticky; top: 96px; align-self: start; }
	.iv-single-content { order: 2; }
	.iv-about-layout { grid-template-columns: 3fr 2fr; }
	.iv-contact-layout { grid-template-columns: 1fr 1fr; }
	.iv-footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
	.iv-newsletter-inner { padding: 3.5rem 3rem; }
	.iv-newsletter-inner h2 { font-size: 2.25rem; }
	.iv-newsletter-form-wrap form { max-width: 100%; }
}

@media (max-width: 520px) {
	.iv-newsletter-form-wrap form {
		grid-template-columns: 1fr;
		grid-template-areas: "field" "submit" "status";
	}
	.iv-newsletter-form-wrap input[type="submit"] { width: 100%; }
}
