/* ============================================================
   Interior Photo Child — editorial photographer portfolio
   Dark immersive hero, photo-first, monochrome, restrained type.
   References: Focus Kpture, Mike Kelley, Josephine Lochen,
   Stacey Naglie, Anni Graham.
   ============================================================ */

:root {
	--ip-neutral-900: #0f0f0f;
	--ip-neutral-800: #1c1c1c;
	--ip-neutral-700: #2a2a2a;
	--ip-neutral-600: #3d3d3d;
	--ip-neutral-500: #6b6b6b;
	--ip-neutral-400: #9a9a9a;
	--ip-neutral-300: #c9c9c9;
	--ip-neutral-200: #e2e2e2;
	--ip-neutral-100: #f2f2f2;
	--ip-white: #ffffff;
	--ip-max: 78rem;
	--ip-prose: 42rem;
	--ip-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ip-serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
	--ip-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
	--ip-mono: "SF Mono", ui-monospace, "Courier New", monospace;
}

* { box-sizing: border-box; }

body {
	font-family: var(--ip-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* ===== Hero ===== */
.interphoto-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: var(--ip-neutral-900);
	background-size: cover;
	background-position: center;
	min-height: 92vh;
	display: flex;
	align-items: center;
}
.interphoto-hero__video {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.interphoto-hero__overlay {
	z-index: -1;
}
.interphoto-hero__overlay {
	position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(
		to bottom,
		rgba(15, 15, 15, 0.55) 0%,
		rgba(15, 15, 15, 0.35) 35%,
		rgba(15, 15, 15, 0.72) 75%,
		rgba(15, 15, 15, 0.92) 100%
	);
}
.interphoto-hero__inner {
	max-width: var(--ip-max);
	width: 100%;
	margin: 0 auto;
	padding: 8rem 2rem 6rem;
	color: var(--ip-white);
}
.interphoto-eyebrow {
	margin: 0 0 1.75rem;
	font-family: var(--ip-sans);
	font-size: 0.72rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.32em;
	color: var(--ip-neutral-300);
	display: flex;
	align-items: center;
	gap: 0.85rem;
}
.interphoto-eyebrow::before {
	content: "";
	display: inline-block;
	width: 2.5rem;
	height: 1px;
	background: var(--ip-neutral-400);
}
.interphoto-wordreveal {
	max-width: 18ch;
	margin: 0;
	font-family: var(--ip-serif);
	font-size: clamp(2.75rem, 7vw, 5.25rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--ip-white);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
	padding-bottom: 0.18em;
	text-wrap: balance;
}
.interphoto-wordreveal__word > span,
.interphoto-wordreveal__word {
	color: inherit;
	font: inherit;
}
.interphoto-wordreveal__word {
	display: inline-block;
	vertical-align: top;
}
.interphoto-wordreveal__word > span {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.5em);
	transition: opacity 0.7s var(--ip-ease), transform 0.7s var(--ip-ease);
}
.interphoto-wordreveal.is-visible .interphoto-wordreveal__word > span {
	opacity: 1;
	transform: translateY(0);
}
.interphoto-hero__sub {
	max-width: var(--ip-prose);
	margin: 2rem 0 2.5rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ip-neutral-200);
	font-weight: 300;
}
.interphoto-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

/* ===== Buttons ===== */
.interphoto-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.95rem 1.75rem;
	border-radius: 0;
	font-family: var(--ip-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid currentColor;
	transition: background-color 0.3s var(--ip-ease), color 0.3s var(--ip-ease), border-color 0.3s var(--ip-ease), transform 0.15s var(--ip-ease);
}
.interphoto-btn:active { transform: translateY(1px); }
.interphoto-btn--light {
	background: var(--ip-white);
	color: var(--ip-neutral-900);
	border-color: var(--ip-white);
}
.interphoto-btn--light:hover {
	background: transparent;
	color: var(--ip-white);
}
.interphoto-btn--dark {
	background: var(--ip-neutral-900);
	color: var(--ip-white);
	border-color: var(--ip-neutral-900);
}
.interphoto-btn--dark:hover {
	background: transparent;
	color: var(--ip-neutral-900);
	border-color: var(--ip-neutral-900);
}
.interphoto-btn--dark:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ===== Sections ===== */
.interphoto-section {
	max-width: var(--ip-max);
	margin: 0 auto;
	padding: 7rem 2rem;
}
.interphoto-section__title {
	margin: 0 0 4rem;
	font-family: var(--ip-serif);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.1;
	color: var(--ip-neutral-900);
	text-wrap: balance;
}
.interphoto-section__kicker {
	display: block;
	margin-bottom: 1.25rem;
	font-family: var(--ip-sans);
	font-size: 0.72rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.32em;
	color: var(--ip-neutral-500);
}

/* ===== Services — editorial index list ===== */
.interphoto-services {
	border-top: 1px solid var(--ip-neutral-200);
}
.interphoto-services__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: svc;
}
.interphoto-service {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.5rem 2.5rem;
	padding: 2.25rem 0;
	border-bottom: 1px solid var(--ip-neutral-200);
	counter-increment: svc;
	transition: padding 0.4s var(--ip-ease);
}
@media (min-width: 768px) {
	.interphoto-service {
		grid-template-columns: 4rem 1fr 1.4fr;
		gap: 2rem 3rem;
		padding: 2.75rem 0;
	}
}
.interphoto-service:hover {
	padding-left: 1.5rem;
}
.interphoto-service__num {
	font-family: var(--ip-mono);
	font-size: 0.8rem;
	color: var(--ip-neutral-400);
	letter-spacing: 0.1em;
	align-self: start;
	padding-top: 0.5rem;
}
.interphoto-service__num::before {
	content: counter(svc, decimal-leading-zero);
}
.interphoto-service h3 {
	margin: 0;
	font-family: var(--ip-serif);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--ip-neutral-900);
}
.interphoto-service p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--ip-neutral-500);
	font-weight: 300;
	max-width: 32rem;
}

/* ===== Form section — split editorial ===== */
.interphoto-form-section {
	border-top: 1px solid var(--ip-neutral-200);
	background: var(--ip-neutral-100);
	max-width: none;
	padding: 7rem 2rem;
}
.interphoto-form-section__inner {
	max-width: var(--ip-max);
	margin: 0 auto;
	display: grid;
	gap: 4rem;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.interphoto-form-section__inner {
		grid-template-columns: 1fr 1.1fr;
		gap: 6rem;
	}
}
.interphoto-form-section__intro {
	position: sticky;
	top: 2rem;
	align-self: start;
}
.interphoto-form-section__lead {
	margin: 1.5rem 0 0;
	color: var(--ip-neutral-600);
	font-size: 1rem;
	line-height: 1.7;
	font-weight: 300;
	max-width: 28rem;
}

.interphoto-form {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}
.interphoto-form__row {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .interphoto-form__row { grid-template-columns: repeat(2, 1fr); } }

.interphoto-field {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	font-family: var(--ip-sans);
	font-size: 0.72rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--ip-neutral-600);
}
.interphoto-field input,
.interphoto-field select,
.interphoto-field textarea {
	font: inherit;
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	padding: 0.85rem 0;
	border: 0;
	border-bottom: 1px solid var(--ip-neutral-400);
	border-radius: 0;
	background: transparent;
	color: var(--ip-neutral-900);
	transition: border-color 0.2s var(--ip-ease);
}
.interphoto-field input:focus,
.interphoto-field select:focus,
.interphoto-field textarea:focus {
	outline: none;
	border-bottom-color: var(--ip-neutral-900);
}
.interphoto-field textarea { resize: vertical; min-height: 5rem; }
.interphoto-field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230f0f0f' stroke-width='1.5' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: right 0.25rem center;
	padding-right: 1.5rem;
}

.interphoto-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px; height: 1px;
	opacity: 0;
	pointer-events: none;
}

.interphoto-form__error {
	margin: 0;
	padding: 0.85rem 0;
	border-top: 1px solid #b91c1c;
	color: #b91c1c;
	font-size: 0.875rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
}
.interphoto-form__error[hidden] { display: none; }

.interphoto-form-ok {
	padding: 2.5rem 0;
	border-top: 1px solid var(--ip-neutral-900);
	border-bottom: 1px solid var(--ip-neutral-900);
	text-align: left;
}
.interphoto-form-ok[hidden] { display: none; }
.interphoto-form-ok__title {
	margin: 0 0 0.5rem;
	font-family: var(--ip-serif);
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--ip-neutral-900);
}
.interphoto-form-ok__sub {
	margin: 0 0 1.5rem;
	color: var(--ip-neutral-500);
	font-size: 0.95rem;
	font-weight: 300;
}
.interphoto-form-ok__again {
	background: transparent;
	border: 1px solid var(--ip-neutral-400);
	border-radius: 0;
	padding: 0.7rem 1.4rem;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--ip-neutral-700);
	transition: border-color 0.2s var(--ip-ease), color 0.2s var(--ip-ease);
}
.interphoto-form-ok__again:hover { border-color: var(--ip-neutral-900); color: var(--ip-neutral-900); }

/* ===== Reveal + parallax motion hooks ===== */
.interphoto-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--ip-ease), transform 0.8s var(--ip-ease);
}
.interphoto-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.interphoto-parallax { will-change: transform; }

/* ===== 1. Hero grain overlay ===== */
.interphoto-hero::after {
	content: "";
	position: absolute;
	inset: -50%;
	z-index: -1;
	pointer-events: none;
	opacity: 0.08;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
	background-repeat: repeat;
	background-size: 160px 160px;
	animation: ip-grain 6s steps(4) infinite;
}
@keyframes ip-grain {
	0%   { transform: translate(0, 0); }
	25%  { transform: translate(-4%, 3%); }
	50%  { transform: translate(3%, -2%); }
	75%  { transform: translate(-2%, -3%); }
	100% { transform: translate(0, 0); }
}

/* ===== 2. Shiny text sweep on hero h1 ===== */
.interphoto-wordreveal.is-visible .interphoto-wordreveal__word > span {
	background-image: linear-gradient(
		100deg,
		var(--ip-white) 0%,
		var(--ip-white) 40%,
		rgba(255, 255, 255, 0.5) 50%,
		var(--ip-white) 60%,
		var(--ip-white) 100%
	);
	background-size: 200% 100%;
	background-position: 150% 0;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: ip-shine 6s ease-in-out 1s infinite;
}
@keyframes ip-shine {
	0%   { background-position: 150% 0; }
	60%  { background-position: -50% 0; }
	100% { background-position: -50% 0; }
}

/* ===== 3. Image reveal mask (gallery items) ===== */
.interphoto-reveal-mask {
	clip-path: inset(0 0 100% 0);
	transition: clip-path 0.9s var(--ip-ease);
	will-change: clip-path;
}
.interphoto-reveal-mask.is-revealed {
	clip-path: inset(0 0 0 0);
}

/* ===== 4. Scroll-velocity marquee ===== */
.interphoto-marquee {
	overflow: hidden;
	border-top: 1px solid var(--ip-neutral-800);
	border-bottom: 1px solid var(--ip-neutral-800);
	background: var(--ip-neutral-900);
	color: var(--ip-white);
	padding: 2rem 0;
}
.interphoto-marquee__track {
	display: inline-flex;
	white-space: nowrap;
	will-change: transform;
}
.interphoto-marquee__track span {
	font-family: var(--ip-serif);
	font-size: clamp(1.5rem, 3.5vw, 2.5rem);
	font-weight: 500;
	font-style: italic;
	letter-spacing: -0.01em;
	padding: 0 2.5rem;
	opacity: 0.7;
}
.interphoto-marquee__track span::after {
	content: "✦";
	margin-left: 5rem;
	opacity: 0.3;
	font-size: 0.7em;
	font-style: normal;
}

/* ===== 5. Blur-up gallery load ===== */
.modula-item .pic {
	filter: blur(18px) saturate(0.7);
	transition: filter 0.7s var(--ip-ease);
	transform: scale(1.04);
}
.modula-item.is-loaded .pic {
	filter: blur(0) saturate(1);
	transform: scale(1);
}

/* ===== 6. Hero parallax depth layers ===== */
.interphoto-hero__video,
.interphoto-hero__overlay,
.interphoto-hero__inner {
	will-change: transform;
}
.interphoto-hero__inner {
	transform: translate3d(0, 0, 0);
}

/* ===== Preloader ===== */
.interphoto-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--ip-neutral-900);
	color: var(--ip-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s var(--ip-ease);
}
.interphoto-loader.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.interphoto-loader__inner {
	text-align: center;
}
.interphoto-loader__logo {
	width: 120px;
	height: auto;
	margin: 0 auto 1.25rem;
	display: block;
	opacity: 0.92;
}
.interphoto-loader__mark {
	font-family: var(--ip-serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ip-neutral-200);
	margin-bottom: 1.75rem;
}
.interphoto-loader__bar {
	width: 8rem;
	height: 1px;
	margin: 0 auto;
	background: var(--ip-neutral-600);
	overflow: hidden;
}
.interphoto-loader__bar span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--ip-neutral-200);
	animation: ip-loader 1.6s var(--ip-ease) forwards;
}
@keyframes ip-loader {
	0%   { width: 0; }
	60%  { width: 70%; }
	100% { width: 100%; }
}

/* ===== Hero — full-screen start, normal scroll (no slide-over) ===== */
.interphoto-hero {
	min-height: 100vh;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
	.interphoto-wordreveal__word > span,
	.interphoto-reveal {
		transform: none !important;
		transition: none !important;
	}
	.interphoto-reveal { opacity: 1; }
	.interphoto-wordreveal__word { clip-path: inset(0 0 0 0) !important; }
	.interphoto-parallax { will-change: auto; }
	html { scroll-behavior: auto; }
	.interphoto-hero::after { animation: none; }
	.interphoto-wordreveal.is-visible .interphoto-wordreveal__word > span {
		animation: none;
		background-image: none;
		-webkit-text-fill-color: currentColor;
		color: var(--ip-white);
	}
	.interphoto-reveal-mask {
		clip-path: inset(0 0 0 0) !important;
		transition: none !important;
	}
	.interphoto-marquee__track { animation: none !important; }
	.modula-item .pic { filter: none; transform: none; }
	.interphoto-service { transition: none !important; }
}

/* ============================================================
   Override — Aivashstudio merge: Manrope + white/light-green palette
   (hero untouched; sections, marquee, services, form recolored).
   ============================================================ */
:root {
	--ip-green:        #4f7a52;
	--ip-green-deep:    #3f6442;
	--ip-green-soft:    #6b8f6b;
	--ip-paper:         #ffffff;
	--ip-paper-warm:    #f5f7f1;
	--ip-ink:           #1d2a1f;
	--ip-ink-muted:     #5b6b5d;
	--ip-line:          #e3e8df;
	/* Root-cause override: rebind Kadence global bg palettes to warm-paper so
	   the body, site shell, content-bg, header + footer containers all share
	   one surface across every page (no white strips anywhere).
	   !important needed — Kadence emits inline :root{} in <head> AFTER this
	   stylesheet, same specificity, inline would win without !important. */
	--global-palette8:  var(--ip-paper-warm) !important;
	--global-palette9:  var(--ip-paper-warm) !important;
	--global-palette7:  var(--ip-paper-warm) !important;
	/* Kill Kadence blue accents (links, buttons, Modula hover, title underlines)
	   site-wide by rebinding the highlight palette to green. */
	--global-palette1:      var(--ip-green) !important;
	--global-palette2:      var(--ip-green-deep) !important;
	--global-palette11:     var(--ip-green-deep) !important;
	--global-palette12:     var(--ip-green) !important;
	--global-palette-highlight:    var(--ip-green) !important;
	--global-palette-highlight-alt: var(--ip-green-deep) !important;
	--global-palette3:  var(--ip-ink) !important;
	--global-palette4:  var(--ip-ink) !important;
	--global-palette5:  var(--ip-ink-muted) !important;
	--global-palette6:  var(--ip-ink-muted) !important;
}

/* Page hero + content-area padding — root cause of "unnecessary padding"
   on every page (Galleri, Om meg). Shrink the 200px hero + 5rem margins. */
.entry-hero.page-hero-section .entry-header { min-height: 0 !important; }
.entry-hero,
.page-hero-section {
	padding-block: 1.5rem !important;
	background: var(--ip-paper-warm) !important;
}
.content-area { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.entry-content-wrap { padding: 1.5rem !important; background: var(--ip-paper-warm) !important; }

/* Kill the Kadence boxed "white card" + shadow on singular pages
   (Om meg, Galleri) — root cause of white bg sandwiched between warm sections. */
.entry.single-entry,
.entry.loop-entry { box-shadow: none !important; background: var(--ip-paper-warm) !important; }
.entry,
.entry-content,
.entry-content-wrap,
.wp-block-paragraph { background: var(--ip-paper-warm) !important; color: var(--ip-ink) !important; }

/* ===== Modula gallery (Galleri page) — kill plugin blue border + white bg leak ===== */
.modula,
.modula-items,
.modula-item,
.modula-item-content,
.modula-item-overlay,
.figc,
.figc-inner { background: transparent !important; border: none !important; }
.modula-item-overlay { background: rgba(79, 122, 82, 0.35) !important; }
.figc .jtg-title { color: var(--ip-paper) !important; }

/* ===== Header + Footer — vertical centering on the horizontal midline,
   logo/brand LEFT, nav/contact RIGHT, equal top/bottom padding.
   "Centered by the horizontal line" = content sits on the bar's midline,
   NOT horizontally stacked in the middle. ===== */
.site-main-header-inner-wrap,
.site-main-header-wrap .site-main-header-row {
	min-height: 72px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
	gap: 2rem !important;
	align-items: center !important;      /* vertical centering on midline */
	justify-content: space-between !important;  /* brand left, nav right */
	display: flex !important;
}
.site-header-row-layout-contained,
.site-main-header-row { justify-content: space-between !important; }
/* Brand stays left — do NOT margin-inline:auto (that pushes it center). */
.site-branding,
.mobile-site-branding,
.site-branding a.brand,
.mobile-site-branding a.brand {
	margin-inline: 0 !important;
	margin-left: 0 !important;
	text-align: left !important;
	justify-content: flex-start !important;
}

/* Body + site shell = warm-paper everywhere (root-cause, not per-element). */
body,
.content-bg,
body.content-style-unboxed .site,
.wp-site-blocks {
	background: var(--ip-paper-warm) !important;
}

body,
button,
input,
select,
textarea {
	font-family: 'Manrope', var(--ip-sans);
}

/* Light-green darker marquee (was dark). */
.interphoto-marquee {
	background: var(--ip-green-deep);
	color: var(--ip-white);
}
.interphoto-marquee span { color: var(--ip-white); }

/* Section + services = warm paper (same scheme as form section). */
.interphoto-section,
.interphoto-services {
	background: var(--ip-paper-warm);
	color: var(--ip-ink);
}
.interphoto-section__title {
	font-family: 'Manrope', var(--ip-sans);
	font-weight: 300;
	letter-spacing: -0.01em;
	color: var(--ip-green-deep);
}
.interphoto-section__kicker {
	color: var(--ip-green);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.72rem;
}

/* Form section = warm paper. */
.interphoto-form-section {
	background: var(--ip-paper-warm);
	color: var(--ip-ink);
}
.interphoto-form-section__lead { color: var(--ip-ink-muted); }

/* Inputs — clean light surface, consistent. */
.interphoto-field input,
.interphoto-field select,
.interphoto-field textarea,
.interphoto-field {
	background: var(--ip-paper);
	color: var(--ip-ink);
}
.interphoto-field input,
.interphoto-field select,
.interphoto-field textarea {
	border: 1px solid var(--ip-line);
	border-radius: 0.6rem;
	padding: 0.6rem 0.8rem;
	font-size: 1rem;
	line-height: 1.4;
	width: 100%;
	box-sizing: border-box;
}
.interphoto-field textarea { resize: vertical; min-height: 7rem; }
.interphoto-field input::placeholder,
.interphoto-field textarea::placeholder { color: var(--ip-ink-muted); opacity: 1; }
.interphoto-field input:focus,
.interphoto-field select:focus,
.interphoto-field textarea:focus {
	border-color: var(--ip-green);
	outline: none;
	background: var(--ip-paper);
}
.interphoto-field > span {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ip-ink-muted);
}
.interphoto-btn--dark {
	background: var(--ip-green-deep);
	color: var(--ip-white);
}
.interphoto-btn--dark:hover { background: var(--ip-green); }

/* ===== Carousel — product-card style ===== */
.ip-carousel {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0.5rem 0 1.5rem;
	max-width: var(--ip-max);
	margin-inline: auto;
	list-style: none;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.ip-carousel::-webkit-scrollbar { height: 6px; }
.ip-carousel::-webkit-scrollbar-thumb { background: var(--ip-line); border-radius: 3px; }

.ip-card {
	flex: 0 0 320px;
	scroll-snap-align: center;
	background: var(--ip-paper);
	border: 1px solid var(--ip-line);
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--ip-ease) 0.4s, box-shadow var(--ip-ease) 0.4s;
}
.ip-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -24px rgba(31, 42, 31, 0.35);
}

.ip-card__media {
	position: relative;
	height: 180px;
	background-size: cover;
	background-position: center;
	background-color: var(--ip-paper-warm);
}
.ip-card__badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: rgba(31, 42, 31, 0.82);
	color: var(--ip-white);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
}
.ip-card__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.ip-card__title {
	font-family: 'Manrope', var(--ip-sans);
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--ip-green-deep);
	margin: 0 0 0.5rem;
}
.ip-card__blurb {
	font-size: 0.9rem;
	color: var(--ip-ink-muted);
	margin: 0 0 0.9rem;
	line-height: 1.5;
	flex: 1 1 auto;
}
.ip-card__meta {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin: 0 0 1rem;
	padding: 0;
	border-top: 1px solid var(--ip-line);
	padding-top: 0.85rem;
}
.ip-card__meta li {
	display: flex;
	flex-direction: column;
}
.ip-card__meta span {
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ip-ink-muted);
}
.ip-card__meta strong {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ip-ink);
}
.ip-card__price {
	font-family: 'Manrope', var(--ip-sans);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--ip-green-deep);
	margin: 0 0 0.9rem;
}
.ip-card__cta {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ip-white);
	background: var(--ip-green);
	padding: 0.7rem 1rem;
	border-radius: 999px;
	transition: background var(--ip-ease) 0.3s;
}
.ip-card__cta:hover { background: var(--ip-green-deep); color: var(--ip-white) !important; }

/* ===== Logo sizing ===== */
.ip-logo {
	width: 180px;
	height: auto;
	max-height: 64px;
	display: block;
}
.ip-logo-link { display: inline-flex; }

/* ===== Kadence credit row — hidden, Aivashstudio bar replaces it ===== */
.site-bottom-footer-wrap { display: none !important; }

/* ===== Footer bar — brand + contact (unified with main palette) ===== */
/* Footer bar = samme venstrejustering og luft som header */
.ip-footer-bar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 2rem;
	flex-wrap: nowrap;
	width: 100%;
	max-width: none;
	margin: 0;
	min-height: 72px;
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
	padding-inline: max(1.5rem, calc((100% - var(--ip-max, 1290px)) / 2)) !important;
	background: var(--ip-paper-warm);
	border-top: 1px solid var(--ip-line);
	font-family: 'Manrope', var(--ip-sans);
	color: var(--ip-green-deep);
	text-align: left !important;
}
.ip-footer-bar__brand,
.ip-footer-bar__contact {
	margin-inline: 0 !important;
}
/* Brand venstre, kontakt høyre — space-between håndterer separasjon, ikke auto-margin. */
.ip-footer-bar__contact { text-align: right !important; }
.ip-footer-bar__brand {
	display: inline-flex;
	align-items: center;
	gap: 1.5rem;
	text-decoration: none;
	color: var(--ip-green-deep);
}
.ip-footer-bar__logo {
	width: 92px;
	height: auto;
	display: block;
}
.ip-footer-bar__name {
	font-family: 'Manrope', var(--ip-sans);
	font-weight: 300;
	font-size: 1.15rem;
	letter-spacing: -0.01em;
	color: var(--ip-green-deep);
}
.ip-footer-bar__contact {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.ip-footer-bar__link {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	text-decoration: none;
	color: var(--ip-green-deep);
	transition: color var(--ip-ease) 0.25s;
}
.ip-footer-bar__link:hover { color: var(--ip-green); }
.ip-footer-bar__label {
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ip-ink-muted);
}
.ip-footer-bar__value {
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--ip-green-deep);
}

/* ===== Form select — clean product styling (was "rare") ===== */
.interphoto-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234f7a52' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	padding-right: 2.2rem;
	cursor: pointer;
}
.interphoto-field select::-ms-expand { display: none; }
.interphoto-field select option {
	color: var(--ip-ink);
	background: var(--ip-paper);
}

/* ===== Page templates (Om meg, Galleri) — thin titles + paper sections ===== */
.entry-hero,
.page-hero-section {
	/* background: var(--ip-paper) !important; */
	padding-block: 3rem 1.5rem;
}
.entry-hero-container-inner {
	max-width: var(--ip-max);
	margin-inline: auto;
	padding-inline: 1.25rem;
}
.entry-title,
.page-title h1,
h1.entry-title {
	font-family: 'Manrope', var(--ip-sans) !important;
	font-weight: 300 !important;
	letter-spacing: -0.015em;
	color: var(--ip-green-deep) !important;
	font-size: clamp(1.5rem, 3vw, 2rem);
}
.entry-header .entry-title,
.entry-header .interphoto-section__kicker {
	color: var(--ip-green-deep);
}
.entry-content,
.entry-content-wrap,
.content-area,
.single-content {
	background: var(--ip-paper);
	color: var(--ip-ink);
	font-family: 'Manrope', var(--ip-sans);
}
.entry-content p,
.entry-content li {
	color: var(--ip-ink);
	line-height: 1.7;
}
.entry-content h2,
.entry-content h3 {
	font-family: 'Manrope', var(--ip-sans);
	font-weight: 400;
	color: var(--ip-green-deep);
	letter-spacing: -0.01em;
}
.entry-content a {
	color: var(--ip-green);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}
.entry-content a:hover { color: var(--ip-green-deep); }

/* Galleri — keep Modula grid but sit on paper bg */
.modula-gallery,
.modula-best-grid-gallery {
	background: var(--ip-paper-warm);
}

/* ============================================================
   MOBILE OPTIMIZATION — phones (≤768px).
   Hero scale, carousel snap+peek, form stack, footer wrap,
   section padding shrink, touch targets ≥44px, loader scale.
   ============================================================ */
@media (max-width: 768px) {
	/* Hero — shorter, tighter type. */
	.interphoto-hero { min-height: 78vh; }
	.interphoto-hero__inner { padding: 1.25rem; max-width: 100%; }
	.interphoto-wordreveal { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
	.interphoto-hero__sub { font-size: 1rem !important; line-height: 1.5; }
	.interphoto-eyebrow { font-size: 0.8rem !important; }
	.interphoto-hero__cta .interphoto-btn { width: 100%; max-width: 320px; }

	/* Section padding — less on phone. */
	.interphoto-section { padding-block: 2.5rem !important; }
	.interphoto-section__title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
	.interphoto-section__kicker { font-size: 0.75rem !important; }

	/* Marquee — smaller, still smooth. */
	.interphoto-marquee { padding-block: 0.75rem; }
	.interphoto-marquee__track { font-size: 1rem; }

	/* Services carousel — snap one card, peek next. */
	.ip-carousel {
		scroll-snap-type: x mandatory;
		scroll-padding-left: 1.25rem;
		padding-inline: 1.25rem;
		gap: 1rem;
		-webkit-overflow-scrolling: touch;
	}
	.ip-card {
		flex: 0 0 86%;
		max-width: 340px;
		scroll-snap-align: center;
	}
	.ip-card__media { height: 160px; }
	.ip-card__title { font-size: 1.15rem !important; }
	.ip-card__blurb { font-size: 0.9rem !important; }

	/* Form — single column, big touch targets. */
	.interphoto-form-section__inner { padding: 1.25rem; }
	.interphoto-form { gap: 1rem; }
	/* Force stack — Kadence kan overstyre grid til flex-row. */
	.interphoto-form__row {
		display: flex !important;
		flex-direction: column !important;
		gap: 1rem !important;
	}
	.interphoto-field span { font-size: 0.85rem; }
	.interphoto-field input,
	.interphoto-field select,
	.interphoto-field textarea {
		min-height: 48px;
		font-size: 16px; /* iOS no-zoom */
		padding: 0.75rem 0.9rem;
	}
	.interphoto-btn { min-height: 48px; font-size: 1rem; padding-inline: 1.25rem; }

	/* Header — tighter, keep touch target. */
	.site-main-header-inner-wrap,
	.site-main-header-wrap .site-main-header-row {
		min-height: 56px !important;
		padding-top: 0.6rem !important;
		padding-bottom: 0.6rem !important;
		padding-inline: 1rem !important;
		gap: 1rem !important;
	}
	.site-branding a.brand { padding-left: 44px; background-size: auto 32px; }
	.site-branding a.brand .site-title::after { font-size: 1.05rem; }

	/* Footer — stack column, left-align som desktop, full-bleed kept. */
	.ip-footer-bar {
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 0.75rem !important;
		text-align: left !important;
		padding-block: 1rem !important;
		padding-inline: 1.25rem !important;
	}
	.ip-footer-bar__brand,
	.ip-footer-bar__contact {
		margin-inline: 0 !important;
		justify-content: flex-start !important;
		text-align: left !important;
		width: auto !important;
	}
	.ip-footer-bar__contact { flex-direction: column; gap: 0.5rem; }

	/* Loader logo — scale down. */
	.interphoto-loader__logo { width: 96px; }
}

/* Very small phones (≤420px) — tighter. */
@media (max-width: 420px) {
	.interphoto-hero { min-height: 72vh; }
	.interphoto-wordreveal { font-size: 1.6rem !important; }
	.ip-card { flex-basis: 90%; }
	.interphoto-form-section__inner { padding: 1rem; }
	.ip-footer-bar__name { font-size: 0.95rem; }
}

/* ===== Kadence header brand — logo + Aivashstudio wordmark, compact ===== */
/* Kadence renders .site-title text, not get_custom_logo(). Show the logo via a
   CSS background + append "Aivashstudio" wordmark beside it (replaces the
   "interior-photo" site-title text). Shrunk so no extra top room. */
.site-branding a.brand,
.mobile-site-branding a.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	min-height: 44px;
	padding-left: 75px;
	background: url("../logoA.png") no-repeat left center;
	background-size: auto 38px;
	text-decoration: none;
}
.site-branding a.brand .site-title-wrap,
.mobile-site-branding a.brand .site-title-wrap {
	margin: 0;
}
.site-branding a.brand .site-title,
.mobile-site-branding a.brand .site-title {
	font-family: 'Manrope', sans-serif !important;
	font-weight: 300 !important;
	font-size: 0 !important;
	line-height: 1;
	margin: 0;
	color: var(--ip-green-deep) !important;
}
.site-branding a.brand .site-title::after,
.mobile-site-branding a.brand .site-title::after {
	content: "Aivashstudio";
	font-size: 1.25rem;
	font-weight: 300;
	letter-spacing: -0.01em;
	color: var(--ip-green-deep);
}
/* Shrink Kadence header row height — removes the extra top room.
   Warm-paper bg matches form section; equal top/bottom padding, centered.
   #masthead + row-container-inner override Kadence's inline #ffffff (ID specificity). */
#masthead,
#masthead .site-header-row-container-inner,
.site-header,
.site-main-header-wrap {
	background: var(--ip-paper-warm) !important;
}
/* Zero vertical padding on every Kadence header wrapper — root-cause fix.
   Only #masthead carries the symmetric 1rem top/bottom padding. */
.site-header,
#masthead .site-header-row-container-inner,
.site-main-header-wrap,
.site-main-header-inner-wrap,
.site-main-header-wrap .site-main-header-row {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
/* Sticky header — follow scroll, equal top/bottom padding on the box. */
#masthead {
	position: sticky !important;
	top: 0 !important;
	z-index: 999 !important;
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
	box-shadow: 0 1px 0 var(--ip-line, #e3e8df), 0 -1px 0 var(--ip-line, #e3e8df) !important;
}
/* Nav links — match logo wordmark size (1.25rem), thin weight, for readability. */
.main-navigation .primary-menu-container > ul > li.menu-item > a {
	font-size: 1.25rem !important;
	font-weight: 400 !important;
	letter-spacing: -0.01em !important;
	color: var(--ip-ink) !important;
}
.main-navigation .primary-menu-container > ul > li.menu-item > a:hover,
.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a {
	color: var(--ip-green) !important;
}

/* Footer shell — warm-paper bg, full-bleed (no Kadence max-width pinch). */
#colophon,
.site-footer,
.site-footer-wrap,
.site-footer-row-container,
.site-footer-row-container-inner,
.site-bottom-footer-wrap,
.site-footer-row-inner-wrap {
	background: var(--ip-paper-warm) !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

/* ============================================================
   QA overrides (round 2) — kill remaining white leaks,
   warm form fields, hide Kadence credit, header left + centered.
   ============================================================ */

/* Kill Kadence white content strip + hero inner on every page
   (Om meg / Galleri white bg leak). Override palette9/7 consumers directly. */
.content-area,
.content-area .entry-content-wrap,
.entry-content,
.entry-content-wrap,
.content-bg,
.wp-block-post-content,
.entry-hero .entry-hero-container-inner,
.entry-hero.page-hero-section .entry-hero-container-inner,
.entry-hero .entry-hero-container-inner .entry-header,
.entry-hero-layout-contained,
#primary,
.site-main,
.main-content-wrap {
	background: var(--ip-paper-warm) !important;
}

/* Hide default Kadence footer credit ("WordPress Theme by Kadence WP"). */
.site-bottom-footer-inner-wrap .footer-html-inner,
.site-bottom-footer-inner-wrap .footer-html,
.site-info-inner .footer-html-inner,
.site-info-inner .footer-html,
.site-footer .footer-html.widget {
	display: none !important;
}
.site-bottom-footer-wrap,
.site-bottom-footer-inner-wrap {
	background: var(--ip-paper-warm) !important;
	padding: 0 !important;
	min-height: 0 !important;
}

/* Form fields — all inputs warm-paper (not white), consistent border.
   Border on the inputs/select/textarea only, NOT on the .interphoto-field
   label container (no border around the field containers). */
.interphoto-field {
	background: transparent !important;
	border: none !important;
	color: var(--ip-ink) !important;
}
.interphoto-field input,
.interphoto-field select,
.interphoto-field textarea {
	background: var(--ip-paper-warm) !important;
	border: 1px solid var(--ip-line) !important;
	color: var(--ip-ink) !important;
}
.interphoto-field input:focus,
.interphoto-field select:focus,
.interphoto-field textarea:focus {
	background: var(--ip-paper-warm) !important;
	border-color: var(--ip-green) !important;
	outline: none !important;
}

/* ===== Om meg — Editorial 2-column (Vibeke S. Myren inspired, Aivashstudio palette) ===== */
/* Portrait left (sticky), story right. Mobile collapses to single column. */
.ip-about {
	background: var(--ip-paper, #ffffff) !important;
	max-width: 1340px !important;
	margin-inline: auto !important;
	padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) 6rem !important;
	display: grid !important;
	grid-template-columns: minmax(0, 560px) minmax(0, 1fr) !important;
	gap: clamp(2.5rem, 5vw, 5rem) !important;
	align-items: center !important;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	color: #1d2a1f !important;
}

/* Portrait — big, vertically centered in container */
.ip-about__photo {
	width: 100% !important;
	max-width: 560px !important;
	aspect-ratio: 4 / 5 !important;
	object-fit: cover !important;
	border-radius: 3px !important;
	box-shadow: 0 18px 40px -22px rgba(29, 42, 31, 0.45) !important;
	display: block !important;
	justify-self: center !important;
	animation: ip-photo-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

@keyframes ip-photo-in {
	0% {
		opacity: 0;
		transform: translateX(-40px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Respect reduced-motion — skip animation, keep photo visible. */
@media (prefers-reduced-motion: reduce) {
	.ip-about__photo {
		animation: none !important;
		opacity: 1 !important;
	}
}

/* Story column */
.ip-about__body {
	max-width: 620px !important;
	min-width: 0 !important;
}

.ip-about__body h1 {
	font-family: 'Fraunces', Georgia, serif !important;
	font-weight: 500 !important;
	font-size: clamp(1.9rem, 3.2vw, 2.4rem) !important;
	line-height: 1.12 !important;
	letter-spacing: -0.015em !important;
	white-space: nowrap !important;
	color: var(--ip-ink, #1d2a1f) !important;
	margin: 0 0 0.4em !important;
}

/* Lead — italic cred line under H1 (contrast serif vs sans) */
.ip-about__lead {
	font-family: 'Fraunces', Georgia, serif !important;
	font-style: italic !important;
	font-weight: 400 !important;
	font-size: 1.32rem !important;
	line-height: 1.5 !important;
	color: var(--ip-green-deep, #3f6442) !important;
	margin: 0 0 2.2em !important;
	letter-spacing: 0.01em !important;
}

.ip-about__body p {
	font-weight: 400 !important;
	font-size: 1.18rem !important;
	line-height: 1.7 !important;
	letter-spacing: 0.001em !important;
	color: #1d2a1f !important;
	margin: 0 0 1.4em !important;
}

/* Section label (H3) — uppercase tracker with thin rule */
.ip-about__body h3 {
	font-family: 'Manrope', sans-serif !important;
	font-weight: 700 !important;
	font-size: 0.85rem !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	color: var(--ip-green-deep, #3f6442) !important;
	margin: 3em 0 1.2em !important;
	padding-bottom: 0.6em !important;
	border-bottom: 1px solid var(--ip-line, #e3e8df) !important;
}

/* List — clean credentials, bolder */
.ip-about__list {
	margin: 0 0 1.5em !important;
	padding-left: 1.1em !important;
	list-style: none !important;
}
.ip-about__list li {
	position: relative !important;
	margin: 0 0 0.7em !important;
	padding-left: 1.2em !important;
	font-weight: 400 !important;
	font-size: 1.12rem !important;
	line-height: 1.6 !important;
	color: #1d2a1f !important;
}
.ip-about__list li::before {
	content: '—' !important;
	position: absolute !important;
	left: 0 !important;
	color: var(--ip-green, #4f7a52) !important;
}

/* Pull-quote — poetic line (Vibeke "Førsteinntrykket betyr alt") */
.ip-about__body blockquote {
	font-family: 'Fraunces', Georgia, serif !important;
	font-style: italic !important;
	font-weight: 400 !important;
	font-size: clamp(1.5rem, 2.6vw, 1.85rem) !important;
	line-height: 1.4 !important;
	color: var(--ip-green-deep, #3f6442) !important;
	text-align: left !important;
	border: none !important;
	border-left: 3px solid var(--ip-green, #4f7a52) !important;
	margin: 3em 0 !important;
	padding: 0.2em 0 0.2em 1.3em !important;
	letter-spacing: 0.005em !important;
}

/* CTA — high contrast solid button (overrides link styles) */
.ip-about__cta {
	margin-top: 2.5em !important;
}
.ip-about__body .ip-about__btn {
	display: inline-block !important;
	font-family: 'Manrope', sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #ffffff !important;
	background: var(--ip-ink, #1d2a1f) !important;
	border: 2px solid var(--ip-ink, #1d2a1f) !important;
	border-radius: 2px !important;
	padding: 1em 2.6em !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px -10px rgba(29, 42, 31, 0.5) !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
.ip-about__body .ip-about__btn:hover,
.ip-about__body .ip-about__btn:focus {
	background: var(--ip-green-deep, #3f6442) !important;
	border-color: var(--ip-green-deep, #3f6442) !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

/* Links — quiet, ink-on-green hover (excludes CTA button) */
.ip-about__body a:not(.ip-about__btn) {
	color: var(--ip-green, #4f7a52) !important;
	text-decoration: underline !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 3px !important;
}
.ip-about__body a:not(.ip-about__btn):hover {
	color: var(--ip-green-deep, #3f6442) !important;
}

/* Mobile — portrait on top, story below */
@media (max-width: 768px) {
	.ip-about {
		grid-template-columns: 1fr !important;
		gap: 1.8rem !important;
		padding: 2rem 1.25rem 4rem !important;
	}
	.ip-about__photo {
		position: static !important;
		max-width: 300px !important;
		margin-inline: auto !important;
	}
	.ip-about__body blockquote {
		text-align: center !important;
		border-left: none !important;
		border-top: 1px solid var(--ip-line, #e3e8df) !important;
		border-bottom: 1px solid var(--ip-line, #e3e8df) !important;
		padding: 1.2em 0 !important;
	}
}

/* ===== Footer org.nr (non-link, same style as e-post/telefon) ===== */
.ip-footer-bar__link--text {
	cursor: default !important;
}
.ip-footer-bar__link--text:hover {
	text-decoration: none !important;
}