/*
Theme Name: Studio Atelier
Theme URI: https://example.com/studio-atelier
Author: Studio Atelier
Description: A premium editorial theme for a branding and packaging design agency.
Version: 1.1.0
Text Domain: studio-atelier
*/

/* ==========================================================================
   TABLE OF CONTENTS
   1.  Tokens
   2.  Base
   3.  Reusable primitives (container, eyebrow, link, button, card, ticker)
   4.  Header / navigation
   5.  Menu overlay
   6.  Hero
   7.  Intro
   8.  Marquee
   9.  Selected work
   10. Stats
   11. Services
   12. Clients
   13. Process
   14. CTA
   15. Footer
   16. Responsive
   17. Reduced motion
   ========================================================================== */


/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
	/* Brand */
	--ink: #111;
	--paper: #fff;
	--mist: #f5f5f2;
	--gold: #FFCB09;
	--orange: #ff7348;
	--plum: #954a98;
	--plum-mid: #614482;
	--plum-deep: #634589;

	/* Neutrals */
	--panel: #282828;
	--panel-alt: #333;
	--line: rgba(17, 17, 17, .14);
	--hairline: #e5e5e5;
	--muted: #777;
	--muted-soft: #c2c2c2;

	/* Type -- two roles.
	   text: headings, paragraphs, descriptions.
	   ui:   eyebrows and micro-labels.
	   logo: wordmarks only (site logo, client marks). */
	--font-text: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-ui: Inter, Arial, sans-serif;
	--font-logo: Manrope, Arial, sans-serif;

	/* Layout */
	--max: 1280px;
	--gutter: 24px;
	--edge: 128px;
	--nav-h: 108px;
	--hero-offset: 108px;

	/* Motion + depth */
	--ease: cubic-bezier(.22, 1, .36, 1);
	--shadow-nav: 0 5px 16px rgba(17, 17, 17, .08);
	--shadow-card: 0 18px 42px rgba(17, 17, 17, .1);
}


/* ==========================================================================
   2. BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-text); letter-spacing: -.065em; }
h1 { margin-bottom: 0; font-size: clamp(42px, 6vw, 86px); line-height: .98; font-weight: 800; }
h1 em { color: var(--orange); font-style: normal; }

/* Editor-generated headings keep the face, not the display scale */
h2 { font-weight: 500; line-height: 1.1 !important; letter-spacing: 0.1px; }
h3{letter-spacing: 0.1px; font-weight: 600; }
h2 em { color: var(--orange); font-style: normal; }

:where(a, button):focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }


/* ==========================================================================
   3. REUSABLE PRIMITIVES
   ========================================================================== */

/* Container -- override --gutter on any section to change its edge spacing */
.atelier-container {
	width: min(calc(100% - (var(--gutter) * 2)), var(--max));
	margin-inline: auto;
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Eyebrow label */
.eyebrow {
	display: flex;
	justify-content: space-between;
	margin: 0 0 20px;
	color: #686868;
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.eyebrow--light { color: #999; }
.eyebrow--center { justify-content: center; }

/* Display heading -- every h2 in a template carries this class.
   Size is a modifier. Spacing, accent color and max-width come from the
   section via --h2-gap / --h2-accent / --h2-max, so the class stays portable. */
.atelier-h2 {
	max-width: var(--h2-max, none);
	margin: 0 0 var(--h2-gap, 0);
	font-size: var(--h2-size, clamp(48px, 4.6vw, 96px));
	line-height: var(--h2-leading, .9);
}
.atelier-h2--lg { --h2-size: clamp(44px, 6vw, 80px); --h2-leading: .92; }
.atelier-h2--md { --h2-size: clamp(42px, 5vw, 70px); }
.atelier-h2--sm { --h2-size: clamp(30px, 4vw, 56px); --h2-leading: 1; }
.atelier-h2 em { color: var(--h2-accent, var(--plum-deep));  font-style: italic; }

/* Section header */
.atelier-section-head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
	align-items: end;
	margin-bottom: 44px;
}

/* Underlined arrow link */
.atelier-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 7px;
	border-bottom: 1px solid currentColor;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: gap .3s var(--ease);
	margin-bottom: 40px;
}
.atelier-link:hover { gap: 24px; }
.atelier-link span { font-size: 20px; line-height: 0; }

/* Pill button */
.atelier-button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	gap: 22px;
	align-items: center;
	margin-top: 20px;
	padding: 15px 22px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: transform .3s, box-shadow .3s;
}
.atelier-button:hover {
	box-shadow: 0 12px 24px rgba(17, 17, 17, .2);
	transform: translateY(-3px);
}

/* Lift card -- shared by services and process.
   Retheme per section with the four custom properties. */
.atelier-card {
	position: relative;
	padding: var(--card-pad, 28px);
	border: 1px solid var(--card-border, transparent);
	background: var(--card-bg, transparent);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease),
	            border-color .4s var(--ease), background-color .4s var(--ease);
}
.atelier-card:hover {	
	background: var(--gold);
	box-shadow: var(--shadow-card);
	transform: translateY(var(--card-lift, -6px));
}
.atelier-card h3{font-size: 24px; font-weight: 600; margin-top:20px; margin-bottom: 10px}
.atelier-card:hover p{color:var(--link)}
.atelier-card__num { color: #999; font-family: var(--font-ui); font-size: 11px; letter-spacing: .1em; }
.atelier-card__mark { position: absolute; right: var(--card-pad, 28px); top: var(--card-pad, 28px); font-size: 28px; }
.atelier-card__arrow { position: absolute; right: var(--card-pad, 28px); bottom: var(--card-pad, 28px); font-size: 22px; }

/* Infinite ticker -- shared by the text marquee and the client logo strip.
   Track content must be duplicated exactly twice for a seamless loop. */
.atelier-ticker__track {
	display: flex;
	flex: none;
	width: max-content;
	align-items: center;
	gap: var(--ticker-gap, 24px);
	animation: marquee var(--ticker-speed, 12s) linear infinite;
	will-change: transform;
}
@keyframes marquee { to { transform: translateX(-50%); } }


/* ==========================================================================
   4. HEADER / NAVIGATION
   ========================================================================== */
.atelier-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	height: var(--nav-h);
	background: var(--paper);
	border-top: 2px solid var(--panel-alt);
	border-bottom: 1px solid var(--hairline);
	color: var(--ink);
	transition: box-shadow .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.atelier-nav.is-scrolled { box-shadow: var(--shadow-nav); }
.atelier-nav.is-pinned-hidden { transform: translateY(-100%); }
.atelier-nav.is-menu-open { color: var(--paper); }

.atelier-nav__inner {
	width: calc(100% - 276px);
	height: calc(var(--nav-h) - 2px);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	margin-inline: auto;
}
.atelier-nav__work {
	position: relative;
	display: inline-block;
	justify-self: start;
	width: max-content;
	color: var(--ink);
	font: 600 16px/1 var(--font-ui);
	letter-spacing: -.3px;
	transition: color .25s ease;
}
.atelier-nav__work::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.atelier-nav__work:hover,
.atelier-nav__work:focus-visible { color: var(--plum-deep); }
.atelier-nav__work:hover::after,
.atelier-nav__work:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.atelier-logo {
	position: relative;
	display: grid;
	place-items: center;
	width: 206px;
	height: 48px;
	background: var(--plum-deep);
	color: var(--gold);
	font: 500 39px/.9 var(--font-logo);
	letter-spacing: -2.8px;
	clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.atelier-menu { justify-self: end; display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); }
.atelier-menu__button {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}
.atelier-menu__button i,
.atelier-menu__button i::before,
.atelier-menu__button i::after {
	content: "";
	display: block;
	width: 26px;
	height: 3px;
	background: currentColor;
	transition: transform .35s var(--ease), opacity .2s;
}
.atelier-menu__button i { position: relative; }
.atelier-menu__button i::before,
.atelier-menu__button i::after { position: absolute; left: 0; }
.atelier-menu__button i::before { transform: translateY(-8px); }
.atelier-menu__button i::after { transform: translateY(8px); }
.atelier-menu__button.is-open i { background: transparent; }
.atelier-menu__button.is-open i::before { transform: rotate(45deg); }
.atelier-menu__button.is-open i::after { transform: rotate(-45deg); }

body.atelier-menu-locked { overflow: hidden; }


/* ==========================================================================
   5. MENU OVERLAY
   ========================================================================== */
.atelier-overlay {
	position: fixed;
	z-index: 30;
	inset: 0;
	visibility: hidden;
	pointer-events: none;
	color: var(--paper);
	font-family: var(--font-text);
}
.atelier-overlay.is-open { visibility: visible; pointer-events: auto; }

.atelier-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: var(--plum-mid);
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
}

.atelier-overlay__inner {
	position: relative;
	z-index: 1;
	height: 100svh;
	opacity: 0;
}

.atelier-overlay__top {
	position: absolute;
	inset: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 10px;
	letter-spacing: .13em;
	text-transform: uppercase;
	pointer-events: none;
}
.atelier-overlay__logo {
	position: absolute;
	top: 70px;
	left: var(--edge);
	color: var(--gold);
	font: 500 39px/.9 var(--font-logo);
	letter-spacing: -2.8px;
	pointer-events: auto;
}
.atelier-overlay__arrow {
	position: absolute;
	top: 22px;
	left: 50%;
	color: var(--ink);
	font: 400 20px/1 var(--font-text);
	opacity: 0;
	transform: translateY(-8px);
}
.atelier-overlay__close {
	position: absolute;
	top: 76px;
	right: 151px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--paper);
	cursor: pointer;
	opacity: 0;
	transform: rotate(-45deg) scale(.75);
	pointer-events: auto;
}
.atelier-overlay__close span {
	position: absolute;
	top: 20px;
	left: 5px;
	display: block;
	width: 32px;
	height: 2px;
	background: currentColor;
}
.atelier-overlay__close span:first-child { transform: rotate(45deg); }
.atelier-overlay__close span:last-child { transform: rotate(-45deg); }

.atelier-overlay__nav {
	position: absolute;
	top: 230px;
	left: var(--edge);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}
.atelier-overlay__item {
	display: block;
	width: max-content;
	color: rgba(188, 145, 227, .45);
	font: 400 52px/1.04 var(--font-text);
	letter-spacing: -2px;
	opacity: 0;
	transform: translateY(28px);
	cursor: pointer;
	transition: color .35s ease, opacity .35s ease, transform .5s var(--ease);
}
.atelier-overlay__item:hover,
.atelier-overlay__item:focus-visible,
.atelier-overlay__item.is-active { color: var(--paper); opacity: 1; }

.atelier-overlay__bottom {
	position: absolute;
	right: 130px;
	bottom: 91px;
	font-size: 10px;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.atelier-socials {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	font: 400 14px/1 var(--font-text);
	text-transform: none;
	letter-spacing: normal;
}
.atelier-socials a {
	color: rgba(255, 255, 255, .9);
	opacity: 0;
	transform: translateY(12px);
	transition: color .35s ease, opacity .5s var(--ease), transform .35s ease;
}
.atelier-socials a:hover,
.atelier-socials a:focus-visible { color: var(--paper); transform: translateX(6px); }
.atelier-socials a span { margin-left: 4px; }

/* Open state -- staggered entrance */
.atelier-overlay.is-open .atelier-overlay__item { opacity: 1; transform: none; transition-delay: var(--menu-delay); }
.atelier-overlay.is-open .atelier-socials a { opacity: 1; transform: none; transition-delay: 480ms; }
.atelier-overlay.is-open .atelier-overlay__arrow,
.atelier-overlay.is-open .atelier-overlay__close {
	opacity: 1;
	transform: none;
	transition: opacity .45s var(--ease) .2s, transform .45s var(--ease) .2s;
}
.atelier-overlay :focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }


/* ==========================================================================
   6. HERO
   ========================================================================== */
.atelier-hero__image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: calc(100svh - var(--hero-offset));
	min-height: 510px;
	background: #c78c35;
}
.atelier-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 1.2s var(--ease);
}
.atelier-hero__image:hover img { transform: scale(1.035); }


/* ==========================================================================
   7. INTRO
   ========================================================================== */
.atelier-intro { padding: 82px 0 116px; }
.atelier-intro__copy {
	width: min(calc(100% - (var(--edge) * 2) - 2px), 900px);
	margin-left: var(--edge);
}
.atelier-intro__heading,
.atelier-intro__body {
	color: var(--muted-soft);
	font-family: var(--font-text);
	font-weight: 600;
}
.atelier-intro__heading {
	margin: 0 0 20px;
	font-size: clamp(34px, 3.05vw, 42px);
	line-height: 1.38;
	letter-spacing: -1.25px;
}
.atelier-intro__body {
	margin: 0;
	font-size: clamp(30px, 2.75vw, 38px);
	line-height: 1.5;
	letter-spacing: -1.05px;
}
.atelier-intro__line { display: block; }
.atelier-intro__word { display: inline-block; }
.atelier-intro__body em { color: var(--plum); font-style: italic; }
.atelier-intro__body b { font-weight: inherit; }


/* ==========================================================================
   8. MARQUEE
   ========================================================================== */
.atelier-marquee {
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100px;
	white-space: nowrap;
}
.atelier-marquee span {
	color: var(--paper);
	-webkit-text-stroke: 1px var(--plum);
	font: 700 100px/100px var(--font-text);
	letter-spacing: 14px;
	text-transform: uppercase;
}
.atelier-marquee b { color: var(--gold); font: 700 54px/100px var(--font-text); }


/* ==========================================================================
   9. SELECTED WORK
   ========================================================================== */
.atelier-dark {
	position: relative;
	padding: 42px 0 48px;
	background: var(--ink);
	color: var(--paper);
}
.atelier-dark .atelier-container {
	position: relative;
	z-index: 2;
}
.atelier-dark .atelier-section-head {
	margin:0 30px 20px;
	padding-bottom: 20px;
}
.atelier-dark .eyebrow { margin-bottom: 12px; font-size: 10px; }
.atelier-dark .atelier-link { align-self: end; font-size: 12px; }

.atelier-work-track {
	position: relative;
}
.atelier-work-stage {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.atelier-work-rail {
	display: flex;
	align-items: stretch;
	gap: 24px;
	padding: 0 20px;
	will-change: transform;
}
.atelier-work-rail .atelier-work-card {
	width: calc(80vw - 24px);
	min-width: calc(80vw - 24px);
	flex-shrink: 0;
	height: auto;
}

/* Fallback: small screens / reduced-motion drop the pin and become a normal
   swipe-scroll row so nothing gets stuck (class added by site.js). */
.atelier-dark.no-pin .atelier-work-track { height: auto !important; }
.atelier-dark.no-pin .atelier-work-stage {
	position: static;
	height: auto;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.atelier-dark.no-pin .atelier-work-stage::-webkit-scrollbar { display: none; }
.atelier-dark.no-pin .atelier-work-rail { transform: none !important; }
.atelier-dark.no-pin .atelier-work-rail .atelier-work-card { scroll-snap-align: start; }

.atelier-work-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	background: var(--panel);
	transition: transform .3s var(--ease);
}
.atelier-work-card:hover { transform: translateY(-5px); }

.atelier-work-card__image {
	display: block;
	overflow: visible;
	background: var(--panel-alt);
}
.atelier-work-card__image img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: calc(100vh - 170px);
	height: auto;
	filter: saturate(.8);
	transition: filter 0.8s var(--ease);
}
.atelier-work-card:hover .atelier-work-card__image img { 
	filter: saturate(1); 
	opacity: 1;
}

.atelier-work-card__details {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 124px;
	padding: 26px 22px;
}
.atelier-work-card__meta {
	display: flex;
	gap: 10px;
	margin: 0 0 7px;
	color: var(--gold);
	font-family: var(--font-ui);
	letter-spacing: .08em;
	text-transform: uppercase;
}
.atelier-work-card__meta span { font-size: 14px; font-weight: 400; }
.atelier-work-card__copy h3 { margin: 0 0 4px; font-size: 40px; font-weight: 500; letter-spacing: -.04em; }
.atelier-work-card__copy p {
	width: 75ch;
	max-width: 100%;
	margin: 0;
	color: #b5b5b5;
	font-size: 16px;
	line-height: 1.35;
}
.atelier-work-card__button {
	position: absolute;
	right: 22px;
	bottom: 28px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid #666;
	color: var(--paper);
	font-size: 16px;
	transition: background-color .3s var(--ease), color .3s var(--ease);
	cursor: pointer;
}
.atelier-work-card__button:hover { background: var(--plum); color: var(--paper); }
.atelier-work-card__button span { font-size: 15px; line-height: .7; }


/* ==========================================================================
   10. STATS
   ========================================================================== */
.atelier-stats { padding: 48px 0 38px; }
.atelier-stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; padding: 20px 0; }
.atelier-stat { padding: 0 20px; text-align: center; }
.atelier-stat strong {
	display: block;
	margin-bottom: 12px;
	color: #000;
	font: 400 clamp(29px, 4.95vw, 58px)/.9 var(--font-text);
	letter-spacing: -2px;
}
.atelier-stat__value { font-size: clamp(38px, 6.5vw, 76px); letter-spacing: -.25px; }
.atelier-stat__label {
	display: block;
	margin-top: 15px;
	color: #515151;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: .2px;
}


/* ==========================================================================
   11. SERVICES
   ========================================================================== */
.atelier-services {
	padding: 120px 0;
	background: var(--mist);

	--card-pad: 25px;
	--card-bg: var(--paper);
	--card-bg-hover: var(--gold);
	--card-border-hover: var(--gold);
	--card-lift: -8px;
}
.atelier-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.atelier-service { min-height: 320px; }
.atelier-service__icon { display: block; margin: 22px 0 35px; font: 400 38px/1 var(--font-text); }
.atelier-service h3 { margin-bottom: 10px; font-size: 23px; width: 12ch }
.atelier-service p { color: var(--muted); font-size: 15px; font-weight: 500; width:24ch}

/* About page */
.about-page { background: var(--paper); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 72px 0 120px; }
.about-content__text { max-width: 540px; }
.about-content__heading { margin: 0; font-size: 48px;  }
.about-content__copy { max-width: 520px; }
.about-content__copy p { color: #333; font-size: 18px; line-height: 1.8; margin: 0; }
.border-bottom { border-bottom: 1px solid var(--hairline); }
.about-values { padding: 0 0 72px; }
.about-values__title { margin-bottom: 44px; font-size: 22px; margin-top: 50px; color: var(--muted); }
.about-values__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.about-value-card {
	padding: 32px;
	border: 1px solid var(--hairline);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease),
	            border-color .4s var(--ease), background-color .4s var(--ease);
}
.about-value-card:hover {
	background: var(--gold);
	border-color: var(--gold);
	box-shadow: var(--shadow-card);
	transform: translateY(-6px);
}
.about-value-card__heading { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; }
.about-value-card__icon { width: 28px; height: 28px; flex-shrink: 0; }
.about-value-card h3 { margin: 0; font-size: 20px; font-weight: 700; }
.about-value-card p { margin: 0; color: #555; font-size: 15px; line-height: 1.75; }
.about-value-card:hover p { color: var(--link); }
.about-team { padding: 0 0 96px; }
.about-team__image-wrap { overflow: hidden; border: 1px solid var(--hairline); max-height: 400px;  }
.about-team__image { width: 100%; display: block; height: auto; }
.about-trusted { padding: 72px 0; }
.about-trusted--bottom { padding-top: 64px; }
.atelier-clients.about-trusted--bottom {
	background: var(--paper);
	color: var(--ink);
	border-top: 1px solid var(--hairline);
}
.atelier-clients.about-trusted--bottom .eyebrow { color: #686868; }

@media (max-width: 1100px) {
	.about-content { grid-template-columns: 1fr; gap: 40px; }
	.about-values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.atelier-clients__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
	.about-content { padding: 48px 0 80px; }
	.about-content__heading { font-size: clamp(40px, 8vw, 56px); }
	.about-values__grid { grid-template-columns: 1fr; }
	.atelier-clients__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
	.atelier-clients__grid img { max-height: 64px; }
	.about-trusted { padding: 48px 0; }
}


/* ==========================================================================
   12. CLIENTS
   ========================================================================== */
.atelier-clients {
	--h2-gap: 70px;

	overflow: hidden;
	padding: 50px 0;
	background: var(--ink);
	color: var(--paper);
	text-align: center;
}
.atelier-clients__logos {
	--ticker-gap: 20px;
	--ticker-speed: 72s;

	color: var(--muted);
	font: 700 26px/1 var(--font-logo);
}
.atelier-clients__logos span { transition: color .3s; }
.atelier-clients__logos span:hover { color: var(--gold); }
.atelier-clients__logos img {
	filter: grayscale(1) brightness(1.8);
	opacity: .85;
	transition: filter .3s, opacity .3s;
}
.atelier-clients__logos img:hover {
	filter: grayscale(0);
	opacity: 1;
}

/* Static logo grid: all logos shown at once, no ticker animation. */
.atelier-clients__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: center;
	justify-items: center;
	gap: 32px 32px;	
	margin-inline: auto;
}
.atelier-clients__grid img {
	max-height: 70px;
	width: auto;
}

/* ==========================================================================
   13. PROCESS
   ========================================================================== */
.atelier-process {
	padding: 50px 0 70px;

	--card-bg: var(--paper);
	--card-bg-hover: var(--paper);
	--card-border: var(--line);
	--card-border-hover: var(--orange);
	--card-lift: -6px;
}
.hindi-word {color:#6a4c93; font-weight:600}
.atelier-process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.atelier-process-card {	
	padding: 40px 32px;
	background: var(--paper);
}
.atelier-process-card .atelier-card__num {
	display: block;
	margin-bottom: 18px;
	color: var(--muted);
	font-family: var(--font-ui);
	font-size: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-weight: 700;
}

.atelier-process-card h3 {
	margin: 0 0 14px;
	line-height: 1.05;
	font-size: 24px;
	margin-top:20px;
	margin-bottom: 10px;
	letter-spacing: 0.1px; 
}
.atelier-process-card p {
	max-width: 38ch;
	margin: 0;
	color: var(--ink);
	font-size: 16px;
	line-height: 1.7;
}


/* ==========================================================================
   14. CTA
   ========================================================================== */
.atelier-cta { --h2-gap: 24px;}
.atelier-cta__box {
	position: relative;
	overflow: hidden;
	padding: 60px 8%;
	 background:
        radial-gradient(1150px 270px at -3% 5%, rgba(255, 78, 30, .95) 0%, rgba(255, 78, 30, .70) 18%, rgba(255, 78, 30, .30) 38%, transparent 72%), radial-gradient(1639px 230px at 103% -5%, rgba(255, 197, 40, .95) 0%, rgba(255, 197, 40, .60) 21%, rgba(255, 197, 40, .18) 42%, transparent 75%), radial-gradient(700px 280px at 18% 108%, rgba(255, 196, 80, .60) 0%, rgba(255, 196, 80, .28) 30%, transparent 72%), radial-gradient(650px 260px at 88% 108%, rgba(184, 88, 214, .72) 0%, rgba(184, 88, 214, .38) 26%, rgba(184, 88, 214, .12) 48%, transparent 72%), radial-gradient(500px 220px at 102% 55%, rgba(225, 165, 255, .25) 0%, transparent 70%);
	text-align: center;
}

.atelier-cta__box > * { position: relative; z-index: 1; }
.atelier-cta p:not(.eyebrow) { color: #3c351f; }


/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.atelier-footer {
	--h2-max: 480px;
	--h2-accent: var(--gold);

	padding: 70px 0 25px;
	background: #20201e;
	color: var(--paper);
}
.atelier-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 80px; }
.atelier-footer h3 {
	margin-bottom: 18px;
	color: #999;
	font: 600 11px/1 var(--font-ui);
	letter-spacing: .12em;
	text-transform: uppercase;
}
.atelier-footer ul { padding: 0; margin: 0; list-style: none; }
.atelier-footer li { margin-bottom: 10px; color: #ddd; font-size: 14px; }
.atelier-footer li a:hover { color: var(--gold); }
.atelier-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: #888;
	font-size: 11px;
}


/* ==========================================================================
   16. RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
	:root { --edge: 9.4vw; }

	.atelier-overlay__close { right: var(--edge); }
	.atelier-overlay__bottom { right: var(--edge); bottom: 64px; }
	.atelier-overlay__item { font-size: clamp(45px, 5vw, 52px); }
}

@media (max-width: 800px) {
	:root { --gutter: 16px; --hero-offset: 88px; }

	/* Header */
	.atelier-nav__inner { width: calc(100% - 48px); }
	.atelier-logo { width: 180px; height: 44px; font-size: 34px; }

	/* Hero + intro */
	.atelier-hero__image { min-height: 420px; }
	.atelier-intro { padding: 64px 0 80px; }
	.atelier-intro__copy { width: calc(100% - 48px); margin-left: 24px; }
	.atelier-intro__heading { font-size: 30px; }
	.atelier-intro__body { font-size: 26px; }

	/* Marquee */
	.atelier-marquee { height: 76px; }
	.atelier-marquee .atelier-ticker__track { --ticker-gap: 16px; --ticker-speed: 10s; }
	.atelier-marquee span { font-size: 72px; line-height: 76px; letter-spacing: 8px; }
	.atelier-marquee b { font-size: 38px; line-height: 76px; }
	.atelier-marquee  { display: none; }
	/* Section heads */
	.atelier-section-head { grid-template-columns: 1fr; gap: 26px; }

	/* Selected work */
	.atelier-dark { --gutter: 32px; padding: 28px 0 34px; }
	.atelier-h2--sm { --h2-size: 26px; --h2-leading: .94; }
	.atelier-dark .atelier-section-head { gap: 18px; margin-bottom: 22px; }
	.atelier-dark .eyebrow { margin-bottom: 9px; font-size: 8px; }
	.atelier-dark .atelier-link { font-size: 8px; }
	.atelier-work-rail { gap: 16px; padding: 0 16px; }
	.atelier-work-rail .atelier-work-card { width: min(86vw, 540px); }
	.atelier-work-card__image img { max-height: none; }
	.atelier-work-card__details { min-height: 88px; padding: 10px 14px; }
	.atelier-work-card__meta { margin-bottom: 5px; }
	.atelier-work-card__copy h3 { margin-bottom: 3px; }
	.atelier-work-card__copy p { max-width: 100%; margin-bottom: 16px; line-height: 1.3; }
	.atelier-work-card__button { position: static; align-self: flex-start; margin-top: auto; }
	.atelier-work-card__button span { font-size: 12px; }

	/* Stats */
	.atelier-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
	.atelier-stat { padding: 0 10px; }
	.atelier-stat:nth-child(3),
	.atelier-stat:nth-child(4) { padding-top: 25px; border-top: 1px solid var(--line); }

	/* Services, clients, process */
	.atelier-services,
	.atelier-process { padding: 78px 0; }
	.atelier-service-grid,
	.atelier-process-grid { grid-template-columns: 1fr 1fr; }
	.atelier-clients__logos { --ticker-gap: 50px; font-size: 20px; }

	/* CTA + footer */
	.atelier-cta__box { padding: 60px 26px; }
	.atelier-footer__top { grid-template-columns: 1fr 1fr; }
	.atelier-footer__top h2 { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
	:root { --nav-h: 88px; }

	/* Header */
	.atelier-nav__work { font-size: 14px; }
	.atelier-logo { width: 154px; height: 38px; font-size: 29px; }
	.atelier-menu span { display: none; }

	/* Overlay */
	.atelier-overlay__logo { top: 32px; left: 24px; font-size: 28px; letter-spacing: -2px; }
	.atelier-overlay__arrow { font-size: 18px; }
	.atelier-overlay__close { top: 29px; right: 24px; width: 36px; height: 36px; }
	.atelier-overlay__close span { top: 17px; left: 3px; width: 30px; }
	.atelier-overlay__nav { top: 50%; left: 0; width: 100%; align-items: center; gap: 12px; transform: translateY(-50%); }
	.atelier-overlay__item { font-size: 42px; line-height: 1; letter-spacing: -1.4px; }
	.atelier-overlay__bottom { right: 24px; bottom: 32px; }
	.atelier-socials { gap: 14px; font-size: 13px; }

	/* Hero + intro */
	.atelier-hero__image { min-height: 360px; }
	.atelier-intro { padding: 52px 0 64px; }
	.atelier-intro__copy { width: calc(100% - 32px); margin-left: 16px; }
	.atelier-intro__heading { font-size: 27px; letter-spacing: -.8px; }
	.atelier-intro__body { font-size: 24px; line-height: 1.35; letter-spacing: -.6px; }

	/* Marquee */
	.atelier-marquee { height: 58px; }
	.atelier-marquee .atelier-ticker__track { --ticker-gap: 10px; --ticker-speed: 8s; }
	.atelier-marquee span { font-size: 48px; line-height: 58px; letter-spacing: 5px; }
	.atelier-marquee b { font-size: 26px; line-height: 58px; }

	/* Selected work */
	.atelier-dark { --gutter: 16px; }
	.atelier-work-rail { gap: 14px; padding: 0 14px; }
	.atelier-work-rail .atelier-work-card { width: min(88vw, 420px); }
	.atelier-work-card__details { min-height: 92px; }
	.atelier-work-card__meta { display: block; line-height: 1.5; }
	.atelier-work-card__meta span { display: block; }
	.atelier-work-card__meta span.atelier-work-card__meta-sep { display: none; }

	/* Services + process */
	.atelier-service-grid,
	.atelier-process-grid { grid-template-columns: 1fr; }
	.atelier-service { min-height: 260px; }
	.atelier-service__icon { margin: 38px 0 25px; }
	.atelier-process-card { min-height: 290px; }
	.atelier-process-card h3 { margin-top: 82px; }

	/* Footer */
	.atelier-footer__top { grid-template-columns: 1fr; }
	.atelier-footer__bottom { display: block; }
	.atelier-footer__bottom p { margin-bottom: 8px; }
}


/* ==========================================================================
   17. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.atelier-ticker__track { animation: none; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.atelier-hero__image:hover img,
	.atelier-work-card:hover,
	.atelier-work-card:hover .atelier-work-card__image img { transform: none; }
	.services-card__item { position: static; }
}

/* ==========================================================================
	 Honeybee-style footer (pixel-precise recreation)
	 ========================================================================== */

.hb-footer {
	background: #000000;
	color: #ffffff;	
	padding: 96px 0 36px;
}

.hb-container {
	width: min(calc(100% - 48px), 1280px);
	margin-inline: auto;
	padding: 0 24px;
}

.hb-footer-top {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 72px;
	align-items: start;
}

.hb-left {}

.hb-hero {
	margin: 0 0 30px;
	font-weight: 500;
	font-size: 48px;
	line-height: .95;
	letter-spacing: -1px;
	color: #ffffff;
}

.hb-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 290px;
	height: 54px;
	background: #954a98 !important;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: .02em;
	transition: background .25s ease, color .25s ease, transform .15s ease;
}
.hb-cta:hover { background: var(--plum); color: #ffffff; transform: translateY(-3px); }
.hb-cta .hb-cta-arrow { margin-left: 12px; font-size: 20px; }

.hb-contact { margin-top: 42px; display: flex; flex-direction: column; gap: 14px; }
.hb-contact-row { display: flex; align-items: center; gap: 14px; }
.hb-icon svg { width: 18px; height: 18px; display: block; }
.hb-contact-text { color: #ffffff; font-size: 16px; text-decoration: none; font-weight: 400; }
.hb-contact-text:hover { opacity: .9; }

.hb-right { display: flex; flex-direction: column; justify-content: space-between; }
.hb-nav { display: flex; gap: 48px; justify-content: flex-end; }
.hb-nav-col h4 {
	margin: 0 0 18px 0;
	color: #FFC400;
	font-size: 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 600;
}
.hb-nav-col ul { list-style: none; margin: 0; padding: 0; }
.hb-nav-col li { margin-bottom: 12px; }
.hb-nav-col a {
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
	display: inline-block;
	padding-bottom: 4px;
	transition: opacity .18s ease, border-color .18s ease;
	border-bottom: 2px solid transparent;
}
.hb-nav-col a:hover { opacity: .85; border-bottom-color: rgba(255,255,255,0.12); }
.hb-nav-col .ext { margin-left: 8px; font-size: 14px; opacity: .9; }

.hb-location { margin-top: 28px; color: #ffffff; font-size: 16px; text-align: end; }

.hb-divider { border: 0; height: 1px; background: rgba(255,255,255,0.06); margin: 40px 0; }

.hb-footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding-bottom: 6px; }
.hb-bottom-left a { color: #cfcfcf; text-decoration: none; margin-right: 12px; font-size: 14px; }
.hb-bottom-left a:hover { opacity: .85; text-decoration: underline; }
.hb-bottom-right { color: #cfcfcf; font-size: 14px; }
.hb-sep { margin: 0 12px; color: rgba(255,255,255,0.12); }

/* Hover transitions for links */
a:hover { transition: opacity .18s ease; }

/* Responsive - stack at 992px */
@media (max-width: 992px) {
	.hb-footer { padding: 56px 0 28px; }
	.hb-footer-top { grid-template-columns: 1fr; gap: 28px; }
	.hb-right { order: 2; }
	.hb-left { order: 1; }
	.hb-nav { gap: 32px; }
	.hb-container { padding: 0 18px; }
	.hb-hero { font-size: clamp(34px, 6.5vw, 48px); }
	.hb-contact-text { font-size: 14px; }
	.hb-nav-col h4 { font-size: 13px; letter-spacing: 3px; }
	.hb-nav-col a { font-size: 16px; }
	.hb-location { margin-top: 18px; }
	.hb-footer-bottom { grid-template-columns: 1fr; gap: 12px; text-align: center; }
	.hb-bottom-right { order: 3; }
}

/* ==========================================================================
	 Case Studies page styles
	 ========================================================================== */
.hb-page-title { font-family: var(--font-text); font-weight: 600; font-size: 72px; line-height: .98; margin: 0 0 18px; }
.hb-hero-row { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; padding: 48px 0 0; }
.hb-hero-left { max-width: 720px; }
.hb-lead { margin: 0 0 28px; color: #666; font-size: 16px; line-height: 1.8; }
.hb-hero-right { text-align: right; font-size: 16px; color: #111; }
.hb-hero-right .hb-tagline { font-weight: 400; color: #111; }
.hb-hero-right .hb-tagline strong { font-weight: 700; }

.hb-filters { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; margin-bottom: 24px; }
.hb-filter-button { background: #fff; border: 1px solid #111; color: #111; padding: 12px 24px; height: 48px; font-size: 15px; cursor: pointer; transition: background .18s ease, color .18s ease; }
.hb-filter-button:hover { background: #111; color: #fff; }
.hb-filter-button--active { background: #111; color: #fff; }

.hb-grid-wrap { padding: 28px 0 80px; }
.hb-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.hb-card { background: transparent; border: 0; overflow: hidden; }
.hb-card-link { display: block; color: inherit; text-decoration: none; }
.hb-card-media { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: #f2f2f2; }
.hb-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); display: block; }
.hb-card-body { padding: 18px 0 0; }
.hb-card-industry { color: #9b9b9b; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.hb-card-title { margin: 0; font-size: 28px; font-weight: 700; color: #111; transition: color .2s ease; }
.hb-card:hover .hb-card-media img { transform: scale(1.05); }
.hb-card:hover .hb-card-title { color: #000; }

.hb-no-results { color: #777; font-size: 18px; }

.hb-loadmore-wrap { display: flex; justify-content: center; margin-top: 48px; }
.hb-loadmore { background: #111; color: #fff; border: 0; padding: 12px 28px; cursor: pointer; font-weight: 500; font-size: 15px; }
.hb-loadmore:hover { opacity: .9; transform: translateY(-2px); }

/* Animations */
.hb-card--anim { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.hb-card--anim.is-visible { opacity: 1; transform: none; }
.hb-cards .hb-card { will-change: transform, opacity; }

.hb-single-case-study {
	--hb-single-font: "Plus Jakarta Sans", Arial, sans-serif;
	--hb-single-max: 1200px;
	--hb-single-line: #eaeaea;
	--hb-single-text: #1b1b1b;
	--hb-single-muted: #7c7c7c;
	--hb-single-p: #2d2d2d;
	--hb-single-bg: #ffffff;
	font-family: var(--hb-single-font);
	background: var(--hb-single-bg);
	color: var(--hb-single-text);
}

.hb-single-case-study__container {
	width: min(var(--hb-single-max), calc(100% - 48px));
	margin: 0 auto;
	padding: 0 0 110px;
}

.hb-single-case-study__featured-image-wrap {
	margin-bottom: 64px;
}

.hb-single-case-study__featured-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #f1f1f1;
}

.hb-single-case-study__content {
	display: flex;
	gap: 64px;
	align-items: flex-start;
	margin-bottom: 80px;
}

.hb-single-case-study__content-main {
	flex: 0 0 70%;
}

.hb-single-case-study__title {
	margin: 0 0 48px;
	font-weight: 700;
	font-size: clamp(40px, 4vw, 56px);
	line-height: 1.02;
	letter-spacing: -0.06em;
	color: var(--hb-single-text);
}

.hb-single-case-study__overview {
	max-width: 760px;
}

.hb-single-case-study__overview-title {
	margin: 0 0 20px;
	font-size: clamp(26px, 2.4vw, 38px);
	line-height: 1.1;
	letter-spacing: -0.04em;
	font-weight: 600;
	color: var(--hb-single-text);
}

.hb-single-case-study__overview-copy {
	font-size: 18px;
	line-height: 1.75;
	color: var(--hb-single-p);
}

.hb-single-case-study__overview-copy p {
	margin: 0 0 18px;
}

.hb-single-case-study__overview-copy p:last-child {
	margin-bottom: 0;
}

.hb-single-case-study__meta {
	flex: 0 0 30%;
	padding-top: 4px;
}

.hb-single-case-study__meta-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--hb-single-line);
}

.hb-single-case-study__meta-label {
	color: var(--hb-single-muted);
	font-size: 15px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.hb-single-case-study__meta-label::after {
	content: ":";
}
.hb-single-case-study__meta-value {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: var(--hb-single-text);
}

.hb-single-case-study__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 0 0 96px;
}

/* Every 3rd image spans the full row on its own. */
.hb-single-case-study__gallery-item:nth-child(3n) {
	grid-column: 1 / -1;
}

.hb-single-case-study__gallery-item {
	display: block;
	width: 100%;
	overflow: hidden;
	background: #f4f4f4;
	transform: translateY(20px);
	opacity: 0;
	transition: transform .6s ease, opacity .6s ease;
}

.hb-single-case-study__gallery-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hb-single-case-study__gallery-image {
	display: block;
	width: 100%;
	height: 580px;
	object-fit: cover;
	transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.hb-single-case-study__gallery-item:nth-child(3n) .hb-single-case-study__gallery-image {
	height: 560px;
}

.hb-single-case-study__gallery-item:hover .hb-single-case-study__gallery-image {
	transform: scale(1.03);
}

.hb-single-case-study__related {
	padding-top: 8px;
}

.hb-single-case-study__related-title {
	margin: 0 0 30px;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.05em;
	font-weight: 700;
}

.hb-single-case-study__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.hb-single-case-study__related-card {
	opacity: 0;
	transform: translateY(18px);
	transition: transform .65s ease, opacity .65s ease;
}

.hb-single-case-study__related-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hb-single-case-study__related-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hb-single-case-study__related-media {
	overflow: hidden;
	background: #f4f4f4;
}

.hb-single-case-study__related-image {
	display: block;
	width: 100%;
	height: 290px;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.hb-single-case-study__related-card:hover .hb-single-case-study__related-image {
	transform: scale(1.03);
}

.hb-single-case-study__related-body {
	padding-top: 18px;
}

.hb-single-case-study__related-industry {
	display: block;
	margin-bottom: 8px;
	color: var(--hb-single-muted);
	font-size: 11px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hb-single-case-study__related-name {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -0.05em;
	font-weight: 600;
	color: var(--hb-single-text);
}

@media (max-width: 980px) {
	.hb-single-case-study__content {
		flex-direction: column;
		gap: 28px;
	}

	.hb-single-case-study__content-main,
	.hb-single-case-study__meta {
		flex-basis: 100%;
		max-width: 100%;
	}

	.hb-single-case-study__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.hb-single-case-study__container {
		width: min(var(--hb-single-max), calc(100% - 28px));
	}

	.hb-single-case-study__featured-image-wrap {
		margin-bottom: 38px;
	}

	.hb-single-case-study__content {
		margin-bottom: 52px;
	}

	.hb-single-case-study__title {
		margin-bottom: 28px;
	}

	.hb-single-case-study__gallery {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 60px;
	}

	.hb-single-case-study__gallery-image,
	.hb-single-case-study__gallery-item:nth-child(3n) .hb-single-case-study__gallery-image {
		height: 420px;
	}

	.hb-single-case-study__related-grid {
		grid-template-columns: 1fr;
	}

	.hb-single-case-study__related-name {
		font-size: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hb-single-case-study__gallery-item,
	.hb-single-case-study__gallery-image,
	.hb-single-case-study__related-card,
	.hb-single-case-study__related-image {
		transition: none !important;
		animation: none !important;
	}
}

@media (max-width: 992px) {
	.hb-page-title { font-size: 48px; }
	.hb-hero-row { grid-template-columns: 1fr; }
	.hb-cards { grid-template-columns: 1fr; gap: 28px; }
	.hb-hero-right { text-align: left; }
}

/* ==========================================================================
11. SERVICES
========================================================================== */
.services-page {
	background: var(--paper);
	color: var(--ink);
}
.services-page__container {
	width: min(calc(100% - (var(--gutter) * 2)), var(--max));
	margin: 0 auto;
}

.services-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
	gap: 80px;
	padding: 120px 0 80px;
	align-items: start;
}
.services-hero__copy {
	max-width: 700px;
}
.services-hero__title {
	font-family: var(--font-text);
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 700;
	line-height: 0.94;
	margin: 0 0 28px;
}
.services-hero__intro {
	max-width: 700px;
	font-family: var(--font-text);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--ink);
	margin: 0;
}
.services-hero__tagline {
	text-align: right;
	font-family: var(--font-text);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 400;
	line-height: 1.05;
}
.services-hero__tagline p {
	margin: 0;
}
.services-hero__tagline-strong {
	font-weight: 700;
}

.services-listing {
	border-top: 1px solid var(--hairline);
}

/* Sticky stacking: each item pins below the nav and the next item's card
   slides up over it, so cards overlap as you scroll. */
.services-card__item {
	position: sticky;
	top: var(--nav-h);
	padding-bottom: 40px;
}
.services-card {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) minmax(320px, 420px);
	gap: 32px;
	align-items: start;
	padding: 64px 0;
	background: var(--paper);
	border-bottom: 1px solid var(--hairline);
}
.services-card__item:last-child .services-card {
	border-bottom: none;
}
.services-card__number {
	font-family: var(--font-text);
	font-size: clamp(40px, 3vw, 40px);
	font-weight: 300;
	color: #d4d4d4;
	line-height: 1;
	letter-spacing: -.08em;
}
.services-card__content {
	max-width: 540px;
}
.services-card__title {
	font-family: var(--font-text);
	font-size: clamp(42px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.02;
	margin: 0 0 24px;
}
.services-card__description {
	font-family: var(--font-text);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.85;
	color: var(--ink);
	margin: 0 0 28px;
}
.services-card__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.services-card__feature-item {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--hairline);
}
.services-card__feature {
	font-family: var(--font-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	color: var(--ink);
	display: inline-block;
	transition: color .3s ease, transform .3s ease;
}
.services-card__feature:hover {
	color: var(--plum-deep);
	text-decoration: underline;
}
.services-card__link {
	font-family: var(--font-ui);
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid currentColor;
	transition: color .3s ease;
}
.services-card__link:hover {
	color: var(--orange);
}
.services-card__media {
	overflow: hidden;
}
.services-card__image {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .5s var(--ease);
}
.services-card__media:hover .services-card__image {
	transform: scale(1.04);
}

/* Responsive */
@media (max-width: 1100px) {
	.services-hero {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.services-hero__tagline {
		text-align: left;
	}
	.services-card {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.services-card__number {
		font-size: clamp(64px, 8vw, 96px);
	}
	.services-card__features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.services-hero {
		padding: 84px 0 56px;
	}
	.services-hero__title {
		font-size: clamp(38px, 8vw, 62px);
	}
	.services-hero__intro {
		font-size: 16px;
	}
	.services-card__item {
		position: static;
		padding-bottom: 0;
	}
	.services-card {
		padding: 48px 0;
	}
	.services-card__title {
		font-size: clamp(32px, 7vw, 44px);
	}
	.services-card__description {
		font-size: 16px;
	}
	.services-card__features {
		gap: 14px;
	}
}

/* ==========================================================================
   18. CONTACT PAGE
   ========================================================================== */

/* Contact Section */
.atelier-contact-section {
	padding: 80px 0;
	background: var(--paper);
}

.atelier-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: flex-start;
}

/* Contact Info */
.atelier-contact-info {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.atelier-contact-info__block {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.atelier-contact-info__block h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.atelier-contact-info__block p {
	margin: 0;
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
}

.atelier-contact-info__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	transition: color .3s var(--ease);
}

.atelier-contact-info__link:hover {
	color: var(--plum);
}

.atelier-contact-info__link svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.atelier-contact-info__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	background: #25D366;
	color: white;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: background .3s var(--ease);
}

.atelier-contact-info__cta:hover {
	background: #1eb355;
}

.atelier-contact-info__cta svg {
	width: 20px;
	height: 20px;
}

/* Contact Form */
.atelier-contact-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.atelier-contact-form h2 {
	margin: 0;
	font-size: 32px;
	line-height: 1.3;
}

.atelier-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.atelier-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.atelier-form-group {
	display: flex;
	flex-direction: column;
}

.atelier-form-input {
	padding: 14px 16px;
	border: 1px solid var(--hairline);
	border-radius: 4px;
	font-family: var(--font-text);
	font-size: 16px;
	color: var(--ink);
	background: var(--paper);
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.atelier-form-input:focus {
	outline: none;
	border-color: var(--plum);
	box-shadow: 0 0 0 3px rgba(149, 74, 152, .1);
}

.atelier-form-input::placeholder {
	color: var(--muted-soft);
}

textarea.atelier-form-input {
	resize: vertical;
	min-height: 140px;
	font-family: var(--font-text);
}

select.atelier-form-input {
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23111" d="M1 1l5 5 5-5"/></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
	cursor: pointer;
}

.atelier-contact-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--ink);
	color: var(--paper);
	font-size: 16px;
	font-weight: 600;
	border: 2px solid var(--ink);
	border-radius: 4px;
	cursor: pointer;
	transition: all .3s var(--ease);
	text-decoration: none;
	display: inline-flex;
}

.atelier-contact-form__button:hover:not(:disabled) {
	background: transparent;
	color: var(--ink);
	transform: translateX(4px);
}

.atelier-contact-form__button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.atelier-contact-form__button svg {
	width: 20px;
	height: 20px;
	transition: transform .3s var(--ease);
}

.atelier-contact-form__button:hover:not(:disabled) svg {
	transform: translateX(4px);
}

.atelier-form__message {
	padding: 16px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
}

.atelier-form__message--success {
	background: #e8f5e9;
	color: #2e7d32;
	border-left: 4px solid #2e7d32;
}

.atelier-form__message--error {
	background: #ffebee;
	color: #c62828;
	border-left: 4px solid #c62828;
}

/* FAQ Section */
.atelier-faq {
	padding: 80px 0;
	background: var(--mist);
}

.atelier-faq__layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.65fr);
	gap: 64px;
	align-items: flex-start;
}

.atelier-faq__header {
	position: sticky;
	top: 132px;
	align-self: start;
}

.atelier-faq__title {
	margin: 0;
	max-width: 360px;
	font-size: clamp(42px, 4vw, 72px);
	line-height: 0.95;
	letter-spacing: -0.05em;
	font-weight: 700;
	text-align: left;
}

.atelier-faq__grid {
	display: flex;
	flex-direction: column;
}

.atelier-faq__item {
	border-top: 1px solid var(--line);
	padding: 20px 0;
}

.atelier-faq__item:last-child {
	border-bottom: 1px solid var(--line);
}

.atelier-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	color: var(--ink);
	transition: color .3s var(--ease);
}

.atelier-faq__question:hover {
	color: var(--plum);
}

.atelier-faq__question span {
	flex: 1;
	font-size: 18px;
	font-weight: 700;
}

.atelier-faq__question svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform .3s var(--ease);
	color: var(--ink);
}

.atelier-faq__question.active svg {
	transform: rotate(180deg);
}

.atelier-faq__answer {
	padding-top: 16px;
}

.atelier-faq__answer p {
	margin: 0;
	max-width: 620px;
	color: var(--muted);
	line-height: 1.6;
	font-size: 16px;
}

/* Responsive */
@media (max-width: 1100px) {
	.atelier-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.atelier-faq__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.atelier-faq__header {
		position: static;
	}

	.atelier-faq__title {
		max-width: none;
	}

	.atelier-form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.atelier-contact-section {
		padding: 60px 0;
	}

	.atelier-contact-info {
		gap: 32px;
	}

	.atelier-contact-form h2 {
		font-size: 24px;
	}

	.atelier-form {
		gap: 20px;
	}

	.atelier-form-row {
		gap: 20px;
	}

	.atelier-form-input {
		font-size: 16px;
		padding: 12px 14px;
	}

	.atelier-contact-form__button {
		padding: 14px 24px;
		font-size: 15px;
	}

	.atelier-faq {
		padding: 60px 0;
	}

	.atelier-faq__title {
		font-size: clamp(32px, 9vw, 48px);
		line-height: 1;
	}

	.atelier-faq__grid {
		gap: 0;
	}

	.atelier-faq__question {
		font-size: 15px;
		gap: 16px;
	}
}

@media (max-width: 560px) {
	:root { --gutter: 16px; }
	.services-page__container {
		width: min(calc(100% - 32px), var(--max));
	}
	.services-hero {
		padding: 64px 0 40px;
	}
	.services-card {
		padding: 36px 0;
	}
	.services-card__number {
		font-size: clamp(48px, 12vw, 72px);
	}
	.services-card__features {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
	 Bee Insights blog page
	 ========================================================================== */
.bee-insights-page {
	background: #ffffff;
	color: #070707;
}

.bee-insights {
	padding: 30px 0 96px;
}

.bee-insights__container {
	width: min(calc(100% - 52px), 1328px);
	margin-inline: auto;
}

.bee-insights__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	padding-top: 48px;
}

.bee-insights-card {
	min-width: 0;
}

.bee-insights-card__media {
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1.76 / 1;
	margin-bottom: 15px;
	background: #f2f2f2;
}

.bee-insights-card__image,
.bee-insights-card__gradient {
	display: block;
	width: 100%;
	height: 100%;
}

.bee-insights-card__image {
	object-fit: cover;
	transition: transform .55s var(--ease);
}

.bee-insights-card:hover .bee-insights-card__image {
	transform: scale(1.035);
}

.bee-insights-card__gradient {
	background:
		linear-gradient(135deg, #9848a1 0%, #aa5497 38%, #ca7865 66%, #efb827 100%);
}

.bee-insights-card__body {
	padding: 0 18px;
}

.bee-insights-card__meta {
	margin: 0 0 8px;
	color: #969696;
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.35;
}

.bee-insights-card__meta span::before {
	content: "|";
	margin: 0 9px;
	color: #bbbbbb;
}

.bee-insights-card__title {
	max-width: 31ch;
	margin: 0 0 7px;
	color: #101010;
	font-size: clamp(23px, 2.25vw, 30px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -.035em;
}

.bee-insights-card__title a {
	transition: color .2s ease;
}

.bee-insights-card__title a:hover {
	color: var(--plum-deep);
}

.bee-insights-card__excerpt {
	max-width: 64ch;
	margin: 0;
	color: #646464;
	font-size: 16px;
	line-height: 1.45;
}

.bee-insights-card__read-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 22px;
	color: var(--plum-deep);
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.bee-insights-card__read-time span {
	font-size: 12px;
}

@media (max-width: 900px) {
	.bee-insights {
		padding: 26px 0 72px;
	}

	.bee-insights__container {
		width: min(calc(100% - 32px), 720px);
	}

	.bee-insights__grid {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-top: 36px;
	}

	.bee-insights-card__body {
		padding: 0 8px;
	}
}

.hb-single-post {
	padding: 48px 0 96px;
	background: #faf9f7;
}

.hb-single-post__container {
	width: min(calc(100% - 48px), 1120px);
	margin-inline: auto;
}

.hb-single-post__header {
	padding-bottom: 28px;
}

.hb-single-post__kicker {
	margin: 0 0 12px;
	color: #7c7c7c;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hb-single-post__title {
	margin: 0;
	
	font-size: clamp(44px, 5vw, 72px);
	line-height: .96;
	letter-spacing: -.06em;
	font-weight: 700;
}

.hb-single-post__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	color: #555;
	font-family: var(--font-ui);
	font-size: 13px;
	line-height: 1.5;
}

.hb-single-post__author,
.hb-single-post__date,
.hb-single-post__read-time {
	color: #2f2f2f;
}

.hb-single-post__divider {
	color: #a1a1a1;
}

.hb-single-post__hero {
	overflow: hidden;
	margin-bottom: 28px;
	background: linear-gradient(135deg, #7d4fa0 0%, #dba463 100%);
}

.hb-single-post__hero--gradient {
	height: clamp(300px, 35vw, 520px);
}

.hb-single-post__image {
	display: block;
	width: 100%;
	height: clamp(300px, 35vw, 520px);
	object-fit: cover;
}

.hb-single-post__content {
	width: 100%;
	padding-top: 12px;
}

.hb-single-post__lead {
	margin: 0 0 28px;
	color: #404040;
	font-size: 17px;
	line-height: 1.75;
}

.hb-single-post__entry {
	color: #1f1f1f;
	font-size: 17px;
	line-height: 1.9;
}

.hb-single-post__entry > *:first-child {
	margin-top: 0;
}

.hb-single-post__entry p,
.hb-single-post__entry ul,
.hb-single-post__entry ol,
.hb-single-post__entry blockquote,
.hb-single-post__entry h2,
.hb-single-post__entry h3 {
	margin-top: 0;
	margin-bottom: 24px;
}

.hb-single-post__entry h2,
.hb-single-post__entry h3 {
	font-size: clamp(28px, 2.3vw, 38px);
	line-height: 1.1;
	letter-spacing: -.04em;
}

.hb-single-post__entry ul,
.hb-single-post__entry ol {
	padding-left: 22px;
}

.hb-single-post__entry blockquote {
	padding-left: 18px;
	border-left: 2px solid rgba(17, 17, 17, .25);
	color: #2b2b2b;
	font-style: italic;
}

.hb-single-post__entry img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 20px 0;
}

.hb-single-post__comments {
	max-width: 760px;
	margin: 52px auto 0;
	padding-top: 32px;
	border-top: 1px solid rgba(17, 17, 17, .12);
}

.hb-single-post__comments .comment-respond,
.hb-single-post__comments .comments-area {
	width: 100%;
}

.hb-single-post__comments .comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hb-single-post__comments .comment {
	padding: 20px 0;
	border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.hb-single-post__comments .comment-meta,
.hb-single-post__comments .comment-author,
.hb-single-post__comments .comment-metadata {
	font-family: var(--font-ui);
	font-size: 12px;
	color: #666;
}

.hb-single-post__comments .comment-body {
	font-size: 15px;
	line-height: 1.7;
	color: #1f1f1f;
}

.hb-single-post__comments .comment-reply-link,
.hb-single-post__comments .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.hb-single-post__comments .comment-reply-link:hover,
.hb-single-post__comments .submit:hover {
	background: transparent;
	color: #111;
	transform: translateY(-1px);
}

.hb-single-post__comments .comment-form label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #2d2d2d;
}

.hb-single-post__comments .comment-form input,
.hb-single-post__comments .comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(17, 17, 17, .18);
	background: #fff;
	font: inherit;
	color: #111;
}

.hb-single-post__comments .comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.hb-single-post__comments .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
	font-size: 14px;
	color: #333;
}

.hb-single-post__comments .comment-form-cookies-consent input {
	width: auto;
}

@media (max-width: 900px) {
	.hb-single-post {
		padding-top: 28px;
	}

	.hb-single-post__content,
	.hb-single-post__comments {
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	.bee-insights-card__excerpt {
		font-size: 12px;
	}

	.bee-insights-card__media {
		aspect-ratio: 1.45 / 1;
	}

	.hb-single-post__container {
		width: min(calc(100% - 32px), 760px);
	}

	.hb-single-post__title {
		font-size: clamp(32px, 11vw, 44px);
	}

	.hb-single-post__lead,
	.hb-single-post__entry {
		font-size: 15px;
	}
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Cookies Policy)
   ========================================================================== */
.legal-page { padding-bottom: 96px; }
.legal-content {
	max-width: 760px;
	margin: 48px auto 0;
	font-family: var(--font-text);
	color: var(--ink);
}
.legal-content > p { font-size: 17px; line-height: 1.8; color: #333; margin: 0 0 24px; }
.legal-content h2 {
	margin: 48px 0 16px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul {
	margin: 0 0 24px;
	padding-left: 22px;
	color: #333;
	font-size: 17px;
	line-height: 1.8;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--plum); text-decoration: underline; }
.legal-content a:hover { color: var(--plum-deep); }
.legal-content strong { font-weight: 700; color: var(--ink); }

@media (max-width: 700px) {
	.legal-content { margin-top: 32px; }
	.legal-content > p,
	.legal-content ul { font-size: 15px; }
	.legal-content h2 { font-size: 22px; margin: 36px 0 14px; }
}

