/* ==========================================================================
   WABAR — هوم بيدج ٢ (مقترح 2026-07-28)
   Standalone editorial redesign. Loaded ONLY on page-home-v2.php (the theme
   CSS is dequeued there), so everything here is self-contained: fonts,
   reset, tokens, sections, header/footer — nothing leaks site-wide.
   ========================================================================== */

@font-face{font-family:'IBM Plex Sans Arabic';src:url('../fonts/ibm-plex-arabic-400.woff2') format('woff2');font-weight:300 400;font-display:swap;}
@font-face{font-family:'IBM Plex Sans Arabic';src:url('../fonts/ibm-plex-arabic-500.woff2') format('woff2');font-weight:500;font-display:swap;}
@font-face{font-family:'IBM Plex Sans Arabic';src:url('../fonts/ibm-plex-arabic-600.woff2') format('woff2');font-weight:600;font-display:swap;}
@font-face{font-family:'IBM Plex Sans Arabic';src:url('../fonts/ibm-plex-arabic-700.woff2') format('woff2');font-weight:700 900;font-display:swap;}

:root{
	--v2-dark:#102a38;        /* warm near-black (sections + header/footer) */
	--v2-darker:#0b1f2a;
	--v2-cream:#f8f5ef;       /* page background */
	--v2-cream-deep:#ece5d6;
	--v2-ink:#102a38;         /* text on cream */
	--v2-ink-soft:rgba(16,42,56,.62);
	--v2-sand:#e7decb;        /* brand cream — accents on dark */
	--v2-sand-soft:rgba(231,222,203,.62);
	--v2-brown:#173f53;       /* brand brown */
	--v2-brown-light:#c79a4a; /* emphasis on dark */
	--v2-gold:#c79a4a;        /* golden sand — free-standing icons on dark */
	--v2-rust:#173f53;        /* announcement bar */
	--v2-line-dark:rgba(231,222,203,.16);
	--v2-line-cream:rgba(16,42,56,.14);
	--v2-gutter:clamp(20px,5vw,72px);
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body.wabar-v2{
	font-family:'IBM Plex Sans Arabic',system-ui,sans-serif;
	background:var(--v2-cream);color:var(--v2-ink);
	direction:rtl;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;
	overflow-x:hidden;
}
/* :where() keeps these resets at zero specificity so single-class rules
   (.v2-btn-solid etc.) can override them — the theme's a{color:inherit}
   gotcha, avoided from the start here. */
:where(body.wabar-v2 img){max-width:100%;display:block;}
:where(body.wabar-v2 a){color:inherit;text-decoration:none;}
:where(body.wabar-v2 button){font-family:inherit;background:none;border:0;cursor:pointer;color:inherit;}

/* ---------- shared atoms ---------- */
.v2-eyebrow{
	display:flex;align-items:center;gap:12px;
	font-size:12.5px;font-weight:600;letter-spacing:.4px;color:var(--v2-brown);
	margin-bottom:18px;
}
.v2-eyebrow i{display:inline-block;width:34px;height:1px;background:currentColor;opacity:.7;}
.v2-index{
	display:block;font-size:12px;font-weight:600;letter-spacing:.6px;
	color:var(--v2-ink-soft);margin-bottom:26px;
}
.v2-index-light{color:var(--v2-sand-soft);}
.v2-title{font-size:clamp(34px,4.6vw,58px);font-weight:800;line-height:1.2;letter-spacing:-.5px;}
.v2-link{
	display:inline-flex;align-items:center;gap:9px;font-size:14px;font-weight:700;
	border:1px solid var(--v2-line-cream);border-radius:999px;padding:11px 22px;
	transition:background .25s,color .25s,border-color .25s;
}
.v2-link span{transition:transform .25s;}
.v2-link:hover{background:var(--v2-ink);color:var(--v2-cream);border-color:var(--v2-ink);}
.v2-link:hover span{transform:translateX(-4px);}
.v2-btn{
	display:inline-flex;align-items:center;gap:10px;
	font-size:15px;font-weight:700;padding:15px 30px;border-radius:999px;
	transition:transform .2s,box-shadow .2s,background .25s,color .25s;
}
.v2-btn span{transition:transform .25s;}
.v2-btn:hover{transform:translateY(-2px);}
.v2-btn:hover span{transform:translateX(-4px);}
.v2-btn-solid{background:var(--v2-sand);color:var(--v2-dark);box-shadow:0 12px 30px rgba(0,0,0,.3);}
.v2-btn-ghost{color:var(--v2-sand);padding-inline:8px;}
.v2-btn-ghost:hover{color:#fff;transform:none;}
.v2-btn-outline{border:1px solid var(--v2-line-dark);color:var(--v2-sand);}
.v2-btn-outline:hover{background:var(--v2-sand);color:var(--v2-dark);border-color:var(--v2-sand);}
.v2-circle-btn{
	display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
	border:1px solid rgba(231,222,203,.55);color:var(--v2-sand);font-size:18px;font-style:normal;
	transition:background .25s,color .25s,transform .25s;
}

/* reveal-on-scroll — hidden state only when JS is running (html.v2-js is set
   by an inline script in <head>), so the page is never blank without JS. */
html.v2-js .v2-reveal{opacity:0;transform:translateY(26px);transition:opacity .8s ease,transform .8s ease;}
html.v2-js .v2-reveal.in{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){html.v2-js .v2-reveal{opacity:1;transform:none;transition:none;}}

/* ==========================================================================
   Announcement bar + header
   ========================================================================== */
/* Never-ending marquee — see the matching block in chrome-v2.css. Two identical
   groups in a max-content track; the track slides by exactly one group so the
   restart is invisible. Scrolls rightward because RTL puts group 1 on the right. */
.v2-announce{
	display:flex;align-items:center;overflow:hidden;
	background:var(--v2-rust);color:var(--v2-sand);
	font-size:13px;font-weight:600;letter-spacing:.3px;
	height:46px;
}
.v2-announce-track{
	display:flex;width:max-content;
	animation:v2-marquee 46s linear infinite;
	will-change:transform;
}
.v2-announce-group{display:flex;flex-shrink:0;}
.v2-announce-item{
	display:inline-flex;align-items:center;gap:14px;
	padding-inline-start:56px;white-space:nowrap;
}
.v2-announce-item i{font-style:normal;opacity:.6;font-size:11px;}
@keyframes v2-marquee{from{transform:translateX(0);}to{transform:translateX(50%);}}
.v2-header{
	position:sticky;top:0;z-index:50;
	display:flex;align-items:center;justify-content:space-between;gap:24px;
	background:var(--v2-dark);color:var(--v2-sand);
	padding:0 var(--v2-gutter);height:72px;
	transition:box-shadow .3s;
}
.v2-header.scrolled{box-shadow:0 10px 30px rgba(0,0,0,.35);}
.v2-brand{display:inline-flex;align-items:center;gap:11px;font-size:22px;font-weight:800;}
.v2-brand img{height:45px;width:auto;}
.v2-nav{display:flex;gap:32px;font-size:16.5px;font-weight:700;}
/* Full-strength light text on the dark header (was 14.5px at 88% opacity —
   too small and too dim, owner 2026-09-17). */
.v2-nav a{position:relative;padding:6px 0;color:#F8F5EF;opacity:1;transition:color .2s;}
.v2-nav a::after{
	content:'';position:absolute;bottom:0;right:0;width:0;height:1.5px;
	background:var(--v2-brown-light);transition:width .25s;
}
.v2-nav a:hover{color:#C79A4A;}
.v2-nav a:hover::after{width:100%;}
.v2-header-icons{display:flex;align-items:center;gap:18px;}
.v2-header-icons svg{width:21px;height:21px;display:block;}
.v2-cart{position:relative;}
.v2-cart span{
	position:absolute;top:-7px;left:-9px;min-width:17px;height:17px;padding:0 4px;
	background:var(--v2-brown);color:#fff;font-size:10.5px;font-weight:700;
	border-radius:999px;display:grid;place-items:center;line-height:1;
}
.v2-burger{display:none;flex-direction:column;gap:5px;padding:6px;}
.v2-burger span{width:22px;height:1.8px;background:currentColor;transition:transform .25s;}
body.v2-nav-open .v2-burger span:first-child{transform:translateY(3.4px) rotate(45deg);}
body.v2-nav-open .v2-burger span:last-child{transform:translateY(-3.4px) rotate(-45deg);}

/* ==========================================================================
   Hero — offer banner slider (2026-09-16). The banners are finished artwork
   (copy baked in), so this is only a frame: fixed banner ratio, crossfade,
   dots + arrows. Full page width, edge to edge (owner, 2026-09-16): desktop
   art 1160×520 (1920w copy for wide screens), mobile ≤600px 941×1672.
   ========================================================================== */
.v2-hero{padding:0;}
.v2-hero-slider{position:relative;overflow:hidden;isolation:isolate;background:var(--v2-cream-deep);}
.v2-hero-track{position:relative;aspect-ratio:1160/520;}
.v2-hero-slide{
	position:absolute;inset:0;display:block;
	opacity:0;visibility:hidden;transition:opacity .7s ease,visibility 0s linear .7s;
}
.v2-hero-slide.is-active{opacity:1;visibility:visible;transition:opacity .7s ease;z-index:1;}
.v2-hero-slide picture,.v2-hero-slide img{display:block;width:100%;height:100%;}
.v2-hero-slide img{object-fit:cover;}

.v2-hero-arrow{
	position:absolute;z-index:2;top:50%;transform:translateY(-50%);
	width:44px;height:44px;border-radius:50%;border:0;cursor:pointer;
	display:grid;place-items:center;font-size:18px;line-height:1;
	background:rgba(248,245,239,.82);color:var(--v2-dark);
	box-shadow:0 6px 18px rgba(0,0,0,.18);
	opacity:0;transition:opacity .25s,background .25s;
}
.v2-hero-prev{right:16px;}
.v2-hero-next{left:16px;}
.v2-hero-slider:hover .v2-hero-arrow,.v2-hero-arrow:focus-visible{opacity:1;}
.v2-hero-arrow:hover{background:#fff;}

.v2-hero-dots{
	position:absolute;z-index:2;left:50%;bottom:14px;transform:translateX(-50%);
	display:flex;gap:8px;padding:6px 9px;border-radius:999px;background:rgba(16,42,56,.28);
}
.v2-hero-dots button{
	width:8px;height:8px;padding:0;border:0;border-radius:999px;cursor:pointer;
	background:rgba(255,255,255,.55);transition:width .3s,background .3s;
}
.v2-hero-dots button.is-active{width:22px;background:#fff;}
@media (prefers-reduced-motion:reduce){
	.v2-hero-slide,.v2-hero-slide.is-active{transition:none;}
}

/* ==========================================================================
   01 / manifesto — premium composition: dune icon → eyebrow → statement,
   with the supporting paragraph hanging on a hairline at the far left.
   ========================================================================== */
.v2-manifesto{padding:clamp(30px,4.5vh,54px) var(--v2-gutter) clamp(32px,5vh,58px);}
.v2-manifesto .v2-index{max-width:1360px;margin-inline:auto;margin-bottom:16px;}
.v2-manifesto-grid{
	display:grid;grid-template-columns:1.55fr .75fr;gap:clamp(28px,5vw,72px);
	align-items:center;max-width:1360px;margin:0 auto;
}
/* Icon and eyebrow share one row — keeps the block short and reads premium. */
.v2-manifesto-head{display:flex;align-items:center;gap:14px;margin-bottom:14px;}
.v2-manifesto-head .v2-eyebrow{margin-bottom:0;}
.v2-manifesto-icon{
	display:grid;place-items:center;width:44px;height:44px;border-radius:50%;flex:none;
	border:1px solid rgba(23,63,83,.35);color:var(--v2-brown);
}
.v2-manifesto-icon svg{width:22px;height:22px;}
.v2-manifesto-title{font-size:clamp(28px,3.6vw,50px);font-weight:700;line-height:1.35;letter-spacing:-.4px;}
.v2-manifesto-title em{font-style:normal;color:var(--v2-brown);}
.v2-manifesto-side{
	display:flex;flex-direction:column;gap:16px;align-items:flex-start;
	max-width:330px;justify-self:start;
	border-top:1px solid var(--v2-line-cream);padding-top:18px;
}
.v2-manifesto-side p{font-size:14.5px;line-height:1.9;color:var(--v2-ink-soft);}

/* ==========================================================================
   Triptych — the three pieces
   ========================================================================== */
.v2-triptych{display:grid;grid-template-columns:repeat(3,1fr);}
.v2-panel{position:relative;overflow:hidden;height:clamp(480px,78vh,720px);}
.v2-panel img{
	width:100%;height:100%;object-fit:cover;object-position:top center;
	filter:saturate(.86) contrast(1.05) sepia(.14);
	transition:transform .8s ease, filter .6s ease;
}
.v2-panel:hover img{transform:scale(1.045);filter:saturate(.94) contrast(1.05) sepia(.08);}
/* Warm wash from the bottom only — pulls the frame toward the brand brown so
   the three shots read as one set. (No tint over the top of the photo.) */
.v2-panel::before{
	content:'';position:absolute;inset:0;z-index:1;pointer-events:none;
	background:linear-gradient(180deg, rgba(23,63,83,0) 34%, rgba(23,63,83,.20) 100%);
}
.v2-panel-shade{
	position:absolute;inset:0;pointer-events:none;
	background:linear-gradient(180deg, rgba(11,31,42,0) 30%, rgba(11,31,42,.46) 58%, rgba(11,31,42,.97) 100%);
}
.v2-panel-copy{
	position:absolute;inset-inline:0;bottom:0;padding:30px 30px 34px;color:var(--v2-sand);
	display:grid;grid-template-columns:1fr auto;grid-template-areas:'eyeb btn' 'name btn' 'desc btn';
	column-gap:16px;align-items:end;
}
.v2-panel-copy small{grid-area:eyeb;font-size:12px;font-weight:600;letter-spacing:.4px;color:var(--v2-brown-light);margin-bottom:9px;}
.v2-panel-copy strong{grid-area:name;font-size:clamp(26px,2.6vw,36px);font-weight:800;margin-bottom:8px;}
.v2-panel-copy em{grid-area:desc;font-style:normal;font-size:13.5px;line-height:1.85;color:var(--v2-sand-soft);max-width:300px;}
.v2-panel-copy .v2-circle-btn{grid-area:btn;}
.v2-panel:hover .v2-circle-btn{background:var(--v2-sand);color:var(--v2-dark);transform:translateX(-4px);}

/* ==========================================================================
   Installments banner (تابي وتمارا)
   ========================================================================== */
/* Full-bleed banner: no gutter, no mask — the supplied artwork spans the whole
   viewport width exactly as delivered (desktop and mobile alike). */
.v2-installments{padding:clamp(34px,5vh,60px) 0 0;}
.v2-installments a{display:block;}
.v2-installments img{width:100%;height:auto;display:block;}

.v2-styles .v2-index{max-width:1360px;margin-inline:auto;}

/* ==========================================================================
   02 / لماذا وبر — مصممة اليوم لتبقى غدًا
   ========================================================================== */
/* Copy is FIRST in the DOM → the RIGHT column in RTL (text right, photo left). */
.v2-why{
	display:grid;grid-template-columns:1.05fr .95fr;
	background:var(--v2-dark);color:var(--v2-sand);
}
.v2-why-copy{
	padding:clamp(70px,10vh,130px) var(--v2-gutter);
	display:flex;flex-direction:column;justify-content:center;
}
.v2-why-copy .v2-eyebrow{color:var(--v2-brown-light);}
.v2-why-copy h2{font-size:clamp(36px,4.4vw,62px);font-weight:600;line-height:1.26;letter-spacing:-.3px;margin-bottom:24px;}
.v2-why-copy .v2-eyebrow{font-size:14px;}
.v2-why-sub{max-width:500px;font-size:17px;line-height:2;color:var(--v2-sand-soft);margin-bottom:46px;}
.v2-why-stats{
	display:grid;grid-template-columns:repeat(3,auto);justify-content:start;gap:clamp(26px,3.6vw,58px);
	border-top:1px solid var(--v2-line-dark);padding-top:32px;
}
/* Free-standing golden-sand glyphs — no circle, no border.
   Scoped through .v2-why-stats so it outranks `.v2-why-stats span`. */
.v2-why-stats .v2-stat-icon{display:block;color:var(--v2-gold);margin-bottom:14px;font-size:0;}
.v2-why-stats .v2-stat-icon svg{width:40px;height:40px;stroke-width:1.35;}
.v2-why-stats strong{display:block;font-size:19px;font-weight:700;color:var(--v2-sand);margin-bottom:6px;}
.v2-why-stats span{font-size:14px;line-height:1.65;color:var(--v2-sand-soft);}
.v2-why-media{position:relative;min-height:480px;}
.v2-why-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}

/* ==========================================================================
   03 / تسوّق حسب أسلوبك
   ========================================================================== */
.v2-styles{padding:clamp(80px,12vh,140px) var(--v2-gutter);}
.v2-styles .v2-title{max-width:1360px;margin:0 auto 46px;}
/* Row heights come from the tiles' own aspect ratios, not from `vh` — the owner's
   artwork is cut to fixed ratios (small tiles 1800×900, the big one 1600×1200) and
   a viewport-height row cropped the models' heads off on a short window.
   The 1.395fr column keeps the big tile at 4/3: it spans both rows, so
   big_w / (small_w + gap) works out to 4/3 at this split. */
.v2-styles-grid{
	display:grid;grid-template-columns:1.395fr 1fr;
	gap:clamp(16px,2vw,26px);max-width:1360px;margin:0 auto;
}
.v2-tile{position:relative;overflow:hidden;border-radius:18px;aspect-ratio:2/1;}
.v2-tile-big{grid-row:1 / span 2;aspect-ratio:auto;}
/* The tiles carry a <picture> (desktop + mobile crop). `picture` is an inline box
   by default, so it must be the absolute layer itself — otherwise it contributes a
   stray line-box inside the tile. */
.v2-tile picture{position:absolute;inset:0;display:block;}
.v2-tile img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease;position:absolute;inset:0;}
.v2-tile:hover img{transform:scale(1.05);}
.v2-tile-copy{position:absolute;right:26px;bottom:24px;color:var(--v2-sand);z-index:1;}
.v2-tile-copy small{display:block;font-size:12px;font-weight:600;color:rgba(231,222,203,.75);margin-bottom:7px;letter-spacing:.4px;}
.v2-tile-copy strong{font-size:clamp(24px,2.4vw,34px);font-weight:800;}
.v2-tile .v2-circle-btn{position:absolute;left:22px;bottom:22px;z-index:1;}
.v2-tile:hover .v2-circle-btn{background:var(--v2-sand);color:var(--v2-dark);transform:translateX(-4px);}

/* ==========================================================================
   Quote
   ========================================================================== */
.v2-quote{
	position:relative;isolation:isolate;overflow:hidden;
	background:var(--v2-darker);color:var(--v2-sand);
	padding:clamp(62px,9vh,108px) var(--v2-gutter);text-align:center;
}
/* Sunset desert artwork — bright and warm, so it is dimmed harder than a dark
   photo would need, keeping the white quote fully legible over it. */
.v2-quote::before{
	content:'';position:absolute;inset:0;z-index:-1;
	background-image:var(--quote-bg);background-size:cover;background-position:center center;
	filter:brightness(.42) saturate(.9);
}
/* Scrim: a soft centre wash plus the vignette, so the white quote never sits
   directly on the bright sky. */
.v2-quote::after{
	content:'';position:absolute;inset:0;z-index:-1;
	background:
		radial-gradient(58% 62% at 50% 48%, rgba(11,31,42,.52), transparent 78%),
		radial-gradient(90% 90% at 50% 50%, transparent 26%, rgba(11,31,42,.76) 100%);
}
.v2-quote-inner{max-width:820px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:8px;}
.v2-quote .v2-eyebrow{color:var(--v2-brown-light);justify-content:center;}
.v2-quote blockquote{
	font-size:clamp(28px,4vw,52px);font-weight:800;line-height:1.5;letter-spacing:-.4px;
	margin-bottom:36px;color:#fff;text-shadow:0 2px 24px rgba(11,31,42,.55);
}
/* ==========================================================================
   Footer
   ========================================================================== */
/* The community section that used to overlap into the footer was removed, so
   the footer now uses a normal top padding (matches chrome-v2.css site-wide). */
.v2-footer{background:var(--v2-darker);color:var(--v2-sand);padding:clamp(54px,8vh,84px) var(--v2-gutter) 0;position:relative;z-index:1;}
.v2-footer-cta{
	/* minmax(0,…): the newsletter form's intrinsic width otherwise blows the
	   1fr track past the viewport on narrow phones (leftward in RTL). */
	display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);gap:clamp(30px,5vw,80px);align-items:center;
	max-width:1360px;margin:0 auto;padding:clamp(24px,4vh,44px) 0 clamp(46px,7vh,74px);
	border-bottom:1px solid var(--v2-line-dark);
}
.v2-footer-cta .v2-eyebrow{color:var(--v2-brown-light);}
.v2-footer-cta h2{font-size:clamp(30px,3.8vw,52px);font-weight:800;line-height:1.3;letter-spacing:-.4px;}
.v2-newsletter label{display:block;font-size:12.5px;font-weight:600;color:var(--v2-sand-soft);margin-bottom:12px;}
.v2-newsletter-row{display:flex;align-items:center;gap:12px;border-bottom:1px solid rgba(231,222,203,.4);padding-bottom:10px;}
.v2-newsletter input{
	flex:1;min-width:0;background:none;border:0;outline:none;color:var(--v2-sand);
	font-family:inherit;font-size:15px;direction:ltr;text-align:left;
}
.v2-newsletter input::placeholder{color:rgba(231,222,203,.4);}
.v2-newsletter button{font-size:19px;transition:transform .25s;}
.v2-newsletter button:hover{transform:translateX(-5px);}
.v2-footer-grid{
	display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:clamp(26px,4vw,60px);
	max-width:1360px;margin:0 auto;padding:clamp(44px,7vh,70px) 0;
}
.v2-footer-brand p{margin-top:16px;max-width:280px;font-size:13.5px;line-height:1.95;color:var(--v2-sand-soft);}
.v2-footer-contact{list-style:none;margin:18px 0 0;padding:0;display:flex;flex-direction:column;gap:9px;}
.v2-footer-contact li{display:flex;align-items:center;gap:9px;min-width:0;}
.v2-footer-contact svg{flex:0 0 16px;width:16px;height:16px;opacity:.75;}
.v2-footer-contact a{font-size:13.5px;color:var(--v2-sand-soft);word-break:break-all;transition:color .2s ease;}
.v2-footer-contact a:hover{color:#fff;}
.v2-footer-col h4{font-size:13px;font-weight:700;letter-spacing:.4px;color:var(--v2-brown-light);margin-bottom:18px;}
.v2-footer-col a{display:block;font-size:14px;color:var(--v2-sand-soft);padding:6px 0;transition:color .2s,transform .2s;}
.v2-footer-col a:hover{color:var(--v2-sand);transform:translateX(-4px);}
.v2-footer-bottom{
	display:flex;align-items:center;justify-content:space-between;gap:16px;
	max-width:1360px;margin:0 auto;padding:22px 0 26px;
	border-top:1px solid var(--v2-line-dark);
	font-size:12px;color:var(--v2-sand-soft);
}
.v2-footer-en{direction:ltr;letter-spacing:.4px;}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1024px){
	.v2-manifesto-grid{grid-template-columns:1fr;align-items:start;}
	.v2-manifesto-side{max-width:460px;}
}
@media (max-width:900px){
	/* Marquee keeps all phrases on mobile — it scrolls, so nothing is dropped. */
	.v2-announce{height:42px;font-size:12px;}
	.v2-announce-item{padding-inline-start:38px;gap:11px;}
	.v2-announce-track{animation-duration:34s;}
	.v2-nav{
		display:none;position:fixed;inset:72px 0 auto 0;z-index:49;
		flex-direction:column;gap:0;background:var(--v2-dark);
		padding:10px var(--v2-gutter) 26px;border-top:1px solid var(--v2-line-dark);
		box-shadow:0 30px 40px rgba(0,0,0,.4);
	}
	body.v2-nav-open .v2-nav{display:flex;}
	.v2-nav a{padding:14px 0;border-bottom:1px solid var(--v2-line-dark);font-size:17px;}
	.v2-nav a:last-child{border-bottom:0;}
	.v2-nav a::after{display:none;}
	.v2-burger{display:flex;}


	.v2-triptych{grid-template-columns:1fr;}
	.v2-panel{height:auto;aspect-ratio:4/4.6;}
	.v2-panel img{object-position:top center;}

	.v2-why{grid-template-columns:1fr;}
	.v2-why-media{order:-1;min-height:0;aspect-ratio:4/3;}
	.v2-why-media img{position:static;height:100%;}

	/* Ratios of the owner's mobile crops: 900×560 and 900×675. */
	.v2-styles-grid{grid-template-columns:1fr;grid-template-rows:none;}
	.v2-tile{aspect-ratio:45/28;}
	.v2-tile-big{grid-row:auto;aspect-ratio:4/3;}

	.v2-footer-cta{grid-template-columns:minmax(0,1fr);}
	/* Show the newsletter submit as a real round button on mobile. */
	.v2-newsletter button{
		flex:0 0 auto;width:46px;height:46px;border-radius:50%;
		display:grid;place-items:center;
		background:var(--v2-sand);color:var(--v2-dark);font-size:18px;
	}
	.v2-newsletter button:hover{transform:none;}
	.v2-footer-grid{grid-template-columns:1fr 1fr;}
	.v2-footer-brand{grid-column:1 / -1;}
}
@media (max-width:600px){
	/* Portrait banner art, full-bleed under the header. */
	.v2-hero-track{aspect-ratio:941/1672;}
	/* Phones: arrows always visible (no hover), smaller; dots a bit larger. */
	.v2-hero-arrow{opacity:1;width:36px;height:36px;font-size:15px;background:rgba(248,245,239,.75);}
	.v2-hero-prev{right:10px;}
	.v2-hero-next{left:10px;}
	.v2-hero-dots{bottom:12px;gap:9px;padding:7px 11px;}
	.v2-hero-dots button{width:9px;height:9px;}
	.v2-hero-dots button.is-active{width:24px;}
	.v2-header{height:64px;}
	.v2-nav{inset-block-start:64px;}
	.v2-brand img{height:39px;}
	.v2-brand span{font-size:19px;}
	.v2-btn{padding:13px 24px;font-size:14px;}
	/* Keep the three stats in one row on mobile (icon over label over caption),
	   just smaller — instead of three tall stacked rows. */
	.v2-why-stats{grid-template-columns:repeat(3,1fr);gap:12px;padding-top:26px;}
	.v2-why-stats > div{text-align:center;}
	.v2-why-stats .v2-stat-icon{margin-bottom:8px;}
	.v2-why-stats .v2-stat-icon svg{width:30px;height:30px;}
	.v2-why-stats strong{font-size:13.5px;margin-bottom:4px;line-height:1.3;}
	.v2-why-stats span{font-size:11px;line-height:1.5;}
	.v2-footer-grid{grid-template-columns:1fr;gap:30px;}
	.v2-footer-bottom{flex-direction:column;gap:8px;text-align:center;}
}

/* ============================================================
   OSO mobile bottom nav — app-style, fixed, 3 destinations.
   ============================================================ */
.oso-botnav{display:none;}
@media (max-width:768px){
	.oso-botnav{
		position:fixed;left:0;right:0;bottom:0;z-index:900;
		display:grid;grid-template-columns:repeat(3,1fr);align-items:center;
		background:var(--v2-dark);border-top:1px solid var(--v2-line-dark);
		padding:8px 4px calc(8px + env(safe-area-inset-bottom,0px));
		box-shadow:0 -8px 24px rgba(0,0,0,.28);
	}
	.oso-botnav a{display:flex;flex-direction:column;align-items:center;gap:4px;padding:4px 0;color:var(--v2-sand-soft);font-size:11px;font-weight:700;}
	.oso-botnav a svg{width:23px;height:23px;}
	.oso-botnav a.is-active,.oso-botnav a:hover{color:var(--v2-gold);}
	body.wabar-v2{padding-bottom:66px;}
}
