/* ==========================================================================
   INSARA — premium editorial theme
   Mobile-first. Brand tokens → base → layout → header → hero → sections →
   collection → forms → footer → motion → responsive.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
	/* Brand palette */
	--rose:        #C87A6D;
	--rose-deep:   #B16B5A;
	--terracotta:  #B16B5A;
	--gold:        #D59B74;
	--gold-soft:   #E6C4A5;
	/* Accessible warm accents for SMALL text on light (champagne/white) —
	   the soft gold/rose fail AA at small sizes, so tiny captions, eyebrows,
	   labels and asterisks use these deeper tones instead. Decorative lines,
	   borders, large display text and backgrounds keep --gold / --rose. */
	--gold-ink:    #7E5236; /* deep bronze  — ≥5.4:1 on champagne/white */
	--rose-ink:    #9E4A38; /* deep terracotta — ≥5.3:1 on champagne/white */
	--champagne:   #FAEFE5;
	--champagne-2: #F4E6D8;
	--white:       #FDFDFD;

	/* Warm neutrals for text (never pure black) */
	--ink:         #2A211C;
	--ink-2:       #4A413B;
	--ink-3:       #6E635B;
	--line:        #E4D6C8;
	--line-soft:   #EFE4D8;

	/* Roles */
	--bg:          var(--champagne);
	--bg-alt:      var(--white);
	--bg-dark:     #3A2A24; /* deep warm brown for dark editorial bands */

	/* Type */
	--font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
	--font-editorial: "Cinzel", "Cormorant Garamond", Georgia, serif;
	--font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Layout */
	--container: 1300px;
	--container-narrow: 940px;
	--gutter: clamp(1.25rem, 5vw, 4rem);
	--section-y: clamp(3.5rem, 9vw, 8rem);
	--radius: 4px;

	/* Motion */
	--ease: cubic-bezier(.22, .61, .36, 1);
	--dur: .7s;
}

/* ---------- Reset-ish base ---------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink-2);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--rose-ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	font-weight: 500;
	line-height: 1.08;
	margin: 0 0 .5em;
	letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
	outline: 2px solid var(--rose-deep);
	outline-offset: 3px;
}

/* Skip link */
.insara-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 12px 18px;
	z-index: 1000;
	border-radius: 0 0 6px 0;
}
.insara-skip:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------------------------------------------- */
.insara-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.insara-container--narrow { max-width: var(--container-narrow); }

.insara-section { padding-block: var(--section-y); }
.insara-section--tight { padding-block: clamp(2.5rem, 6vw, 5rem); }

.insara-eyebrow {
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0 0 1.2rem;
	display: inline-flex;
	align-items: center;
	gap: .7rem;
}
.insara-eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: var(--gold);
	display: inline-block;
}
.insara-eyebrow--center { justify-content: center; }

.insara-lead {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	color: var(--ink-3);
	max-width: 46ch;
}

/* Display heading sizes */
.insara-h-xl { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.insara-h-lg { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.insara-h-md { font-size: clamp(1.7rem, 3vw, 2.5rem); }

.insara-serif-italic { font-style: italic; }

/* ---------- Buttons ----------------------------------------------------- */
.insara-btn {
	--btn-fg: var(--white);
	--btn-bg: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	font-family: var(--font-body);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: 1.05rem 1.9rem;
	border: 1px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	color: var(--btn-fg);
	background: var(--btn-bg);
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
	line-height: 1;
	min-height: 48px;
	text-align: center;
}
.insara-btn:hover { transform: translateY(-2px); color: var(--btn-fg); }

/* Primary CTA: premium dark-brown with white text (white-on-rose failed AA at
   this small uppercase size, 4.10:1). Warm rose-ink hover still passes (6.0:1). */
.insara-btn--primary { --btn-bg: var(--ink); --btn-fg: #fff; }
.insara-btn--primary:hover { --btn-bg: var(--rose-ink); }

.insara-btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.insara-btn--dark:hover { --btn-bg: var(--rose-ink); }

.insara-btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--ink);
	border-color: var(--ink);
}
.insara-btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; }

.insara-btn--light {
	--btn-bg: transparent;
	--btn-fg: #fff;
	border-color: rgba(255, 255, 255, .55);
}
.insara-btn--light:hover { --btn-bg: #fff; --btn-fg: var(--ink); }

.insara-btn--whatsapp { --btn-bg: #128C7E; --btn-fg: #fff; }
.insara-btn--whatsapp:hover { --btn-bg: #0e6b60; }

.insara-btn--sm { padding: .8rem 1.3rem; min-height: 42px; font-size: .68rem; }

.insara-wa-icon { flex: 0 0 auto; }

/* Text link with arrow */
.insara-arrow-link {
	font-family: var(--font-body);
	font-size: .76rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: .6rem;
}
.insara-arrow-link::after {
	content: "";
	width: 26px;
	height: 1px;
	background: currentColor;
	transition: width .3s var(--ease);
}
.insara-arrow-link:hover { color: var(--rose-ink); }
.insara-arrow-link:hover::after { width: 42px; }

/* ---------- Top bar + header -------------------------------------------- */
.insara-topbar {
	background: var(--ink);
	color: rgba(255, 255, 255, .82);
	font-size: .68rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-align: center;
	padding: .5rem 1rem;
	font-weight: 500;
}

.insara-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--champagne) 88%, transparent);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.insara-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 6px 24px rgba(58, 42, 36, .06);
}

.insara-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 76px;
	padding-block: .5rem;
}

.insara-logo { display: inline-flex; align-items: center; line-height: 0; }
/* Horizontal header lockup (aspect ≈3.9:1) sized by HEIGHT so the header stays
   refined. clamp keeps rendered WIDTH inside the brand target:
   mobile ≈135px wide (35px tall) → desktop ≈175px wide (45px tall). */
.insara-logo img { height: clamp(35px, 3.2vw, 45px); width: auto; max-height: none; }
.insara-logo__text {
	font-family: var(--font-editorial);
	font-size: 1.55rem;
	letter-spacing: .16em;
	color: var(--ink);
	font-weight: 600;
	line-height: 1;
}
.insara-logo__text small {
	display: block;
	font-family: var(--font-body);
	font-size: .5rem;
	letter-spacing: .34em;
	color: var(--rose-ink);
	margin-top: 4px;
	font-weight: 600;
}

.insara-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.insara-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1.2rem, 2.4vw, 2.3rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
.insara-nav__list a {
	font-family: var(--font-body);
	font-size: .76rem;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--ink-2);
	position: relative;
	padding: .4rem 0;
}
.insara-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 1px;
	background: var(--rose-deep);
	transition: width .3s var(--ease);
}
.insara-nav__list a:hover,
.insara-nav__list .current-menu-item > a { color: var(--ink); }
.insara-nav__list a:hover::after,
.insara-nav__list .current-menu-item > a::after { width: 100%; }

.insara-header__cta { display: inline-flex; align-items: center; gap: .75rem; }

.insara-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	color: var(--ink);
	border: 1px solid var(--line);
	background: transparent;
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.insara-icon-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.insara-icon-btn--wa:hover { background: #128C7E; border-color: #128C7E; }

/* Hamburger */
.insara-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.insara-burger span {
	display: block;
	width: 26px; height: 2px;
	background: var(--ink);
	margin-inline: auto;
	transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.insara-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.insara-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.insara-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.insara-mobile-nav {
	position: fixed;
	inset: 0;
	background: var(--champagne);
	z-index: 200;
	transform: translateX(100%);
	transition: transform .4s var(--ease);
	display: flex;
	flex-direction: column;
	padding: 1.25rem var(--gutter) 2rem;
	visibility: hidden;
}
.insara-mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.insara-mobile-nav__top {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 60px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 1.5rem;
}
.insara-mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.insara-mobile-nav__list li { border-bottom: 1px solid var(--line-soft); }
.insara-mobile-nav__list a {
	display: block;
	padding: 1.1rem .2rem;
	font-family: var(--font-display);
	font-size: 1.9rem;
	color: var(--ink);
	letter-spacing: 0;
}
.insara-mobile-nav__list a:hover { color: var(--rose-deep); }
.insara-mobile-nav__foot { margin-top: auto; padding-top: 1.5rem; display: grid; gap: .8rem; }
.insara-mobile-nav__contact { font-size: .8rem; color: var(--ink-3); letter-spacing: .04em; }
.insara-close {
	width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer;
	font-size: 1.6rem; color: var(--ink); line-height: 1;
}

body.insara-nav-open { overflow: hidden; }

/* ---------- Hero -------------------------------------------------------- */
.insara-hero { position: relative; padding-top: clamp(2rem, 5vw, 3.5rem); }
.insara-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: center;
}
.insara-hero__content { max-width: 33ch; }
.insara-hero__heading {
	font-size: clamp(2.7rem, 6.6vw, 5.3rem);
	line-height: 1.02;
	margin-bottom: 1.4rem;
	letter-spacing: -0.015em;
}
.insara-hero__desc {
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	color: var(--ink-3);
	max-width: 40ch;
	margin-bottom: 2rem;
}
.insara-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.insara-hero__media { position: relative; }
.insara-hero__figure {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 2px;
}
.insara-hero__figure img {
	width: 100%; height: 100%; object-fit: cover;
}
.insara-hero__tag {
	position: absolute;
	left: -12px; bottom: 26px;
	background: var(--champagne);
	color: var(--ink);
	padding: .85rem 1.3rem;
	font-family: var(--font-body);
	font-size: .64rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	box-shadow: 0 10px 30px rgba(58, 42, 36, .12);
}
.insara-hero__tag strong { color: var(--rose-ink); }
/* subtle offset gold frame */
.insara-hero__media::after {
	content: "";
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 1px solid var(--gold-soft);
	z-index: -1;
	border-radius: 2px;
}

/* ---------- Positioning / two-column editorial -------------------------- */
.insara-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 5vw, 5rem);
	align-items: center;
}
.insara-split--reverse .insara-split__media { order: -1; }
.insara-split__media {
	position: relative;
	aspect-ratio: 5 / 6;
	overflow: hidden;
	border-radius: 2px;
}
.insara-split__media img { width: 100%; height: 100%; object-fit: cover; }
.insara-split__content { max-width: 42ch; }
.insara-index {
	font-family: var(--font-editorial);
	font-size: .8rem;
	letter-spacing: .3em;
	color: var(--gold-ink);
	display: block;
	margin-bottom: 1rem;
}

/* ---------- New Arrivals / collection cards ----------------------------- */
.insara-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
	flex-wrap: wrap;
}
.insara-section-head__text { max-width: 50ch; }
.insara-section-head h2 { margin-bottom: .4rem; }
.insara-section-head p { color: var(--ink-3); margin: 0; }

.insara-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1rem, 2vw, 1.8rem);
}
.insara-cards--3 { grid-template-columns: repeat(3, 1fr); }

.insara-card-item { position: relative; display: flex; flex-direction: column; }
.insara-card-item__media {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 2px;
	background: var(--champagne-2);
}
.insara-card-item__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.insara-card-item:hover .insara-card-item__media img { transform: scale(1.05); }
.insara-card-item__badge {
	position: absolute;
	top: 12px; left: 12px;
	background: var(--champagne);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: .58rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	padding: .4rem .7rem;
	z-index: 2;
}
.insara-card-item__body { padding: 1rem .1rem 0; }
.insara-card-item__cat {
	font-family: var(--font-body);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-ink);
	margin-bottom: .35rem;
}
.insara-card-item__title {
	font-family: var(--font-display);
	font-size: 1.45rem;
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 .2rem;
}
.insara-card-item__ref { font-size: .72rem; color: var(--ink-3); letter-spacing: .04em; }

/* Card actions sit BELOW the card (never clipped). On devices with a real
   hover they fade in on hover; on touch devices they are always visible. */
.insara-card-item__actions {
	display: flex;
	gap: .5rem;
	margin-top: .8rem;
}
.insara-card-item__actions .insara-btn {
	flex: 1;
	padding: .7rem .6rem;
	min-height: 42px;
	font-size: .62rem;
	letter-spacing: .12em;
}
.insara-card-item__actions .insara-btn--whatsapp { flex: 0 0 auto; padding-inline: .9rem; }
.insara-wa-label { display: none; }

@media (hover: hover) and (pointer: fine) {
	.insara-card-item__actions {
		opacity: 0;
		transform: translateY(6px);
		transition: opacity .3s var(--ease), transform .3s var(--ease);
	}
	.insara-card-item:hover .insara-card-item__actions,
	.insara-card-item:focus-within .insara-card-item__actions { opacity: 1; transform: none; }
}

/* ---------- Who we supply ----------------------------------------------- */
.insara-supply-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(.8rem, 1.5vw, 1.4rem);
	margin-top: clamp(2rem, 4vw, 3rem);
	counter-reset: supply;
}
.insara-supply-card {
	position: relative;
	padding: clamp(1.6rem, 2.5vw, 2.4rem) 1.4rem;
	background: var(--white);
	border: 1px solid var(--line-soft);
	border-radius: 2px;
	min-height: 190px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.insara-supply-card::before {
	counter-increment: supply;
	content: "0" counter(supply);
	font-family: var(--font-editorial);
	font-size: .78rem;
	letter-spacing: .2em;
	color: var(--gold-ink);
	position: absolute;
	top: 1.3rem; left: 1.4rem;
}
.insara-supply-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(58, 42, 36, .08); }
.insara-supply-card h3 {
	font-size: clamp(1.3rem, 1.8vw, 1.7rem);
	margin: 0;
	line-height: 1.1;
}
.insara-supply-card span {
	display: block;
	width: 28px; height: 2px;
	background: var(--rose);
	margin-top: 1rem;
}

/* ---------- Why INSARA -------------------------------------------------- */
.insara-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	margin-top: clamp(2rem, 4vw, 3.5rem);
}
.insara-feature { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.insara-feature__num {
	font-family: var(--font-editorial);
	font-size: .72rem;
	letter-spacing: .2em;
	color: var(--gold-ink);
	display: block;
	margin-bottom: 1rem;
}
.insara-feature h3 {
	font-family: var(--font-body);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0 0 .6rem;
}
.insara-feature p { font-size: .92rem; color: var(--ink-3); margin: 0; }

/* ---------- Location band ----------------------------------------------- */
.insara-band-dark {
	background: var(--bg-dark);
	color: rgba(255, 255, 255, .9);
	position: relative;
	overflow: hidden;
}
.insara-band-dark h2 { color: #fff; }
.insara-band-dark .insara-eyebrow { color: var(--gold-soft); }
.insara-band-dark .insara-eyebrow::before { background: var(--gold); }

.insara-loc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: clamp(2rem, 4vw, 3rem);
}
.insara-loc-item {
	border-left: 1px solid rgba(255, 255, 255, .18);
	padding-left: 1.2rem;
}
.insara-loc-item strong {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 500;
	color: #fff;
	display: block;
	line-height: 1.2;
}

/* ---------- Editorial brand moment -------------------------------------- */
.insara-editorial {
	position: relative;
	min-height: clamp(420px, 62vh, 680px);
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 2px;
}
.insara-editorial__bg { position: absolute; inset: 0; z-index: 0; }
.insara-editorial__bg img { width: 100%; height: 100%; object-fit: cover; }
.insara-editorial__bg::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(42, 33, 28, .72) 0%, rgba(42, 33, 28, .42) 45%, rgba(42, 33, 28, .15) 100%);
}
.insara-editorial__inner { position: relative; z-index: 1; color: #fff; max-width: 34ch; padding: clamp(2rem, 5vw, 4rem); }
.insara-editorial__inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); }
.insara-editorial__inner p { color: rgba(255, 255, 255, .88); margin-bottom: 1.8rem; }
.insara-editorial .insara-eyebrow { color: var(--gold-soft); }
.insara-editorial .insara-eyebrow::before { background: var(--gold-soft); }

/* ---------- Wholesale CTA band ------------------------------------------ */
.insara-cta-band {
	background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
	color: #fff;
	text-align: center;
}
.insara-cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); max-width: 20ch; margin-inline: auto; }
.insara-cta-band p { color: rgba(255, 255, 255, .92); max-width: 52ch; margin: 0 auto 2rem; }
.insara-cta-band__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.insara-cta-band .insara-btn--primary { --btn-bg: #fff; --btn-fg: var(--ink); }
.insara-cta-band .insara-btn--primary:hover { --btn-bg: var(--ink); --btn-fg: #fff; }

/* ---------- Enquiry form ------------------------------------------------ */
.insara-enquiry {
	background: var(--white);
}
.insara-enquiry__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
}
.insara-enquiry__aside { position: relative; }
.insara-enquiry__figure { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.insara-enquiry__figure img { width: 100%; height: 100%; object-fit: cover; }
.insara-enquiry__note { margin-top: 1.4rem; font-size: .86rem; color: var(--ink-3); }
.insara-enquiry__note strong { color: var(--ink); }

.insara-enquiry-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem 1.2rem;
}
.insara-field { display: flex; flex-direction: column; gap: .4rem; }
.insara-col-span-2 { grid-column: 1 / -1; }
.insara-field label {
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink-2);
}
.insara-field .req { color: var(--rose-ink); }
.insara-field input,
.insara-field select,
.insara-field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: .95rem;
	color: var(--ink);
	background: var(--champagne);
	border: 1px solid var(--line);
	border-radius: 2px;
	padding: .85rem .95rem;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
	min-height: 48px;
}
.insara-field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.insara-field input:focus,
.insara-field select:focus,
.insara-field textarea:focus {
	outline: none;
	border-color: var(--rose);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(200, 122, 109, .14);
}
.insara-field input[readonly] { background: var(--champagne-2); color: var(--ink-2); }

.insara-consent label {
	display: flex;
	gap: .7rem;
	align-items: flex-start;
	text-transform: none;
	letter-spacing: normal;
	font-size: .88rem;
	font-weight: 500;
	color: var(--ink-2);
	line-height: 1.5;
	cursor: pointer;
}
.insara-consent input { width: 20px; height: 20px; min-height: 20px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--rose-deep); }

.insara-form-actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; margin-top: .4rem; }

/* Honeypot — visually hidden but not display:none (bots skip display:none) */
.insara-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

.insara-form-feedback {
	grid-column: 1 / -1;
	display: none;
	padding: 1rem 1.2rem;
	border-radius: 2px;
	font-size: .92rem;
	font-weight: 500;
	margin-top: .3rem;
}
.insara-form-feedback.is-success { display: block; background: #e9f5ee; color: #1c6b41; border: 1px solid #bfe3cd; }
.insara-form-feedback.is-error { display: block; background: #fdeceb; color: #a02c28; border: 1px solid #f3c9c6; }
.insara-form-submit.is-loading { opacity: .7; pointer-events: none; }

/* ---------- Collection page --------------------------------------------- */
.insara-page-hero {
	text-align: center;
	padding-block: clamp(3rem, 8vw, 6.5rem) clamp(2rem, 4vw, 3rem);
}
.insara-page-hero .insara-eyebrow { justify-content: center; }
.insara-page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); margin-bottom: 1rem; }
.insara-page-hero p { color: var(--ink-3); max-width: 52ch; margin-inline: auto; }
.insara-page-hero__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

.insara-filters {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	justify-content: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line-soft);
}
.insara-filter {
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink-2);
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 40px;
	padding: .6rem 1.2rem;
	cursor: pointer;
	transition: all .2s var(--ease);
	min-height: 40px;
}
.insara-filter:hover { border-color: var(--rose); color: var(--ink); }
.insara-filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.insara-collection-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1rem, 2vw, 1.8rem);
}
.insara-collection-empty {
	text-align: center;
	padding: 4rem 1rem;
	color: var(--ink-3);
	grid-column: 1 / -1;
}
.insara-card-item.is-hidden { display: none; }

/* ---------- Modal ------------------------------------------------------- */
.insara-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.insara-modal.is-open { display: flex; }
.insara-modal__overlay { position: absolute; inset: 0; background: rgba(42, 33, 28, .55); backdrop-filter: blur(2px); }
.insara-modal__dialog {
	position: relative;
	background: var(--white);
	max-width: 640px;
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
	border-radius: 3px;
	padding: clamp(1.5rem, 3vw, 2.6rem);
	box-shadow: 0 30px 80px rgba(42, 33, 28, .3);
	z-index: 1;
}
.insara-modal__close {
	position: absolute; top: 12px; right: 12px;
	width: 42px; height: 42px;
	border: 0; background: var(--champagne); border-radius: 50%;
	cursor: pointer; font-size: 1.4rem; color: var(--ink); line-height: 1;
}
.insara-modal__head { margin-bottom: 1.4rem; padding-right: 2rem; }
.insara-modal__head h3 { font-size: 1.8rem; margin: 0 0 .3rem; }
.insara-modal__head p { color: var(--ink-3); font-size: .9rem; margin: 0; }

/* ---------- Single collection item -------------------------------------- */
.insara-single {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
}
.insara-single__gallery { display: grid; gap: 1rem; }
.insara-single__main { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.insara-single__main img { width: 100%; height: 100%; object-fit: cover; }
.insara-single__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.insara-single__thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
.insara-single__info { position: sticky; top: 110px; }
.insara-single__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ---------- Footer ------------------------------------------------------ */
.insara-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, .72);
	padding-block: clamp(3rem, 6vw, 5rem) 2rem;
	font-size: .9rem;
}
.insara-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: clamp(2rem, 5vw, 4rem);
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.insara-footer__brand img { height: 84px; max-height: none; width: auto; margin-bottom: 1.2rem; }
.insara-footer__brand .insara-logo__text { color: #fff; }
.insara-footer__brand .insara-logo__text small { color: var(--gold-soft); }
.insara-footer__about { max-width: 40ch; color: rgba(255, 255, 255, .66); line-height: 1.7; }
.insara-footer h4 {
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin: 0 0 1.2rem;
}
.insara-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.insara-footer__links a { color: rgba(255, 255, 255, .78); }
.insara-footer__links a:hover { color: #fff; }
.insara-footer__contact { display: grid; gap: .7rem; }
.insara-footer__contact a { color: rgba(255, 255, 255, .82); }
.insara-footer__contact a:hover { color: #fff; }
.insara-footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.insara-footer__social a {
	width: 40px; height: 40px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255, 255, 255, .22);
	color: #fff;
}
.insara-footer__social a:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.insara-footer__bottom {
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: wrap; gap: 1rem;
	padding-top: 1.8rem;
	font-size: .78rem;
	color: rgba(255, 255, 255, .5);
	letter-spacing: .04em;
}
.insara-footer__service {
	text-align: center;
	font-size: .72rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold-soft);
	padding: 1.4rem 0 0;
}

/* ---------- Floating WhatsApp button ------------------------------------ */
.insara-fab {
	position: fixed;
	right: clamp(1rem, 3vw, 1.6rem);
	bottom: clamp(1rem, 3vw, 1.6rem);
	z-index: 90;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(18, 140, 126, .4);
	transition: transform .25s var(--ease);
}
.insara-fab:hover { transform: scale(1.08); color: #fff; }
.insara-fab svg { width: 28px; height: 28px; }

/* ---------- Reveal animation --------------------------------------------
   Hidden initial states apply ONLY when JS is enabled (html.insara-js), so
   that without JS — or if the reveal observer ever misses — all content and
   images remain fully visible. This makes the motion a true enhancement. */
.insara-js .insara-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
	will-change: opacity, transform;
}
.insara-js .insara-reveal.is-visible { opacity: 1; transform: none; }
.insara-reveal--d1 { transition-delay: .08s; }
.insara-reveal--d2 { transition-delay: .16s; }
.insara-reveal--d3 { transition-delay: .24s; }

/* Image clip reveal */
.insara-js .insara-clip img { transition: transform 1.2s var(--ease), clip-path 1.2s var(--ease); }
.insara-js .insara-clip { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease); }
.insara-js .insara-clip.is-visible { clip-path: inset(0 0 0 0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
	.insara-cards,
	.insara-collection-grid { grid-template-columns: repeat(3, 1fr); }
	.insara-feature-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
	.insara-supply-grid { grid-template-columns: repeat(2, 1fr); }
	.insara-loc-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
}

@media (max-width: 900px) {
	.insara-nav__list { display: none; }
	.insara-header__cta .insara-btn { display: none; }
	.insara-burger { display: flex; }
	.insara-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.insara-hero__content { max-width: none; }
	.insara-hero__media { max-width: 520px; margin-inline: auto; width: 100%; }
	.insara-hero__media::after { inset: 14px -14px -14px 14px; }
	.insara-split { grid-template-columns: 1fr; gap: 2rem; }
	.insara-split--reverse .insara-split__media { order: 0; }
	.insara-split__media { max-width: 520px; }
	.insara-enquiry__grid { grid-template-columns: 1fr; }
	.insara-enquiry__aside { max-width: 480px; }
	.insara-single { grid-template-columns: 1fr; }
	.insara-single__info { position: static; }
	.insara-footer__grid { grid-template-columns: 1fr 1fr; }
	.insara-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
	.insara-cards,
	.insara-cards--3,
	.insara-collection-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.insara-supply-grid { grid-template-columns: repeat(2, 1fr); }
	.insara-enquiry-form { grid-template-columns: 1fr; }
	.insara-section-head { flex-direction: column; align-items: flex-start; }
	.insara-hero__tag { left: 0; }
}

@media (max-width: 460px) {
	.insara-feature-grid { grid-template-columns: 1fr; }
	.insara-loc-grid { grid-template-columns: 1fr; }
	.insara-supply-grid { grid-template-columns: 1fr; }
	.insara-cards,
	.insara-cards--3,
	.insara-collection-grid { grid-template-columns: 1fr 1fr; }
	.insara-footer__grid { grid-template-columns: 1fr; }
	.insara-hero__actions .insara-btn,
	.insara-page-hero__actions .insara-btn { flex: 1 1 100%; }
}

/* ---------- Reduced motion ---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.insara-reveal { opacity: 1 !important; transform: none !important; }
	.insara-clip { clip-path: none !important; }
	.insara-card-item:hover .insara-card-item__media img { transform: none; }
}


/* ==========================================================================
   v1.0.4 — hero + card refinements, media video overlay
   (appended; overrides earlier rules by source order)
   ========================================================================== */

/* Eyebrow: keep on ONE line in the hero and in section heads */
.insara-hero__content .insara-eyebrow,
.insara-section-head .insara-eyebrow { white-space: nowrap; }

/* Hero: remove the narrow content cap that forced the two CTAs to stack, so
   they sit on a single row on desktop/tablet. Heading + desc keep a tidy
   measure of their own. Buttons get slightly tighter padding/tracking. */
.insara-hero__content { max-width: none; }
.insara-hero__heading { max-width: 16ch; }
.insara-hero__desc    { max-width: 42ch; }
.insara-hero__actions .insara-btn {
	white-space: nowrap;
	padding-inline: 1.5rem;
	letter-spacing: .12em;
}

/* Collection + New Arrivals cards: equal-height cards with the action row
   pinned to the bottom, so ENQUIRE / WhatsApp buttons align across every row
   regardless of how many lines the title or category take. */
.insara-card-item__body { display: flex; flex-direction: column; flex: 1 1 auto; }

/* Media video overlay (hero + enquiry). The still image beneath stays as the
   poster/fallback; the muted looping video covers it once uploaded. */
.insara-hero__figure,
.insara-enquiry__figure { position: relative; }
.insara-media-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Small screens: tighten the hero eyebrow so it still fits on one line, and
   let the two CTAs stack full-width. */
@media (max-width: 520px) {
	.insara-hero__content .insara-eyebrow {
		letter-spacing: .16em;
		font-size: .66rem;
		gap: .5rem;
	}
	.insara-hero__content .insara-eyebrow::before { width: 22px; }
	.insara-hero__actions .insara-btn { flex: 1 1 100%; }
}
