/* =========================================================================
   ONE DOOR SOLUTION — main.css
   Design tokens: Red #f40009 · Black-ish #0d0d0d · warm off-white background
   Display type: Sora  |  Body type: Inter
   Signature motif: "the door" — hinge-swing hero graphic + door-frame corners
   ========================================================================= */

:root{
	--red: #f40009;
	--red-dark: #c50007;
	--red-tint: #fff0ef;
	--ink: #0d0d0d;
	--ink-soft: #29282a;
	--grey: #6c6a6c;
	--grey-light: #9a979a;
	--line: #e9e5e1;
	--bg: #fdfcfa;
	--bg-alt: #f7f4f0;
	--white: #ffffff;

	--font-display: 'Sora', sans-serif;
	--font-body: 'Inter', sans-serif;

	--pad-x: 24px; /* single source of truth for horizontal side-padding — updated per breakpoint below */

	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 28px;
	--shadow-sm: 0 4px 18px rgba(13,13,13,.06);
	--shadow-md: 0 18px 50px rgba(13,13,13,.10);
	--ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{
	scroll-behavior: smooth;
	overflow-x: hidden; /* prevents any horizontal scrollbar/gap (e.g. from the off-canvas mobile menu)
	                       — applied to html, NOT body, because overflow-x on body breaks position:sticky */
}
@media (prefers-reduced-motion: reduce){
	html{ scroll-behavior: auto; }
	*, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body.ods-theme{
	margin: 0;
	background: var(--bg);
	color: var(--ink-soft);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}


/* Horizontal-scroll safety net — scoped to content areas only (NOT html/body/header),
   so it can never break the sticky header's positioning context. */
main, .ods-footer{ overflow-x: hidden; max-width: 100%; }

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); color: var(--ink); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; }
p{ margin: 0 0 1em; }
button{ font-family: inherit; }

:focus-visible{ outline: 3px solid var(--red); outline-offset: 3px; }

.ods-container{
	max-width: 1240px;
	margin: 0 auto;
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
}

.ods-eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 14px;
}
.ods-eyebrow::before{
	content: "";
	width: 22px; height: 2px;
	background: var(--red);
	display: inline-block;
}

.ods-section{ padding: 80px 0; position: relative; }
.ods-section--alt{ background: var(--bg-alt); }
.ods-section--ink{ background: var(--ink); color: #cfcdd0; }
.ods-section--ink h2, .ods-section--ink h3{ color: var(--white); }
.ods-section-head{ max-width: 680px; margin-bottom: 56px; }
.ods-section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.ods-section-head h2{ font-size: clamp(28px, 3.6vw, 44px); }
.ods-section-head p{ color: var(--grey); font-size: 17px; }

/* -------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------- */
.ods-btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
	cursor: pointer;
	white-space: nowrap;
}
.ods-btn i{ font-size: 18px; transition: transform .3s var(--ease); }
.ods-btn:hover i{ transform: translate(3px,-3px); }
.ods-btn--primary{ background: var(--red); color: var(--white); box-shadow: 0 12px 30px rgba(244,0,9,.28); }
.ods-btn--primary:hover{ background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(244,0,9,.36); }
.ods-btn--ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.ods-btn--ghost:hover{ border-color: var(--ink); transform: translateY(-2px); }
.ods-btn--on-dark{ background: var(--white); color: var(--ink); }
.ods-btn--on-dark:hover{ background: var(--red); color: var(--white); transform: translateY(-2px); }
.ods-btn--block{ width: 100%; justify-content: center; }

/* -------------------------------------------------------------------
   Top utility bar
   ------------------------------------------------------------------- */
.ods-topbar{
	background: var(--ink);
	color: #d7d5d8;
	font-size: 13.5px;
}
.ods-topbar__inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 9px;
	padding-bottom: 9px;
	gap: 16px;
	flex-wrap: wrap;
}
.ods-topbar__contact{ display: flex; gap: 22px; flex-wrap: wrap; }
.ods-topbar__contact a{ display: inline-flex; align-items: center; gap: 6px; }
.ods-topbar__contact a:hover{ color: var(--red); }
.ods-topbar__social{ display: flex; align-items: center; gap: 16px; }
.ods-topbar__loc{ display: inline-flex; align-items: center; gap: 6px; color: #a9a7ab; }
.ods-topbar__social a{ font-size: 16px; }
.ods-topbar__social a:hover{ color: var(--red); }

@media (max-width: 780px){
	.ods-topbar__loc{ display: none; }
}

/* -------------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------------- */
.ods-header{
	position: -webkit-sticky; /* older mobile Safari requires the prefixed value to work at all */
	position: sticky;
	top: 0; z-index: 500;
	background: rgba(253,252,250,.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.ods-header.is-scrolled{ box-shadow: 0 6px 24px rgba(13,13,13,.06); }
.ods-header__inner{
	display: flex; align-items: center; justify-content: space-between;
	padding-top: 11px; padding-bottom: 11px; gap: 24px;
}
.ods-logo{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ods-logo a{ display: flex; align-items: center; gap: 12px; }
.ods-logo img,
.ods-logo .custom-logo,
.ods-logo img.custom-logo{
	height: 50px !important;
	width: auto !important;
	max-width: 160px !important;
	max-height: 50px !important;
	object-fit: contain;
}
/* Extra safety net: the_custom_logo() sometimes renders outside expected
   nesting on some setups — this catches it globally too. */
.ods-header img.custom-logo{
	height: 50px !important;
	width: auto !important;
	max-height: 50px !important;
}
.ods-logo__text{ font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); }
.ods-logo__text em{ font-style: normal; color: var(--red); }

.ods-nav__list{ display: flex; align-items: center; gap: 4px; }
.ods-nav__list > li > a{
	display: block; padding: 10px 18px; font-weight: 600; font-size: 15px;
	color: var(--ink-soft); border-radius: 999px; position: relative;
	transition: color .25s var(--ease), background .25s var(--ease);
}
.ods-nav__list > li > a:hover,
.ods-nav__list > li.current-menu-item > a{ color: var(--red); background: var(--red-tint); }

.ods-header__cta{ flex-shrink: 0; }
.ods-header__cta .ods-btn{ padding: 12px 24px; font-size: 14px; }

.ods-burger{
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; background: none; border: 1px solid var(--line); border-radius: 10px;
	cursor: pointer;
}
.ods-burger span{ width: 20px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.ods-burger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.ods-burger.is-active span:nth-child(2){ opacity: 0; }
.ods-burger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }


@media (max-width: 960px){
	.ods-header__inner{ position: relative; }
	.ods-nav{
		position: absolute; top: 100%; right: 0; margin-top: 10px;
		width: min(260px, 88vw);
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-md);
		padding: 8px;
		max-height: 74vh; overflow-y: auto;
		opacity: 0; visibility: hidden; transform: translateY(-8px);
		transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
		z-index: 550;
	}
	.ods-nav.is-open{ opacity: 1; visibility: visible; transform: translateY(0); }
	.ods-nav__list{ flex-direction: column; align-items: stretch; gap: 2px; }
	.ods-nav__list > li > a{ padding: 12px 14px; font-size: 15.5px; border-radius: 8px; display:block; }
	.ods-nav__list > li > a:hover,
	.ods-nav__list > li.current-menu-item > a{ background: var(--red-tint); }
	.ods-header__cta{ display: none; }
	.ods-burger{ display: flex; }
}

/* -------------------------------------------------------------------
   HERO — the door motif
   ------------------------------------------------------------------- */
.ods-hero{
	padding: 56px 0 48px;
	overflow: hidden;
	position: relative;
	background:
		radial-gradient(700px 420px at 84% -6%, var(--red-tint) 0%, transparent 60%);
}
.ods-hero__grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.ods-hero__eyebrow{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin-bottom:22px; }
.ods-hero h1{ font-size: clamp(36px, 5vw, 60px); margin-bottom: 22px; }
.ods-hero h1 .ods-hero__accent{ color: var(--red); }
.ods-hero p.ods-hero__lead{ font-size: 18px; color: var(--grey); max-width: 480px; margin-bottom: 32px; }
.ods-hero__actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.ods-hero__stats{ display: flex; gap: 40px; flex-wrap: wrap; }
.ods-hero__stat b{ display:block; font-family: var(--font-display); font-size: 30px; color: var(--ink); }
.ods-hero__stat span{ font-size: 13.5px; color: var(--grey); }

/* Hero visual — real photo in a rounded frame (kept deliberately simple:
   a fancy CSS-only illustration here was fragile across hosting setups,
   an actual photo is robust everywhere and still on-brand). */
.ods-hero-visual{ position: relative; width: 100%; max-width: 460px; margin: 0 auto; }
.ods-hero-visual__ratio{ position: relative; width: 100%; padding-top: 108%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--ink); }
.ods-hero-visual__ratio img{ position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.ods-hero-visual__overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(13,13,13,0) 38%, rgba(13,13,13,.82) 100%); }
.ods-hero-visual__caption{ position:absolute; left:24px; right:24px; bottom:22px; display:flex; align-items:center; gap:14px; color:var(--white); }
.ods-hero-visual__caption i{ width:44px; height:44px; flex-shrink:0; border-radius:12px; background:var(--red); display:flex; align-items:center; justify-content:center; font-size:19px; }
.ods-hero-visual__caption b{ display:block; font-family:var(--font-display); font-size:15px; }
.ods-hero-visual__caption small{ font-size:12.5px; color:#d7d5d8; }
.ods-hero-visual__tag{
	position: absolute; top: -18px; right: -18px; background: var(--white);
	border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 14px 20px;
	font-family: var(--font-display); font-weight: 700; text-align:center;
}
.ods-hero-visual__tag b{ display:block; font-size: 26px; color: var(--red); line-height:1; }
.ods-hero-visual__tag span{ font-size: 11.5px; color: var(--grey); font-weight:500; }

@media (max-width: 960px){
	.ods-hero__grid{ grid-template-columns: 1fr; }
	.ods-hero__stats{ gap: 28px; }
	.ods-hero-visual{ margin-top: 24px; max-width: 340px; }
}

/* -------------------------------------------------------------------
   Marquee — service ticker / client logos
   ------------------------------------------------------------------- */
.ods-marquee{
	border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
	background: var(--ink); overflow: hidden; padding: 18px 0;
}
.ods-marquee__track{ display: flex; width: max-content; animation: odsMarquee 32s linear infinite; }
.ods-marquee:hover .ods-marquee__track{ animation-play-state: paused; }
.ods-marquee__item{
	display: flex; align-items: center; gap: 12px; padding: 0 34px; white-space: nowrap;
	font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #d7d5d8;
	border-right: 1px solid rgba(255,255,255,.12);
}
.ods-marquee__item i{ color: var(--red); font-size: 18px; }
@keyframes odsMarquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.ods-clients-strip{ background: var(--white); overflow: hidden; padding: 34px 0; }
.ods-clients-strip__track{ display:flex; align-items:center; width:max-content; gap: 64px; animation: odsMarquee 26s linear infinite; }
.ods-clients-strip:hover .ods-clients-strip__track{ animation-play-state: paused; }
/* Full-color, crisp logos — sized by height only so small source images don't get
   stretched (which is what caused the blurry look). object-fit keeps proportions.
   Now serving the full-resolution uploaded file (see page templates) instead of a
   pre-shrunk WP thumbnail, for the sharpest possible result. */
.ods-client-logo{
	height: 58px; width: auto; max-width: 190px;
	object-fit: contain; image-rendering: -webkit-optimize-contrast;
	opacity: .94; transition: opacity .3s var(--ease), transform .3s var(--ease);
	flex-shrink: 0;
}
.ods-client-logo:hover{ opacity: 1; transform: translateY(-2px); }
.ods-client-logo--text{ font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--grey-light); white-space: nowrap; }

/* -------------------------------------------------------------------
   Reveal-on-scroll utility
   ------------------------------------------------------------------- */
.ods-reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.ods-reveal.is-visible{ opacity: 1; transform: translateY(0); }
.ods-reveal-stagger > *{ opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.ods-reveal-stagger.is-visible > *{ opacity: 1; transform: translateY(0); }
.ods-reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .05s; }
.ods-reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .12s; }
.ods-reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .19s; }
.ods-reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .26s; }
.ods-reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .33s; }
.ods-reveal-stagger.is-visible > *:nth-child(6){ transition-delay: .40s; }

/* -------------------------------------------------------------------
   About snippet (home) + full about blocks
   ------------------------------------------------------------------- */
.ods-about-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.ods-about-media{ position: relative; }
.ods-about-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.ods-about-media__frame{
	position: absolute; top: -20px; left: -20px; width: 70%; height: 70%;
	border: 3px solid var(--red); border-radius: var(--radius-lg); z-index: -1;
}
.ods-about-media__tag{
	position: absolute; bottom: -22px; right: -22px; background: var(--ink); color: var(--white);
	padding: 18px 22px; border-radius: var(--radius-md); font-family: var(--font-display);
	box-shadow: var(--shadow-md);
}
.ods-about-media__tag b{ font-size: 26px; color: var(--red); display:block; }
.ods-about-media__tag span{ font-size: 12.5px; color: #cfcdd0; }

.ods-about-copy h2{ font-size: clamp(26px,3.4vw,38px); }
.ods-about-copy p{ color: var(--grey); font-size: 16.5px; }

.ods-vm-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 36px; }
.ods-vm-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; }
.ods-vm-card i{ font-size: 30px; color: var(--red); margin-bottom: 14px; display:block; }
.ods-vm-card h3{ font-size: 19px; }
.ods-vm-card p{ color: var(--grey); font-size: 15px; margin-bottom: 0; }

@media (max-width: 860px){
	.ods-about-grid{ grid-template-columns: 1fr; gap: 40px; }
	.ods-vm-grid{ grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------
   Services — "doors" grid (home preview + services page)
   ------------------------------------------------------------------- */
.ods-services-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.ods-door-card{
	position: relative; background: var(--white); border: 1px solid var(--line);
	border-radius: var(--radius-md); padding: 34px 28px; overflow: hidden;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.ods-door-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.ods-door-card__num{
	font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .1em;
	color: var(--red); margin-bottom: 18px; display:inline-block;
}
.ods-door-card__icon{
	width: 56px; height: 56px; border-radius: 14px; background: var(--red-tint); color: var(--red);
	display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px;
	transition: background .35s var(--ease), color .35s var(--ease);
}
.ods-door-card:hover .ods-door-card__icon{ background: var(--red); color: var(--white); }
.ods-door-card h3{ font-size: 20px; margin-bottom: 10px; }
.ods-door-card p{ color: var(--grey); font-size: 15px; margin-bottom: 18px; }
.ods-door-card__link{ font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items:center; gap: 6px; }
.ods-door-card:hover .ods-door-card__link{ color: var(--red); }
.ods-door-card__link i{ transition: transform .3s var(--ease); }
.ods-door-card:hover .ods-door-card__link i{ transform: translateX(4px); }

@media (max-width: 1020px){ .ods-services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .ods-services-grid{ grid-template-columns: 1fr; } }

/* Full services page — accordion detail blocks */
.ods-service-detail{
	display: grid; grid-template-columns: 340px 1fr; gap: 48px;
	padding: 64px 0; border-bottom: 1px solid var(--line);
	scroll-margin-top: 130px;
}
.ods-service-detail:last-child{ border-bottom: none; }
.ods-service-detail__side{ position: sticky; top: 130px; align-self: start; }
.ods-service-detail__num{ font-family: var(--font-display); color: var(--red-tint); -webkit-text-stroke: 1.5px var(--red); font-size: 54px; font-weight: 800; line-height:1; margin-bottom: 18px; }
.ods-service-detail__icon{ width: 62px; height: 62px; border-radius: 16px; background: var(--red); color: var(--white); display:flex; align-items:center; justify-content:center; font-size: 28px; margin-bottom: 20px; }
.ods-service-detail__side h2{ font-size: 26px; }
.ods-service-detail__side .ods-tagline{ color: var(--red); font-weight: 600; font-size: 14.5px; margin-bottom: 12px; display:block; }
.ods-service-detail__side p{ color: var(--grey); font-size: 15px; }

.ods-service-list{ display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 28px; }
.ods-service-list li{ display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-soft); padding: 10px 0; border-bottom: 1px dashed var(--line); }
.ods-service-list li i{ color: var(--red); font-size: 16px; margin-top: 3px; flex-shrink:0; }

@media (max-width: 900px){
	.ods-service-detail{ grid-template-columns: 1fr; gap: 24px; }
	.ods-service-detail__side{ position: static; }
	.ods-service-list{ grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------
   Why choose us
   ------------------------------------------------------------------- */
.ods-why-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ods-why-card{ padding: 30px 26px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line); }
.ods-why-card__num{ font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--red-tint); -webkit-text-stroke: 1.2px var(--red); margin-bottom: 14px; }
.ods-why-card h3{ font-size: 18px; }
.ods-why-card p{ color: var(--grey); font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 1020px){ .ods-why-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .ods-why-grid{ grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------
   Process / how we work
   ------------------------------------------------------------------- */
.ods-process{ display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.ods-process::before{ content:""; position:absolute; top: 27px; left: 6%; right: 6%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px); }
.ods-process-step{ position: relative; padding: 0 18px; text-align:center; }
.ods-process-step__dot{ width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--red); color: var(--red); font-family: var(--font-display); font-weight: 800; display:flex; align-items:center; justify-content:center; margin: 0 auto 20px; position:relative; z-index:1; }
.ods-process-step h3{ font-size: 17px; }
.ods-process-step p{ color: var(--grey); font-size: 14.5px; }
@media (max-width: 860px){
	.ods-process{ grid-template-columns: 1fr; gap: 36px; }
	.ods-process::before{ display:none; }
}

/* -------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------- */
.ods-testi-track{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ods-testi-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; display:flex; flex-direction:column; }
.ods-stars{ display:flex; gap: 3px; margin-bottom: 14px; }
.ods-stars i{ font-size: 17px; color: var(--red); }
.ods-stars i.fa-regular{ color: var(--line); } /* empty/outline star */
.ods-testi-card p{ color: var(--ink-soft); font-size: 15px; flex-grow:1; }
.ods-testi-person{ display:flex; align-items:center; gap: 12px; margin-top: 16px; }
.ods-testi-person img{ width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.ods-testi-person b{ display:block; font-size: 14.5px; }
.ods-testi-person span{ font-size: 13px; color: var(--grey); }
@media (max-width: 960px){ .ods-testi-track{ grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------- */
.ods-cta{
	background: var(--ink); border-radius: var(--radius-lg); padding: 64px;
	display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
	position: relative; overflow: hidden;
}
.ods-cta::after{ content:""; position:absolute; width: 320px; height: 320px; background: var(--red); opacity:.16; border-radius: 50%; right: -100px; top: -120px; }
.ods-cta h2{ color: var(--white); font-size: clamp(24px,3vw,34px); max-width: 520px; margin-bottom: 8px; }
.ods-cta p{ color: #b9b7bb; margin-bottom: 0; }
.ods-cta__actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* -------------------------------------------------------------------
   Contact page
   ------------------------------------------------------------------- */
.ods-contact-grid{ display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; }
.ods-contact-info{ display:flex; flex-direction:column; gap: 18px; }
.ods-info-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; display:flex; gap: 16px; align-items:flex-start; }
.ods-info-card i{ width: 46px; height:46px; flex-shrink:0; border-radius: 12px; background: var(--red-tint); color: var(--red); display:flex; align-items:center; justify-content:center; font-size:20px; }
.ods-info-card h4{ font-size: 15.5px; margin-bottom: 4px; }
.ods-info-card p{ font-size: 14.5px; color: var(--grey); margin-bottom:0; }
.ods-map-wrap{ border-radius: var(--radius-md); overflow:hidden; border: 1px solid var(--line); margin-top: 6px; }
.ods-map-wrap iframe{ width:100%; height: 260px; border:0; display:block; }

.ods-form-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.ods-form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ods-field{ margin-bottom: 18px; }
.ods-field label{ display:block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.ods-field input, .ods-field select, .ods-field textarea{
	width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
	font-family: var(--font-body); font-size: 15px; background: var(--bg); transition: border-color .25s, box-shadow .25s;
}
.ods-field input:focus, .ods-field select:focus, .ods-field textarea:focus{ border-color: var(--red); box-shadow: 0 0 0 4px var(--red-tint); outline:none; }
.ods-field textarea{ resize: vertical; min-height: 130px; }
.ods-hp{ position:absolute; left:-9999px; opacity:0; }
.ods-form-alert{ padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-bottom: 20px; }
.ods-form-alert--success{ background: #eafbef; color: #197a3f; border:1px solid #bfe9ce; }
.ods-form-alert--error{ background: #fdecec; color: #a3231f; border:1px solid #f4c6c4; }

@media (max-width: 900px){
	.ods-contact-grid{ grid-template-columns: 1fr; }
	.ods-form-row{ grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------
   Basic content pages (privacy policy / fallback)
   ------------------------------------------------------------------- */
.ods-basic-content{ padding: 72px 0 96px; max-width: 860px; }
.ods-basic-content h1{ font-size: clamp(30px,4vw,42px); }
.ods-basic-content h2{ font-size: 24px; margin-top: 1.6em; }
.ods-basic-content p, .ods-basic-content li{ color: var(--grey); font-size: 16px; }
.ods-basic-content ul{ list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.ods-page-hero{ padding: 56px 0 20px; }
.ods-page-hero h1{ font-size: clamp(32px,4.4vw,50px); }
.ods-page-hero p{ color: var(--grey); font-size: 17px; max-width: 640px; }
.ods-breadcrumb{ font-size: 13.5px; color: var(--grey); margin-bottom: 18px; }
.ods-breadcrumb a{ color: var(--red); font-weight: 600; }

/* -------------------------------------------------------------------
   Back to top
   ------------------------------------------------------------------- */
.ods-to-top{
	position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; border-radius: 50%;
	background: var(--ink); color: var(--white); display:flex; align-items:center; justify-content:center;
	font-size: 20px; opacity:0; visibility:hidden; transform: translateY(10px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
	z-index: 300; box-shadow: var(--shadow-md);
}
.ods-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.ods-to-top:hover{ background: var(--red); }

/* -------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.ods-footer{ background: var(--ink); color: #b9b7bb; padding-top: 72px; }
.ods-footer__top{ display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.ods-footer__brand img{ margin-bottom: 18px; }
.ods-footer__brand p{ font-size: 14.5px; max-width: 300px; }
.ods-footer__social{ display:flex; gap: 12px; margin-top: 8px; }
.ods-footer__social a{ width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; transition: background .3s, border-color .3s; }
.ods-footer__social a:hover{ background: var(--red); border-color: var(--red); }
.ods-footer__col h4{ color: var(--white); font-size: 15.5px; margin-bottom: 18px; }
.ods-footer__col ul{ display:flex; flex-direction:column; gap: 11px; }
.ods-footer__col a{ font-size: 14.5px; }
.ods-footer__col a:hover{ color: var(--red); }
.ods-footer__contact ul{ gap: 14px; }
.ods-footer__contact li{ display:flex; align-items:flex-start; gap: 10px; font-size: 14.5px; }
.ods-footer__contact i{ color: var(--red); margin-top: 3px; flex-shrink: 0; }
/* Long unbroken strings (emails, addresses) must wrap instead of forcing horizontal
   scroll on narrow screens — this is what was clipping the footer/Privacy Policy link. */
.ods-footer__contact li span,
.ods-footer__contact li a,
.ods-topbar__contact a{ overflow-wrap: anywhere; word-break: break-word; }
.ods-footer__bottom{ border-top: 1px solid rgba(255,255,255,.1); padding: 22px 24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 12px; font-size: 13.5px; max-width: 100%; }
.ods-footer__bottom p{ margin: 0; }
.ods-footer__legal{ display:flex; gap: 20px; flex-wrap:wrap; }
.ods-footer__legal a:hover{ color: var(--red); }

@media (max-width: 960px){
	.ods-footer__top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
	.ods-footer__top{ grid-template-columns: 1fr; }
	.ods-footer__bottom{ flex-direction: column; align-items: flex-start; text-align: left; }
}

/* -------------------------------------------------------------------
   Responsive padding tightening (tablet & mobile)
   Single source of truth: --pad-x controls every container's side padding,
   so header / topbar / sections can never drift out of sync again.
   ------------------------------------------------------------------- */
@media (max-width: 900px){
	:root{ --pad-x: 16px; }
	.ods-section{ padding: 60px 0; }
	.ods-section-head{ margin-bottom: 40px; }
	.ods-cta{ padding: 40px 28px; }
	.ods-form-card{ padding: 28px; }
	.ods-service-detail{ padding: 44px 0; }
}
@media (max-width: 600px){
	:root{ --pad-x: 14px; }
	.ods-section{ padding: 48px 0; }
	.ods-hero{ padding: 28px 0 24px; }
	.ods-topbar__inner{ padding-top: 8px; padding-bottom: 8px; }
	.ods-topbar__contact{ gap: 12px; }
	.ods-topbar__social{ gap: 10px; }
	.ods-header__inner{ padding-top: 8px; padding-bottom: 8px; gap: 12px; }
	.ods-logo img, .ods-logo .custom-logo, .ods-header img.custom-logo{ height: 38px !important; max-height: 38px !important; }
	.ods-vm-card, .ods-why-card, .ods-testi-card{ padding: 18px; }
	.ods-cta{ padding: 28px 18px; }
	.ods-cta::after{ display: none; }
	.ods-form-card{ padding: 20px; }
	.ods-info-card{ padding: 16px; }
}
