/* ======================================================================
   ARUSHA ART LIMITED — SITE STYLES
   ======================================================================

   HOW TO EDIT (no coding knowledge needed)
   ----------------------------------------
   The block just below, called QUICK SETTINGS, holds the colours, fonts
   and sizes used across the whole site. Change a value there and it
   updates everywhere. Everything after QUICK SETTINGS is layout detail
   and can be left alone.

   Colours are written as hex codes, e.g. #222248. You can pick one at
   https://htmlcolorcodes.com and paste it in.
   ==================================================================== */

:root {
	/* ---------- QUICK SETTINGS ---------- */

	/* Brand colours */
	--navy:        #222248;   /* Main brand colour (logo background)         */
	--navy-deep:   #1a1a3a;   /* Slightly darker navy for the footer         */
	--text:        #1f1f3d;   /* Body text on light backgrounds              */
	--text-soft:   #5c5e78;   /* Secondary text (captions, small print)      */
	--bg:          #ffffff;   /* Page background                             */
	--bg-tint:     #f3f3f8;   /* Light panels and placeholders               */
	--line:        #dcdce6;   /* Thin dividing lines                         */
	--accent:      #7f82b8;   /* Subtle highlight (hover lines, focus)       */

	/* Fonts. "Archivo" is loaded from Google Fonts in functions.php.
	   To use a different font, change it there too.                     */
	--font:        "Archivo", "Helvetica Neue", Arial, sans-serif;

	/* Text sizes (rem = relative to 16px). Larger number = bigger text. */
	--size-h1:     clamp(2rem, 1.2rem + 2.4vw, 3.4rem);
	--size-h2:     clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
	--size-h3:     1.2rem;
	--size-body:   1.0625rem;  /* 17px */

	/* Layout */
	--wrap:        1140px;    /* Maximum width of page content              */
	--hero-height: 82vh;      /* Height of the landing banner on the home page */
	--radius:      4px;       /* Corner rounding on buttons and cards       */

	/* Cursor effects — how strong the effects are (0 turns them off) */
	--glow-strength: 0.16;    /* Brightness of the hero glow that follows the cursor */
	--parallax:      14px;    /* How far the hero logo drifts toward the cursor        */

	/* ---------- END OF QUICK SETTINGS ---------- */
}

/* ======================================================================
   BASE
   ==================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: var(--size-body);
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
body.panel-open { overflow: hidden; }
body.admin-bar .site-header { top: 32px; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
/* Headings and links always take the colour of the section they sit in
   (white on navy, navy on white). This overrides any parent-theme colour. */
.aal-site h1, .aal-site h2, .aal-site h3, .aal-site h4, .aal-site h5, .aal-site h6,
.aal-site a, .aal-site p, .aal-site li, .aal-site dt, .aal-site dd { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: var(--size-h1); font-weight: 600; }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }
h4 { font-size: 0.8rem; font-weight: 600; color: var(--text-soft); margin-bottom: 0.6rem; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: #fff; padding: 0.7rem 1rem; }
.skip-link:focus { top: 1rem; }

.wrap { width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section-tight { padding-top: 0; }
.section > h2 { margin-bottom: 1.75rem; }

/* ======================================================================
   BUTTONS AND LINKS
   ==================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 46px; padding: 0.7rem 1.4rem;
	border-radius: var(--radius);
	font-size: 0.95rem; font-weight: 500; text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.15s;
	will-change: transform;
}
.btn-solid { background: var(--navy); color: #fff; }
.btn-solid:hover { background: var(--navy-deep); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-tint); }
.btn-full { width: 100%; }

.link-btn {
	align-self: flex-start;
	font-weight: 500; font-size: 0.95rem; color: var(--navy);
	padding-bottom: 2px; border-bottom: 1.5px solid var(--line);
	transition: border-color 0.2s;
}
.link-btn:hover { border-color: var(--navy); }
.panel-dark .link-btn { color: #fff; }

/* ======================================================================
   HEADER
   ==================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 30;
	height: 80px; padding: 0 clamp(1.25rem, 4vw, 3rem);
	display: flex; align-items: center; justify-content: space-between; gap: 2rem;
	background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-logo img { width: 200px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 2.25rem; }
.site-nav a {
	text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--text-soft);
	padding: 0.35rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a.is-active { color: var(--navy); border-color: var(--navy); }
.site-nav .btn { margin-left: 0.5rem; min-height: 42px; }
.menu-toggle, .mobile-menu { display: none; }

/* ======================================================================
   HOME — LANDING BANNER
   A diagonal composition: two navy panels, a lavender band across them,
   the stacked logo on the left and four round division buttons on the
   right. Shape angles are set by --slant. The glow follows the cursor
   and the logo / band drift toward it (see aal-site.js).
   ==================================================================== */
.landing {
	position: relative; overflow: hidden;
	min-height: var(--hero-height);
	background: var(--bg);
	--mx: 0.5; --my: 0.5;
	--band: #b4b5c9;          /* Colour of the diagonal band */
}
/* The three shapes are drawn as polygons: each pair of numbers is a
   corner (left-to-right position, top-to-bottom position). */
.landing-panel { position: absolute; background: var(--navy); }
.landing-panel-left {
	inset: 10% 0 0 0;
	clip-path: polygon(0 0, 54% 0, 16.5% 100%, 0 100%);
}
.landing-panel-right {
	inset: 10% 0 24% 0;
	clip-path: polygon(57% 0, 100% 0, 82% 100%, 29.5% 100%);
}
.landing-band {
	position: absolute; inset: -4% 0; z-index: 1;
	background: linear-gradient(100deg, var(--band), #c9cadb);
	clip-path: polygon(50% 0, 63% 0, 18% 100%, 5% 100%);
	transform: translate3d(calc(var(--px, 0px) * -0.6), 0, 0);
	transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.landing-band::before {
	/* Soft shadow the band casts on the navy beneath it */
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(20,20,48,0.35), transparent 30%);
}
.landing-glow {
	position: absolute; inset: 0; pointer-events: none; z-index: 1;
	background: radial-gradient(
		circle at calc(var(--mx) * 100%) calc(var(--my) * 100%),
		rgba(255, 255, 255, var(--glow-strength)) 0%,
		rgba(255, 255, 255, 0.04) 20%,
		transparent 45%
	);
	mix-blend-mode: screen;
}
.landing-brand {
	position: absolute; z-index: 2;
	left: 4%; top: 20%; width: 21%;
	display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
	transform: translate3d(var(--px, 0), var(--py, 0), 0);
	transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.landing-logo { width: 100%; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3)); }
.landing-est {
	color: #fff; font-size: clamp(0.8rem, 1.1vw, 1rem); letter-spacing: 0.35em; text-transform: uppercase; font-weight: 500;
}

.landing-menu {
	position: absolute; z-index: 2;
	left: 65%; top: 15%; width: 30%;
	display: flex; flex-direction: column; gap: clamp(0.5rem, 1.4vw, 1.1rem);
}
.landing-item {
	display: flex; align-items: center; gap: clamp(0.8rem, 1.6vw, 1.5rem);
	color: #fff; text-align: left; border-radius: 999px;
	transition: transform 0.2s;
}
.landing-item:hover { transform: translateX(6px); }
.landing-item:focus-visible { outline-offset: 6px; }
.landing-icon {
	flex: none; width: clamp(52px, 5.6vw, 80px); aspect-ratio: 1; border-radius: 50%;
	display: grid; place-items: center;
	background: radial-gradient(circle at 35% 30%, #34346a, var(--navy) 70%);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.18), 0 0 0 1px rgba(255,255,255,0.08);
	transition: box-shadow 0.25s, background 0.25s;
}
.landing-icon img, .landing-icon .icon-fallback { width: 56%; height: 56%; }
.landing-item:hover .landing-icon { box-shadow: 0 12px 26px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25), 0 0 0 2px rgba(255,255,255,0.35); }
.landing-label {
	font-size: clamp(0.85rem, 1.35vw, 1.2rem); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.25;
}
.landing-chevrons {
	position: absolute; z-index: 2; left: 68%; top: 79%; width: 12%; min-width: 120px;
	fill: none; stroke: var(--band); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

/* ======================================================================
   HOME — INTRODUCTION AND DIVISIONS
   ==================================================================== */
.intro { max-width: 760px; }
.intro-text h1 { max-width: 24ch; margin-bottom: 1.4rem; }
.intro-text p { max-width: 62ch; color: var(--text-soft); font-size: 1.1rem; }

/* ======================================================================
   INNER PAGE HEADERS (Automobiles, Service & Parts)
   ==================================================================== */
.page-head { background: var(--navy); color: #fff; padding-block: clamp(3rem, 6vw, 5rem); }
.page-head h1, .page-head h2, .cta-band h2, .panel-dark h2, .site-footer h4, .landing-label { color: #fff; }
.page-head h1 { margin-bottom: 1rem; }
.page-head p { max-width: 64ch; color: #d3d4e6; font-size: 1.1rem; }
.page-head .btn { margin-top: 1.8rem; }

/* ======================================================================
   AUTOMOBILES
   ==================================================================== */
.catalogue-bar { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.note { color: var(--text-soft); font-size: 0.95rem; }
.filters { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filters button {
	padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius);
	font-size: 0.9rem; font-weight: 500; color: var(--text-soft);
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filters button:hover { border-color: var(--navy); color: var(--navy); }
.filters button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vehicle { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.vehicle[hidden] { display: none; }
.vehicle-photo { aspect-ratio: 3 / 2; background: var(--bg-tint); display: grid; place-items: center; position: relative; }
/* Until a real photo is added, the card shows the emblem faintly with a note. */
.photo-pending { display: grid; place-items: center; gap: 0.6rem; }
.photo-pending::before {
	content: ""; width: 96px; height: 60px; opacity: 0.12;
	background: url("../img/logo/arusha-art-emblem-navy.png") center / contain no-repeat;
}
.vehicle-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-pending { color: var(--text-soft); font-size: 0.9rem; }
.vehicle-info { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.vehicle-info p { color: var(--text-soft); font-size: 0.95rem; margin-top: 0.2rem; }
.vehicle-info .link-btn { align-self: flex-start; }

.cta-band {
	margin-top: 3rem; padding: clamp(1.8rem, 4vw, 3rem);
	background: var(--navy); color: #fff; border-radius: var(--radius);
	display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-band p { color: #d3d4e6; margin-top: 0.5rem; }

/* ======================================================================
   SERVICE & PARTS
   ==================================================================== */
/* Workshop services — one card per service with an icon on top */
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.capability { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; background: var(--bg); }
.capability-icon {
	display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.1rem;
	border-radius: 50%; background: var(--navy);
}
.capability-icon img, .capability-icon .icon-fallback { width: 32px; height: 32px; color: #fff; }
.capability h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.capability p { color: var(--text-soft); font-size: 0.95rem; }

/* Brand logos — plain rows, every logo in an identically sized slot.
   --logo-w / --logo-h set the slot size; the logo is scaled to fit. */
.logo-row {
	--logo-w: 128px; --logo-h: 58px;
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; align-items: center;
	gap: 1.5rem clamp(1.25rem, 2.6vw, 2.3rem);
}
.logo-row li { width: var(--logo-w); height: var(--logo-h); display: flex; align-items: center; justify-content: center; }
.logo-row img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.logo-row span { font-weight: 600; color: var(--text-soft); }
.section-tight + .section-tight { padding-top: 0; }

/* ======================================================================
   CONTACT
   ==================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-list { display: grid; gap: 1rem; }
.contact-card {
	display: flex; gap: 1.1rem; align-items: flex-start; text-decoration: none;
	padding: 1.2rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg);
	transition: border-color 0.2s;
}
a.contact-card:hover { border-color: var(--navy); }
.contact-icon { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); }
.contact-icon img, .contact-icon .icon-fallback { width: 26px; height: 26px; color: #fff; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-card p { color: var(--text); }
.contact-card small { display: block; margin-top: 0.3rem; color: var(--text-soft); }
.hours { margin: 0.4rem 0 0; }
.hours div { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.25rem 0; font-size: 0.95rem; }
.hours dt { color: var(--text-soft); }
.hours dd { margin: 0; }
.contact-map { position: sticky; top: 100px; }
.contact-map iframe { display: block; width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; }

/* Icons used as images: dark drawings, turned white on navy backgrounds */
.icon-on-navy img { filter: brightness(0) invert(1); }
.icon-fallback { display: grid; place-items: center; width: 100%; height: 100%; font-weight: 600; }

/* Floating WhatsApp button */
.whatsapp-float {
	position: fixed; z-index: 40; right: 1.25rem; bottom: 1.25rem;
	display: flex; align-items: center; gap: 0.5rem;
	padding: 0.6rem 1rem 0.6rem 0.7rem; border-radius: 999px;
	background: #25d366; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); transition: transform 0.2s;
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float img { width: 26px; height: 26px; }
body.panel-open .whatsapp-float { display: none; }

/* ======================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: var(--navy-deep); color: #fff; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.7fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand img { width: 220px; margin-bottom: 1.2rem; }
.footer-brand p { color: #c3c4da; max-width: 32ch; }
.site-footer h4 { color: #9a9cbd !important; }
.site-footer .dim { color: #9a9cbd; font-size: 0.9rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; }
.footer-social a:hover { border-color: #fff; }
.footer-social img { width: 22px; height: 22px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-links button { color: #fff; font-size: 1rem; }
.footer-links button:hover { text-decoration: underline; }
.footer-base { display: flex; justify-content: space-between; padding: 1.25rem 0; color: #9a9cbd; font-size: 0.85rem; }

/* ======================================================================
   SLIDE-IN PANELS
   ==================================================================== */
.backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(20, 20, 48, 0.55); opacity: 0; transition: opacity 0.25s; }
.backdrop.is-visible { opacity: 1; }
.panel {
	visibility: hidden;
	position: fixed; z-index: 60; top: 0; right: 0; height: 100dvh; width: min(560px, 100%);
	background: var(--bg); padding: clamp(1.5rem, 4vw, 2.5rem); overflow-y: auto;
	transform: translateX(102%); transition: transform 0.3s ease, visibility 0s 0.3s;
	box-shadow: -20px 0 60px rgba(20, 20, 48, 0.18);
}
.panel.is-open { transform: none; visibility: visible; transition: transform 0.3s ease; }
.panel-dark { background: var(--navy); color: #fff; }
.panel-dark p { color: #d3d4e6; font-size: 1.05rem; margin: 1.5rem 0 2rem; }
.panel-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 1.4rem; line-height: 1; }
.panel-dark .close { border-color: rgba(255,255,255,0.3); }
.privacy { padding: 0.9rem 1rem; background: var(--bg-tint); color: var(--text-soft); font-size: 0.9rem; border-radius: var(--radius); margin-bottom: 1.5rem; }

#enquiry-form label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 1.1rem; }
#enquiry-form label span { color: var(--text-soft); font-weight: 400; }
#enquiry-form input, #enquiry-form select, #enquiry-form textarea {
	display: block; width: 100%; margin-top: 0.4rem; padding: 0.75rem 0.9rem;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); outline: 0;
}
#enquiry-form input:focus, #enquiry-form select:focus, #enquiry-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(34,34,72,0.1); }
#enquiry-form input:read-only { background: var(--bg-tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enquiry-review dl { margin: 0; border-top: 1px solid var(--line); }
.enquiry-review dl div { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.enquiry-review dt { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 0.2rem; }
.enquiry-review dd { margin: 0; white-space: pre-wrap; }
.send-note { margin: 1.25rem 0 0.9rem; color: var(--text-soft); font-size: 0.9rem; }
.send-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.send-actions .btn-outline { grid-column: 1 / -1; }
.btn-outline { border: 1px solid var(--line); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); }

.toast {
	position: fixed; z-index: 80; left: 50%; bottom: 1.5rem; transform: translate(-50%, 120px);
	background: var(--navy-deep); color: #fff; padding: 0.8rem 1.1rem; border-radius: var(--radius);
	font-size: 0.9rem; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: transform 0.25s, visibility 0s 0.25s;
	visibility: hidden;
}
.toast.is-visible { transform: translate(-50%, 0); visibility: visible; transition: transform 0.25s; }

/* ======================================================================
   CURSOR-FOLLOWING HIGHLIGHT
   Any element with the data-spot attribute gets a soft light that
   tracks the cursor while hovering (position set in aal-site.js).
   ==================================================================== */
.spot { position: relative; overflow: hidden; }
.spot::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(180px circle at var(--sx, 50%) var(--sy, 50%), rgba(34,34,72,0.07), transparent 70%);
	opacity: 0; transition: opacity 0.25s;
}
.spot:hover::after { opacity: 1; }
.cta-band.spot::after { background: radial-gradient(240px circle at var(--sx, 50%) var(--sy, 50%), rgba(255,255,255,0.14), transparent 70%); }
.spot > * { position: relative; z-index: 1; }

/* ======================================================================
   VIEWS (the three "pages" that swap in place)
   ==================================================================== */
.view { min-height: 60vh; opacity: 1; transform: none; transition: opacity 0.22s ease, transform 0.22s ease; }
.view.is-leaving { opacity: 0; transform: translateY(-10px); }
.view.is-entering { opacity: 0; transform: translateY(14px); transition: none; }

/* ======================================================================
   ACCESSIBILITY — people who prefer less motion
   ==================================================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
	.landing-brand, .landing-band { transform: none !important; }
}

/* ======================================================================
   SMALLER SCREENS
   ==================================================================== */
@media (max-width: 960px) {
	.site-nav { display: none; }
	.menu-toggle {
		display: grid; gap: 6px; align-content: center;
		width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: var(--radius);
	}
	.menu-toggle span { display: block; border-top: 1.5px solid var(--navy); transition: transform 0.2s; }
	.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
	.mobile-menu {
		position: fixed; z-index: 29; top: 80px; left: 0; right: 0;
		background: var(--bg); border-bottom: 1px solid var(--line);
		padding: 0.5rem 1.5rem 1.5rem; flex-direction: column;
		box-shadow: 0 20px 30px rgba(0,0,0,0.08);
	}
	.mobile-menu.is-open { display: flex; }
	.mobile-menu a { padding: 1rem 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 1.1rem; font-weight: 500; }
	.mobile-menu .btn { margin-top: 1rem; }

	.landing-brand { left: 3%; top: 18%; width: 25%; }
	.landing-menu { left: 60%; width: 38%; top: 13%; }
	.landing-chevrons { display: none; }
	.intro, .contact-grid { grid-template-columns: 1fr; }
	.contact-map { position: static; }
	.capability-grid { grid-template-columns: repeat(2, 1fr); }
	.logo-row { --logo-w: 120px; --logo-h: 54px; }
	.vehicle-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	body.admin-bar .site-header { top: 46px; }
	.site-header { height: 68px; padding-inline: 1rem; }
	.site-logo img { width: 160px; }
	.mobile-menu { top: 68px; }
	.wrap { width: calc(100% - 2rem); }
	/* On phones the diagonal composition becomes a simple stacked block. */
	.landing { min-height: 0; background: var(--navy); padding: 2.5rem 1.25rem 2.5rem; }
	.landing-panel, .landing-band, .landing-glow { display: none; }
	.landing-brand { position: static; width: 60%; margin: 0 auto 2rem; transform: none !important; }
	.landing-menu { position: static; width: 100%; gap: 0.9rem; }
	.landing-icon { width: 56px; }
	.landing-label { font-size: 0.9rem; letter-spacing: 0.16em; }
	.capability-grid, .vehicle-grid, .footer-grid { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; gap: 0; }
	.logo-row { --logo-w: 100px; --logo-h: 46px; gap: 1rem 1.5rem; }
	.send-actions { grid-template-columns: 1fr; }
	.whatsapp-float span { display: none; }
	.whatsapp-float { padding: 0.7rem; }
	.footer-base { flex-direction: column; gap: 0.3rem; }
}
