/* =========================================================================
   Arrow Industries — Elementor Widgets
   Shared stylesheet. All layout, spacing and responsiveness lives here so the
   widget PHP stays focused on content + Elementor style controls.
   Everything is scoped under .arrow-* class names to avoid theme collisions.

   PALETTE — matched to the Arrow Surfaces logo:
     Primary (blue)   #1679bf  → --arrow-clay-600  (buttons, links, accents)
     Secondary (gray) #58595b  → --arrow-stone-500 (body / secondary text)
   Neutrals are a cool blue-grey scale (chosen, not defaulted) so they sit
   naturally beside the brand blue; darks use a dark neutral slate.
   ========================================================================= */

:root {
	--arrow-ink: #2c2d2f;         /* dark neutral slate — dark sections + text */
	--arrow-stone-50: #f7f8f9;    /* page background (lightest cool grey) */
	--arrow-stone-100: #eef0f2;   /* section background */
	--arrow-stone-200: #e2e5e8;   /* borders / hairlines */
	--arrow-stone-300: #ccd1d6;   /* muted borders */
	--arrow-stone-400: #9aa0a6;   /* muted text (on dark) */
	--arrow-stone-500: #58595b;   /* secondary / body text — logo secondary */
	--arrow-clay-500: #4a9ed9;    /* light blue accent (on dark) */
	--arrow-clay-600: #1679bf;    /* primary blue — logo primary */
	--arrow-clay-700: #115f97;    /* deep blue (hover / active) */
	--arrow-display: "Fraunces", Georgia, "Times New Roman", serif;
	--arrow-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--arrow-maxw: 88rem; /* 8xl */
	--arrow-radius: 12px;
	--arrow-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Base primitives ---------------------------------------------------- */
.arrow-scope,
.arrow-scope * {
	box-sizing: border-box;
}
.arrow-scope {
	font-family: var(--arrow-sans);
	color: var(--arrow-ink);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
.arrow-container {
	max-width: var(--arrow-maxw);
	margin-inline: auto;
	padding-inline: 20px;
	width: 100%;
}
.arrow-section {
	padding-block: clamp(56px, 8vw, 96px);
}
/* Note: no `height: auto` here on purpose — its (0,1,1) specificity would
   override the single-class object-fit fill rules (hero/story/flagship/
   portfolio) and collapse those images. `auto` is already the initial value. */
.arrow-scope img {
	max-width: 100%;
	display: block;
}
.arrow-scope a {
	text-decoration: none;
	color: inherit;
}

/* Placeholder gradient shown while / if a photo is missing. */
.arrow-ph {
	background: linear-gradient(135deg, #e2e5e8 0%, #ccd1d6 45%, #9aa0a6 100%);
	position: relative;
	overflow: hidden;
}
.arrow-ph::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
	background-size: 14px 14px;
	opacity: 0.5;
	pointer-events: none;
}

/* ---- Typography helpers ------------------------------------------------- */
.arrow-eyebrow {
	display: inline-block;
	color: var(--arrow-clay-700); /* deeper blue meets WCAG AA on light section grounds */
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-size: 12px;
}
.arrow-h1 {
	font-family: var(--arrow-display);
	font-weight: 600;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1.05;
	margin: 0 0 24px;
}
.arrow-h2 {
	font-family: var(--arrow-display);
	font-weight: 600;
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	line-height: 1.15;
	margin: 16px 0 0;
}
.arrow-h1 em,
.arrow-h2 em {
	font-style: italic;
}
.arrow-head--center {
	text-align: center;
	max-width: 42rem;
	margin-inline: auto;
	margin-bottom: 64px;
}
.arrow-head__desc {
	color: var(--arrow-stone-500);
	font-size: 1.125rem;
	margin: 16px 0 0;
}

/* ---- Buttons ------------------------------------------------------------ */
.arrow-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 8px;
	transition: background-color 0.25s var(--arrow-ease), color 0.25s var(--arrow-ease), transform 0.25s var(--arrow-ease);
	cursor: pointer;
	border: 0;
	font-size: 0.95rem;
	line-height: 1;
}
.arrow-btn svg { width: 16px; height: 16px; }
.arrow-btn--primary { background: var(--arrow-clay-600); color: #fff; }
.arrow-btn--primary:hover { background: var(--arrow-clay-700); color: #fff; }
.arrow-btn--ghost {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	backdrop-filter: blur(6px);
}
.arrow-btn--ghost:hover { background: rgba(255, 255, 255, 0.2); }
.arrow-btn--light { background: #fff; color: var(--arrow-clay-700); font-weight: 700; padding: 16px 32px; }
.arrow-btn--light:hover { background: var(--arrow-stone-100); }
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--arrow-ink);
	border-bottom: 2px solid var(--arrow-clay-500);
	padding-bottom: 4px;
	transition: color 0.25s var(--arrow-ease);
}
.arrow-link:hover { color: var(--arrow-clay-600); }
.arrow-link svg { width: 16px; height: 16px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.arrow-announce {
	background: var(--arrow-ink);
	color: var(--arrow-stone-100);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
}
.arrow-announce__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	padding-block: 8px;
}
.arrow-announce__star { color: var(--arrow-clay-500); font-weight: 600; }

.arrow-header {
	background: rgba(247, 248, 249, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--arrow-stone-200);
	transition: box-shadow 0.3s var(--arrow-ease);
}
/* Sticky is opt-in via the header widget's "Sticky header" toggle
   (prefix_class = arrow-header-sticky-). Default template output includes it. */
.arrow-header-sticky-yes .arrow-header {
	position: sticky;
	top: 0;
	z-index: 50;
}
.arrow-header.is-scrolled { box-shadow: 0 4px 20px rgba(44, 45, 47, 0.08); }
.arrow-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
.arrow-brand { display: inline-flex; align-items: center; gap: 12px; }
.arrow-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: var(--arrow-clay-600);
	color: #fff;
	font-family: var(--arrow-display);
	font-weight: 700;
	font-size: 1.125rem;
	transition: background-color 0.25s var(--arrow-ease);
}
.arrow-brand:hover .arrow-brand__mark { background: var(--arrow-clay-700); }
.arrow-brand__text { display: inline-flex; flex-direction: column; line-height: 1.2; }
.arrow-brand__name { font-family: var(--arrow-display); font-weight: 600; font-size: 1.25rem; display: block; line-height: 1.2; }
.arrow-brand__tag { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--arrow-stone-500); }
.arrow-brand__img { max-height: 44px; width: auto; }

.arrow-nav { display: none; align-items: center; gap: 36px; font-size: 0.875rem; font-weight: 500; }
/* WordPress-menu mode outputs a <ul>; custom mode outputs bare <a> — style both. */
.arrow-nav__list { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.arrow-nav a { position: relative; color: rgba(44, 45, 47, 0.82); }
.arrow-nav a:hover { color: var(--arrow-clay-600); }
.arrow-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 0;
	background: var(--arrow-clay-600);
	transition: width 0.3s var(--arrow-ease);
}
.arrow-nav a:hover::after { width: 100%; }

.arrow-header__actions { display: none; align-items: center; gap: 16px; }
.arrow-header__phone { font-size: 0.875rem; font-weight: 600; color: var(--arrow-ink); transition: color 0.25s; }
.arrow-header__phone:hover { color: var(--arrow-clay-600); }
.arrow-header__cta { padding: 10px 20px; font-size: 0.875rem; }

.arrow-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 6px;
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--arrow-ink);
}
.arrow-burger:hover { background: var(--arrow-stone-100); }
.arrow-burger svg { width: 24px; height: 24px; }

.arrow-mobile-menu {
	border-top: 1px solid var(--arrow-stone-200);
	background: var(--arrow-stone-50);
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s var(--arrow-ease);
}
.arrow-mobile-menu.is-open { max-height: 85vh; overflow-y: auto; }
.arrow-mobile-menu nav { display: flex; flex-direction: column; padding: 16px 20px; }
.arrow-mobile-menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.arrow-mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--arrow-stone-100); font-weight: 500; }
.arrow-mobile-menu__list li:last-child a { border-bottom: 0; }
.arrow-mobile-menu .arrow-btn { margin-top: 12px; justify-content: center; border-bottom: 0; }

@media (min-width: 1024px) {
	/* .arrow-scope scope + !important beat theme/Elementor button & nav resets
	   (e.g. `button { display: block }`) that otherwise leave the burger visible
	   on desktop. */
	.arrow-scope .arrow-nav { display: flex !important; }
	.arrow-scope .arrow-header__actions { display: flex !important; }
	.arrow-scope .arrow-burger { display: none !important; }
	.arrow-scope .arrow-mobile-menu { display: none !important; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.arrow-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
}
.arrow-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arrow-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(19, 33, 44, 0.62) 0%, rgba(19, 33, 44, 0.4) 35%, rgba(19, 33, 44, 0.8) 100%);
}
.arrow-hero__inner { position: relative; width: 100%; }
.arrow-hero__content { max-width: 40rem; color: #fff; padding-block: 96px; }
.arrow-hero .arrow-eyebrow { color: var(--arrow-clay-500); margin-bottom: 20px; }
.arrow-hero__content .arrow-h1 { color: #fff; }
.arrow-hero__content .arrow-h1 em { color: #bfe0f5; }
.arrow-hero__lead {
	color: rgba(240, 244, 247, 0.92);
	font-size: 1.125rem;
	line-height: 1.7;
	margin: 0 0 32px;
	max-width: 36rem;
}
.arrow-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.arrow-hero__scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.7);
	animation: arrow-bounce 1.6s infinite;
	display: none;
}
.arrow-hero__scroll:hover { color: #fff; }
.arrow-hero__scroll svg { width: 28px; height: 28px; }
@keyframes arrow-bounce {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 8px); }
}
@media (min-width: 640px) { .arrow-hero__scroll { display: block; } }

/* =========================================================================
   STATS
   ========================================================================= */
.arrow-stats { background: var(--arrow-ink); color: var(--arrow-stone-100); }
.arrow-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	text-align: center;
	padding-block: 48px;
}
.arrow-stat__num { font-family: var(--arrow-display); font-weight: 600; font-size: 2.25rem; color: #fff; }
.arrow-stat__label { color: var(--arrow-stone-400); font-size: 0.875rem; margin-top: 4px; letter-spacing: 0.03em; text-transform: uppercase; }
@media (min-width: 1024px) { .arrow-stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================================
   INTRO / WHO WE ARE
   ========================================================================= */
.arrow-intro__grid { display: grid; gap: 56px; align-items: center; }
.arrow-intro__body p { color: var(--arrow-stone-500); line-height: 1.7; margin: 0 0 20px; }
.arrow-intro__body p.is-lead { font-size: 1.125rem; }
.arrow-intro__media { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.arrow-intro__media .arrow-ph { border-radius: var(--arrow-radius); aspect-ratio: 3 / 4; }
.arrow-intro__media .arrow-ph:first-child { margin-top: 32px; }
.arrow-intro__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .arrow-intro__grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   PRODUCTS
   ========================================================================= */
.arrow-products { background: var(--arrow-stone-100); }
.arrow-products__flagships { display: grid; gap: 24px; margin-bottom: 24px; }
.arrow-flagship {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	min-height: 340px; /* keeps room for the text on narrow/mobile widths */
}
.arrow-flagship img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--arrow-ease); }
.arrow-flagship:hover img { transform: scale(1.05); }
/* Stronger, taller scrim so the heading + copy stay readable over any photo. */
.arrow-flagship__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 34, 43, 0.94) 0%, rgba(23, 34, 43, 0.82) 32%, rgba(23, 34, 43, 0.52) 62%, rgba(23, 34, 43, 0.15) 100%); }
.arrow-flagship__body { position: absolute; bottom: 0; padding: 32px; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4); }
.arrow-flagship__body h3 { font-family: var(--arrow-display); font-weight: 600; font-size: 1.5rem; margin: 0 0 8px; color: #fff; }
.arrow-flagship__body p { color: var(--arrow-stone-100); margin: 0 0 16px; max-width: 24rem; }
.arrow-flagship__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--arrow-clay-500); }
.arrow-flagship__link svg { width: 16px; height: 16px; }

.arrow-products__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.arrow-pcard {
	background: var(--arrow-stone-50);
	border-radius: var(--arrow-radius);
	padding: 28px;
	border: 1px solid var(--arrow-stone-200);
	transition: box-shadow 0.3s var(--arrow-ease), transform 0.3s var(--arrow-ease);
}
.arrow-pcard:hover { box-shadow: 0 12px 28px rgba(44, 45, 47, 0.1); transform: translateY(-4px); }
.arrow-pcard__swatch { width: 48px; height: 48px; border-radius: 8px; margin-bottom: 20px; box-shadow: inset 0 0 0 1px var(--arrow-stone-300); }
.arrow-pcard__icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	margin-bottom: 20px;
	background: rgba(22, 121, 191, 0.1);
	color: var(--arrow-clay-600);
	display: flex;
	align-items: center;
	justify-content: center;
}
.arrow-pcard__icon svg { width: 26px; height: 26px; }
.arrow-pcard h4 { font-family: var(--arrow-display); font-weight: 600; font-size: 1.25rem; margin: 0 0 8px; }
.arrow-pcard p { color: var(--arrow-stone-500); font-size: 0.875rem; line-height: 1.6; margin: 0; }
.arrow-swatch--1 { background: linear-gradient(135deg, #eef0f2, #ccd1d6); }
.arrow-swatch--2 { background: linear-gradient(135deg, #cfe3f4, #7fb6df); }
.arrow-swatch--3 { background: linear-gradient(135deg, #2c2d2f, #494b4f); }
@media (min-width: 768px) { .arrow-products__flagships { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .arrow-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .arrow-products__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================================
   STORY / ABOUT
   ========================================================================= */
.arrow-story { position: relative; }
.arrow-story__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arrow-story__overlay { position: absolute; inset: 0; background: rgba(23, 34, 43, 0.86); }
.arrow-story__inner { position: relative; }
.arrow-story__content { max-width: 48rem; color: #fff; }
.arrow-story .arrow-eyebrow { color: var(--arrow-clay-500); }
.arrow-story__content .arrow-h2 { color: #fff; }
.arrow-story__content p { line-height: 1.7; margin: 20px 0 0; }
.arrow-story__lead { color: var(--arrow-stone-200); font-size: 1.125rem; }
.arrow-story__sub { color: var(--arrow-stone-300); }
.arrow-story__callouts { display: grid; gap: 24px; margin-top: 40px; }
.arrow-callout { border-left: 2px solid var(--arrow-clay-500); padding-left: 16px; }
.arrow-callout__title { font-weight: 600; color: #fff; margin-bottom: 4px; }
.arrow-callout p { color: var(--arrow-stone-400); font-size: 0.875rem; margin: 0; }
@media (min-width: 640px) { .arrow-story__callouts { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================================
   WHY ARROW
   ========================================================================= */
.arrow-why__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.arrow-feature__icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: rgba(22, 121, 191, 0.1);
	color: var(--arrow-clay-600);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.arrow-feature__icon svg { width: 24px; height: 24px; }
.arrow-feature h4 { font-family: var(--arrow-display); font-weight: 600; font-size: 1.125rem; margin: 0 0 8px; }
.arrow-feature p { color: var(--arrow-stone-500); font-size: 0.875rem; line-height: 1.6; margin: 0; }
@media (min-width: 640px) { .arrow-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .arrow-why__grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================================
   PORTFOLIO
   ========================================================================= */
.arrow-portfolio { background: var(--arrow-stone-100); }
.arrow-portfolio__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.arrow-portfolio__head .arrow-h2 { margin-top: 16px; }
.arrow-portfolio__intro { color: var(--arrow-stone-500); max-width: 24rem; }
.arrow-portfolio__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.arrow-portfolio__item {
	position: relative;
	border-radius: var(--arrow-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--arrow-stone-200);
}
/* Absolute fill: the image always covers the whole tile (uniform crop) no matter
   its own dimensions, and the tile's height comes from the grid — so the tall
   tile spans two rows correctly instead of collapsing to the image height. */
.arrow-portfolio__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--arrow-ease); }
.arrow-portfolio__item:hover img { transform: scale(1.05); }
@media (min-width: 640px) { .arrow-portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
	.arrow-portfolio__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
	.arrow-portfolio__item--tall { grid-row: span 2; aspect-ratio: auto; }
}

/* =========================================================================
   PROCESS
   ========================================================================= */
.arrow-process__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.arrow-step__num { font-family: var(--arrow-display); font-weight: 700; font-size: 3rem; color: #bcdcf1; margin-bottom: 12px; line-height: 1; }
.arrow-step h4 { font-family: var(--arrow-display); font-weight: 600; font-size: 1.125rem; margin: 0 0 8px; }
.arrow-step p { color: var(--arrow-stone-500); font-size: 0.875rem; line-height: 1.6; margin: 0; }
@media (min-width: 768px) { .arrow-process__grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.arrow-cta { background: var(--arrow-clay-600); }
.arrow-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-block: 64px;
	text-align: center;
}
.arrow-cta__title { font-family: var(--arrow-display); font-weight: 600; font-size: clamp(1.75rem, 3.5vw, 2.25rem); color: #fff; margin: 0 0 8px; }
.arrow-cta__sub { color: rgba(255, 255, 255, 0.9); font-size: 1.125rem; margin: 0; }
@media (min-width: 1024px) { .arrow-cta__inner { flex-direction: row; text-align: left; } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.arrow-contact__grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
.arrow-contact__lead { color: var(--arrow-stone-500); font-size: 1.125rem; line-height: 1.7; margin: 24px 0 40px; }
.arrow-contact__info { display: flex; flex-direction: column; gap: 24px; }
.arrow-info-row { display: flex; align-items: flex-start; gap: 16px; }
.arrow-info-row__icon {
	width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
	background: rgba(22, 121, 191, 0.1); color: var(--arrow-clay-600);
	display: flex; align-items: center; justify-content: center;
}
.arrow-info-row__icon svg { width: 20px; height: 20px; }
.arrow-info-row__label { font-weight: 600; }
.arrow-info-row a, .arrow-info-row p { color: var(--arrow-stone-500); margin: 0; }
.arrow-info-row a:hover { color: var(--arrow-clay-600); }

.arrow-form {
	background: var(--arrow-stone-50);
	border: 1px solid var(--arrow-stone-200);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(44, 45, 47, 0.06);
}
.arrow-form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.arrow-field { margin-top: 20px; }
.arrow-form__row + .arrow-field { margin-top: 20px; }
.arrow-field:first-child, .arrow-form__row:first-child { margin-top: 0; }
.arrow-field label, .arrow-form__row label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.arrow-input {
	width: 100%;
	border-radius: 8px;
	border: 1px solid var(--arrow-stone-300);
	background: #fff;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--arrow-ink);
	transition: border-color 0.2s, box-shadow 0.2s;
}
.arrow-input:focus {
	outline: none;
	border-color: var(--arrow-clay-500);
	box-shadow: 0 0 0 3px rgba(22, 121, 191, 0.25);
}
textarea.arrow-input { resize: vertical; min-height: 120px; }
.arrow-form .arrow-btn { margin-top: 24px; width: 100%; justify-content: center; }
.arrow-form__msg { margin-top: 16px; text-align: center; font-size: 0.875rem; font-weight: 600; }
.arrow-form__msg.is-ok { color: var(--arrow-clay-700); }
.arrow-form__msg.is-err { color: #b3261e; }
.arrow-form.is-busy { opacity: 0.7; pointer-events: none; }
/* Honeypot: kept in the DOM (bots fill it) but off-screen for humans + AT. */
.arrow-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (min-width: 640px) { .arrow-form__row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .arrow-contact__grid { grid-template-columns: 1fr 1fr; } }

/* Contact Form 7 forms inherit the built-in form's field styling so a CF7
   embed looks native to the section. */
.arrow-form--cf7 p { margin: 0 0 16px; }
.arrow-form--cf7 label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.arrow-form--cf7 input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.arrow-form--cf7 textarea,
.arrow-form--cf7 select {
	width: 100%;
	border-radius: 8px;
	border: 1px solid var(--arrow-stone-300);
	background: #fff;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--arrow-ink);
	transition: border-color 0.2s, box-shadow 0.2s;
}
.arrow-form--cf7 input:focus, .arrow-form--cf7 textarea:focus, .arrow-form--cf7 select:focus {
	outline: none;
	border-color: var(--arrow-clay-500);
	box-shadow: 0 0 0 3px rgba(22, 121, 191, 0.25);
}
.arrow-form--cf7 textarea { resize: vertical; min-height: 120px; }
.arrow-form--cf7 input[type="submit"] {
	background: var(--arrow-clay-600);
	color: #fff;
	font-weight: 600;
	padding: 14px 28px;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background-color 0.25s var(--arrow-ease);
}
.arrow-form--cf7 input[type="submit"]:hover { background: var(--arrow-clay-700); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.arrow-footer { background: var(--arrow-ink); color: var(--arrow-stone-300); }
.arrow-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-block: 64px; }
.arrow-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.arrow-footer__brand-link { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.arrow-footer__brand .arrow-brand__mark { background: var(--arrow-clay-600); color: #fff; }
.arrow-footer__brand-name { font-family: var(--arrow-display); font-weight: 600; font-size: 1.25rem; color: #fff; }
.arrow-footer__brand-link .arrow-brand__img { max-height: 48px; }
.arrow-footer__about { color: var(--arrow-stone-400); font-size: 0.875rem; line-height: 1.6; margin: 0; }
.arrow-footer h5 { color: #fff; font-weight: 600; margin: 0 0 16px; font-size: 1rem; }
.arrow-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.arrow-footer li, .arrow-footer li a { color: var(--arrow-stone-400); font-size: 0.875rem; }
.arrow-footer li a:hover { color: var(--arrow-clay-500); }
.arrow-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.arrow-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-block: 24px;
	font-size: 0.875rem;
	color: var(--arrow-stone-400);
	text-align: center;
}
@media (min-width: 640px) {
	.arrow-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.arrow-footer__bottom-inner { flex-direction: row; text-align: left; }
}
@media (min-width: 1024px) { .arrow-footer__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---- Reveal-on-scroll (progressive enhancement) -------------------------
   RELIABILITY: content is visible by default. The hidden-then-reveal state is
   gated behind `.arrow-js`, which the script adds to <html> the moment it runs.
   So if the JS fails to load or errors, nothing is ever hidden — the section
   simply shows without animation, instead of vanishing. */
.arrow-js .arrow-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--arrow-ease), transform 0.7s var(--arrow-ease); }
.arrow-js .arrow-reveal.is-visible { opacity: 1; transform: none; }
/* Never hide content inside the Elementor editor. */
.elementor-editor-active .arrow-reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.arrow-js .arrow-reveal { opacity: 1 !important; transform: none !important; transition: none; }
	.arrow-hero__scroll { animation: none; }
}

/* =========================================================================
   ELEMENTOR CONTAINER INTEGRATION — full-width, edge-to-edge sections
   -------------------------------------------------------------------------
   Arrow widgets are full-bleed sections (their inner .arrow-container keeps the
   content at a readable width). Inside an Elementor flexbox container a widget
   can shrink to its content width (if the container isn't align-items:stretch)
   and the container's default 10px padding stops it reaching the screen edges.
   These rules make every Arrow section fill its container and the container go
   edge-to-edge, regardless of how the container was configured.
   ========================================================================= */
.elementor-widget-arrow-header,
.elementor-widget-arrow-hero,
.elementor-widget-arrow-stats,
.elementor-widget-arrow-intro,
.elementor-widget-arrow-products,
.elementor-widget-arrow-story,
.elementor-widget-arrow-why,
.elementor-widget-arrow-portfolio,
.elementor-widget-arrow-process,
.elementor-widget-arrow-cta,
.elementor-widget-arrow-contact,
.elementor-widget-arrow-footer {
	width: 100% !important;
	max-width: 100% !important;
	align-self: stretch !important;
}
.e-con:has(> .elementor-widget-arrow-header),
.e-con:has(> .elementor-widget-arrow-hero),
.e-con:has(> .elementor-widget-arrow-stats),
.e-con:has(> .elementor-widget-arrow-intro),
.e-con:has(> .elementor-widget-arrow-products),
.e-con:has(> .elementor-widget-arrow-story),
.e-con:has(> .elementor-widget-arrow-why),
.e-con:has(> .elementor-widget-arrow-portfolio),
.e-con:has(> .elementor-widget-arrow-process),
.e-con:has(> .elementor-widget-arrow-cta),
.e-con:has(> .elementor-widget-arrow-contact),
.e-con:has(> .elementor-widget-arrow-footer) {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	--padding-inline-start: 0px;
	--padding-inline-end: 0px;
}
