/*------------------------------------------------------------------
[Kizuna Property Group — Brand Theme Override]

Loaded AFTER style.css. Re-skins the base template to the Kizuna
brand identity. Do not edit style.css — keep all brand changes here
so the base template stays upgradeable.

Palette (from brand guidelines):
  Ink Navy    #16283F   primary / headings / dark sections
  Brass       #A9834B   accent / CTAs / rules
  Deep Green  #29473A   secondary accent
  Warm Stone  #F1ECE1   soft background tint
-------------------------------------------------------------------*/

:root {
	--k-navy: #16283F;
	--k-navy-deep: #0F1D2E;
	--k-brass: #A9834B;
	--k-brass-light: #C9A063;
	--k-green: #29473A;
	--k-stone: #F1ECE1;
	--k-stone-dark: #E3DACA;
	--k-body: #5A6472;
	--k-white: #FFFFFF;
}

/*------------------------------------*\
    #BASE TYPOGRAPHY
\*------------------------------------*/
body {
	color: var(--k-body);
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
}

/* text-transform:none — the base template capitalises every word,
   which breaks sentence-case headings like "A partnership, not a portal". */
h1, h2, h3, h4, h5, h6,
.heading--title,
.slide--headline,
.count-content .counting {
	color: var(--k-navy);
	font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
	font-weight: 700;
	text-transform: none;
}

a {
	color: var(--k-brass);
	transition: color .25s ease;
}

a:hover,
a:focus {
	color: var(--k-navy);
}

/*------------------------------------*\
    #THEME COLOUR REMAP
    Template accent #d8ae76 -> Kizuna brass
\*------------------------------------*/
::-moz-selection { background: var(--k-brass); color: #fff; }
::selection      { background: var(--k-brass); color: #fff; }

.bg-theme,
.bg-overlay-theme:before,
.btn--primary,
.navbar-toggle .icon-bar,
.testimonial-panel:hover,
.page-dark .testimonial-panel:hover {
	background-color: var(--k-brass);
}

.text-theme,
.feature-panel .feature--icon,
.portfolio-filter li a.active-filter,
.portfolio-filter li a:hover {
	color: var(--k-brass);
}

/* Section heading rule under titles */
.heading--divider {
	background-color: transparent;
	position: relative;
	height: 2px;
	width: 70px;
}

.heading--divider:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	height: 2px;
	background-color: var(--k-brass);
}

/* Centred variant — the rule must win regardless of class order */
.heading--divider.heading--center,
.text--center .heading--divider {
	margin-left: auto;
	margin-right: auto;
}

.heading--divider.heading--center:before,
.text--center .heading--divider:before {
	left: 50%;
	margin-left: -35px;
}

.heading--desc {
	color: var(--k-body);
	font-size: 16px;
	line-height: 1.9;
}

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/* Base .btn uses padding:0 with a fixed line-height and a preset
   width, which clips longer labels. Reset to intrinsic sizing. */
.btn {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-size: 12.5px;
	border-radius: 2px;
	display: inline-block;
	width: auto;
	min-width: 0;
	height: auto;
	line-height: 1.4;
	padding: 17px 34px;
	white-space: nowrap;
	vertical-align: middle;
	transition: all .28s ease;
}

.btn--primary {
	background-color: var(--k-brass);
	border-color: var(--k-brass);
	color: #fff;
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
	background-color: var(--k-navy);
	border-color: var(--k-navy);
	color: #fff;
}

/* Bordered button on the hero (over dark imagery) */
.btn--bordered {
	background-color: transparent;
	border: 2px solid var(--k-brass-light);
	color: #fff;
}

.btn--bordered:hover,
.btn--bordered:focus,
.btn--bordered:active {
	background-color: var(--k-brass);
	border-color: var(--k-brass);
	color: #fff;
}

.btn--white {
	background-color: #fff;
	border-color: #fff;
	color: var(--k-navy);
}

.btn--white:hover,
.btn--white:focus {
	background-color: var(--k-brass);
	border-color: var(--k-brass);
	color: #fff;
}

/*------------------------------------*\
    #HEADER / NAVIGATION
\*------------------------------------*/
/* The transparent header must float over the hero, not reserve its
   own band above it. The base rule is `.header { height: 100px }`,
   which otherwise leaves a strip of the .wrapper background showing. */
.header.header-transparent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: transparent;
	z-index: 1030;
}

/* Transparent only while at the top of the page. The :not(.affix)
   guard matters — Bootstrap's affix plugin adds .affix on scroll, and
   without it the sticky bar stays see-through and page content shows
   through it. */
.header-transparent .navbar:not(.affix),
.header-transparent #primary-menu:not(.affix),
.header-transparent .navbar.navbar-fixed-top:not(.affix),
.header-transparent .navbar-collapse {
	background-color: transparent !important;
	border: 0;
	box-shadow: none;
}

/* Scrolled state: solid navy bar so links stay legible over any section */
.header-transparent .navbar.affix,
.header-fixed .navbar.affix {
	background-color: var(--k-navy) !important;
	box-shadow: 0 2px 16px rgba(11, 22, 36, .28);
	border: 0;
}

.header-transparent .navbar.affix .navbar-nav > li > a,
.header-fixed .navbar.affix .navbar-nav > li > a {
	color: rgba(255, 255, 255, .92);
}

.header-transparent .navbar.affix .navbar-nav > li > a:hover,
.header-transparent .navbar.affix .navbar-nav > li.active > a {
	color: var(--k-brass-light);
}

/* Keep the light lockup in the scrolled state — the bar is navy, not
   white, so the base template's swap to the dark logo would vanish. */
.header-fixed .navbar.affix .logo-light {
	display: inline-block;
}

.header-fixed .navbar.affix .logo-dark {
	display: none;
}

/* Sits above the hero overlay */
.header-transparent .navbar .container {
	position: relative;
	z-index: 2;
}

/* SVG logos need explicit sizing — without it they collapse in the
   base template's Bootstrap 3 navbar. */
.header .navbar .logo {
	display: inline-block;
	line-height: 90px;
}

.header .navbar .logo img {
	height: 46px;
	width: 199px; /* preserves the 520x120 lockup ratio */
	max-width: 100%;
	vertical-align: middle;
}

/* Transparent header over the hero -> light lockup.
   Scrolled/affixed header on white -> dark lockup. */
.header-fixed:not(.header-light) .navbar .logo-light {
	display: inline-block;
}

/* NOTE: the scrolled-state logo swap is defined once, above, alongside
   the .affix background. Do not re-declare it here — the scrolled bar
   is navy, so the LIGHT lockup is the correct one. */

#primary-menu .navbar-nav > li > a {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

/* Transparent state over the hero */
.header-transparent .navbar-nav > li > a {
	color: rgba(255, 255, 255, .92);
}

.header-transparent .navbar-nav > li > a:hover,
.header-transparent .navbar-nav > li.active > a {
	color: var(--k-brass-light);
}

/* Sticky / scrolled state */
.nav-scroll,
.header .navbar.nav-scroll {
	background-color: #fff !important;
	box-shadow: 0 2px 18px rgba(22, 40, 63, .10);
}

.nav-scroll .navbar-nav > li > a {
	color: var(--k-navy);
}

.nav-scroll .navbar-nav > li > a:hover,
.nav-scroll .navbar-nav > li.active > a {
	color: var(--k-brass);
}

/* Nav CTA button — the base nav links are full-height blocks, so the
   CTA needs its own box rather than inheriting that height. */
#primary-menu .navbar-nav > li.nav-cta {
	display: flex;
	align-items: center;
	height: 100px;
	margin-left: 16px;
}

#primary-menu .navbar-nav > li.nav-cta > a {
	background-color: var(--k-brass);
	color: #fff !important;
	border-radius: 2px;
	line-height: 1.4;
	padding: 14px 26px !important;
	height: auto;
	transition: background-color .25s ease;
}

#primary-menu .navbar-nav > li.nav-cta > a:before {
	display: none; /* base template's hover underline */
}

#primary-menu .navbar-nav > li.nav-cta > a:hover {
	background-color: var(--k-brass-light);
	color: #fff !important;
}

/*------------------------------------*\
    #HERO / SLIDER
\*------------------------------------*/
/* The base template hard-codes an 800px slider with 267px of top
   padding, and leaves .slide--item unpositioned so its .bg-overlay
   :before escapes and paints over the whole page. We take full
   ownership of the hero here: .slide--item becomes the positioning
   container, and the three layers are stacked explicitly —
   image (0) -> overlay (1) -> copy (2). */
.slider,
.slider.section {
	height: auto;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: var(--k-navy);
}

.slider .slide--item {
	position: relative;
	height: auto;
	min-height: 100vh;
	margin: 0;
	padding-top: 140px;
	padding-bottom: 100px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--k-navy);
}

/* Background photograph */
.slider .slide--item .bg-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.slider .slide--item .bg-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Navy-weighted gradient so white type always passes contrast.
   Scoped to .slide--item so it can no longer stretch past the hero. */
.slider .slide--item.bg-overlay:before,
.slider .slide--item.bg-overlay-dark:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 1;
	background:
		/* top wash keeps the nav readable over bright ceilings */
		linear-gradient(
			to bottom,
			rgba(15, 29, 46, .55) 0%,
			rgba(15, 29, 46, 0) 26%
		),
		/* main left-weighted wash behind the headline */
		linear-gradient(
			100deg,
			rgba(15, 29, 46, .94) 0%,
			rgba(17, 32, 50, .88) 38%,
			rgba(22, 40, 63, .66) 68%,
			rgba(22, 40, 63, .48) 100%
		);
}

/* Hero copy sits above image and overlay. margin:auto is restated
   because the flex parent otherwise drops the container's centring. */
.slider .slide--item > .container {
	position: relative;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
}

.slide--headline {
	color: #fff;
	font-family: 'Merriweather', Georgia, serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 1.24;
	margin-bottom: 14px;
}

.slide--headline em {
	font-style: normal;
	color: var(--k-brass-light);
}

.slide--subhead {
	color: var(--k-brass-light);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 3.6px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.slide--bio {
	color: rgba(255, 255, 255, .86);
	font-size: 17.5px;
	line-height: 1.85;
	margin-bottom: 36px;
}

.slide--action .btn {
	margin: 0 10px 12px 0;
}

/*------------------------------------*\
    #TRUST STRIP (replaces counter band)
\*------------------------------------*/
/* Base template floats this as a white card overlapping the hero
   (margin-top:-85px). We want a flat navy band instead. */
.counter {
	background-color: var(--k-navy);
	margin-top: 0;
	padding: 64px 0;
}

.counter .counter-container {
	background-color: transparent;
	border-radius: 0;
	padding-top: 0;
	padding-bottom: 0;
}

/* The base template lays this out as an icon absolutely positioned to
   the LEFT of the text (.count-box padding-left:50px, .count-content
   padding-left:65px, .count-icon position:absolute). We stack it
   instead, so every one of those offsets has to be unwound — leaving
   .count-content's 65px in place pushes all the text off-centre. */
.counter .count-box {
	text-align: center;
	padding-left: 0;
}

.counter .count-box .count-content {
	padding-left: 0;
	padding-right: 0;
}

.counter .count-box .count-icon {
	position: static;
	top: auto;
	left: auto;
}

.counter .count-icon i {
	color: var(--k-brass-light);
	font-size: 36px;
	margin-bottom: 16px;
	display: inline-block;
}

.counter .count-content .counting,
.counter .count-content .count-value {
	color: #fff;
	font-family: 'Merriweather', Georgia, serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}

/* Base rule italicises and centres these oddly at narrow widths */
.counter .count-title {
	color: rgba(255, 255, 255, .72);
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 1.4px;
	line-height: 1.6;
	text-transform: uppercase;
	margin-top: 8px;
}

/*------------------------------------*\
    #SECTIONS
\*------------------------------------*/
.section {
	padding: 104px 0;
}

.bg-stone {
	background-color: var(--k-stone);
}

.section-label {
	color: var(--k-brass);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
	display: block;
}

/*------------------------------------*\
    #ABOUT / PHILOSOPHY
\*------------------------------------*/
.about-content p {
	font-size: 16px;
	margin-bottom: 20px;
}

.pull-quote {
	border-left: 3px solid var(--k-brass);
	padding: 4px 0 4px 26px;
	margin: 30px 0;
	font-family: 'Merriweather', Georgia, serif;
	font-style: italic;
	font-size: 19px;
	line-height: 1.7;
	color: var(--k-navy);
}

.kizuna-meaning {
	background-color: var(--k-stone);
	border-radius: 3px;
	padding: 28px 30px;
	margin-top: 8px;
}

.kizuna-meaning .kanji {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 34px;
	color: var(--k-brass);
	line-height: 1;
	margin-bottom: 10px;
}

.kizuna-meaning p {
	margin-bottom: 0;
	font-size: 15px;
}

/*------------------------------------*\
    #SERVICE PANELS
\*------------------------------------*/
.feature-panel {
	background-color: #fff;
	border: 1px solid #ECE7DD;
	border-radius: 3px;
	padding: 42px 34px;
	margin-bottom: 30px;
	height: 100%;
	transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.feature-panel:hover {
	border-color: var(--k-brass);
	box-shadow: 0 18px 40px rgba(22, 40, 63, .10);
	transform: translateY(-5px);
}

.feature-panel .feature--icon {
	color: var(--k-brass);
	font-size: 38px;
	line-height: 1;
	margin-bottom: 22px;
	display: block;
}

.feature-panel .feature--content h3 {
	font-size: 19px;
	margin-bottom: 14px;
}

.feature-panel .feature--content p {
	font-size: 15px;
	margin-bottom: 0;
}

.feature-panel .feature--link {
	display: inline-block;
	margin-top: 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--k-brass);
}

.feature-panel .feature--link i {
	margin-left: 6px;
	font-size: 11px;
}

/* Equal-height service cards */
.services-row {
	display: flex;
	flex-wrap: wrap;
}

.services-row > [class*='col-'] {
	display: flex;
}

/*------------------------------------*\
    #WHY US / PROCESS
\*------------------------------------*/
.process-step {
	position: relative;
	padding-left: 78px;
	margin-bottom: 44px;
}

.process-step .step--num {
	position: absolute;
	left: 0;
	top: 0;
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border: 1px solid var(--k-brass);
	border-radius: 50%;
	color: var(--k-brass);
	font-family: 'Merriweather', Georgia, serif;
	font-size: 19px;
	font-weight: 700;
}

.process-step h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.process-step p {
	margin-bottom: 0;
}

/* Dark "why us" band */
.band-navy {
	background-color: var(--k-navy);
	padding: 104px 0;
}

.band-navy h2,
.band-navy h3,
.band-navy h4,
.band-navy .heading--title {
	color: #fff;
}

.band-navy p,
.band-navy .heading--desc {
	color: rgba(255, 255, 255, .78);
}

.band-navy .section-label {
	color: var(--k-brass-light);
}

.band-navy .process-step .step--num {
	border-color: var(--k-brass-light);
	color: var(--k-brass-light);
}

/*------------------------------------*\
    #TESTIMONIALS
\*------------------------------------*/
.testimonial {
	background-color: var(--k-stone);
	padding: 104px 0;
}

.testimonial-panel {
	background-color: #fff;
	border-radius: 3px;
	padding: 38px 34px;
	margin: 0 15px 20px;
	box-shadow: 0 10px 30px rgba(22, 40, 63, .07);
	transition: none;
}

/* Base template inverts the panel on hover — keep it stable and on-brand */
.testimonial-panel:hover {
	background-color: #fff;
}

.testimonial-panel:hover p,
.testimonial-panel:hover .testimonial--name {
	color: inherit;
}

.testimonial-panel .quote-mark {
	color: var(--k-brass);
	font-size: 30px;
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}

.testimonial-panel p {
	font-size: 15.5px;
	font-style: italic;
	color: var(--k-body);
	margin-bottom: 22px;
}

.testimonial--name {
	color: var(--k-navy);
	font-family: 'Merriweather', Georgia, serif;
	font-weight: 700;
	font-size: 15px;
}

.testimonial--role {
	color: var(--k-brass);
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-top: 2px;
}

/*------------------------------------*\
    #TEAM
\*------------------------------------*/
.team-member {
	text-align: center;
	margin-bottom: 30px;
}

.team-member .member--img {
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	margin-bottom: 22px;
}

.team-member .member--img img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .5s ease;
}

.team-member:hover .member--img img {
	transform: scale(1.04);
}

.team-member .member--name {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--k-navy);
	margin-bottom: 4px;
}

.team-member .member--role {
	color: var(--k-brass);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.team-member .member--bio {
	font-size: 15px;
	margin-bottom: 0;
}

/*------------------------------------*\
    #ENQUIRY FORM / CTA
\*------------------------------------*/
.cta .col-content {
	padding-top: 96px;
	padding-bottom: 96px;
}

.form-request .form-control {
	height: 52px;
	border: 1px solid #DDD6C8;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: none;
	color: var(--k-navy);
	font-size: 15px;
	padding: 12px 18px;
	margin-bottom: 20px;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.form-request textarea.form-control {
	height: auto;
	min-height: 130px;
}

.form-request .form-control:focus {
	border-color: var(--k-brass);
	box-shadow: 0 0 0 3px rgba(169, 131, 75, .14);
	outline: none;
}

/* Base template capitalises placeholders ("You@Example.Com") */
.form-request .form-control::placeholder {
	color: #9AA2AD;
	text-transform: none;
}

.form-request .form-control {
	text-transform: none;
}

.form-request label {
	color: var(--k-navy);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .6px;
	margin-bottom: 7px;
	display: block;
}

.form-request .form-note {
	font-size: 13px;
	color: var(--k-body);
	margin-top: 8px;
}

.form-consent {
	font-size: 13.5px;
	line-height: 1.7;
}

.form-consent input {
	margin-right: 8px;
}

/* Make the image column stretch to the full height of the form column */
.cta > .container-fluid > .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.cta > .container-fluid > .row > [class*='col-'] {
	min-height: 1px;
}

.cta .col-img {
	position: relative;
	height: 100%;
	min-height: 420px;
	overflow: hidden;
}

.cta .col-img .bg-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cta .col-img .bg-section img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

/* Contact detail list beside the form */
.contact-direct {
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid #E3DACA;
}

.contact-direct li {
	margin-bottom: 12px;
	font-size: 15px;
	color: var(--k-body);
}

.contact-direct li i {
	color: var(--k-brass);
	width: 24px;
}

.contact-direct a {
	color: var(--k-navy);
}

.contact-direct a:hover {
	color: var(--k-brass);
}

/*------------------------------------*\
    #FOOTER
\*------------------------------------*/
.footer {
	background-color: var(--k-navy-deep);
	padding-top: 82px;
}

.footer .footer--widget-title h5 {
	color: #fff;
	font-size: 15px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.footer p,
.footer li,
.footer a {
	color: rgba(255, 255, 255, .70);
	font-size: 14.5px;
}

.footer a:hover {
	color: var(--k-brass-light);
}

.footer .footer--widget-about img {
	max-height: 56px;
	width: auto;
}

.footer .footer--widget-content ul li {
	margin-bottom: 11px;
}

.footer .footer--widget-contact i {
	color: var(--k-brass-light);
	width: 22px;
}

.footer .social a {
	display: inline-block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
	color: rgba(255, 255, 255, .75);
	margin-right: 8px;
	transition: all .25s ease;
}

.footer .social a:hover {
	background-color: var(--k-brass);
	border-color: var(--k-brass);
	color: #fff;
}

.footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, .12);
	margin-top: 60px;
	padding: 26px 0;
}

.footer-copyright p {
	margin-bottom: 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, .55);
}

.footer-legal a {
	font-size: 13.5px;
	margin-left: 18px;
	color: rgba(255, 255, 255, .55);
}

/*------------------------------------*\
    #ACCESSIBILITY
\*------------------------------------*/
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--k-navy);
	color: #fff;
	padding: 12px 20px;
}

.skip-link:focus {
	left: 0;
	color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--k-brass);
	outline-offset: 2px;
}

/*------------------------------------*\
    #RESPONSIVE
\*------------------------------------*/
@media (max-width: 991px) {
	.section,
	.band-navy,
	.testimonial {
		padding: 72px 0;
	}

	.slide--headline {
		font-size: 40px;
	}

	.cta .col-content {
		padding: 72px 20px;
	}

	.services-row {
		display: block;
	}

	.services-row > [class*='col-'] {
		display: block;
	}
}

@media (max-width: 767px) {
	/* Nothing may force the page wider than the viewport */
	html, body {
		overflow-x: hidden;
	}

	/* Trust strip: four stacked items were spanning ~1000px. Tighten the
	   band, the per-item spacing and the type. */
	.counter {
		padding: 40px 0 26px;
	}

	/* The base .count-box is a fixed-width inline block that sat left of
	   centre in its column. Let it fill the column and centre properly. */
	.counter .count-box {
		margin-bottom: 26px;
		width: 100%;
		max-width: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.counter .count-content,
	.counter .count-icon {
		width: 100%;
		text-align: center;
	}

	.counter .count-icon i {
		font-size: 27px;
		margin-bottom: 9px;
	}

	.counter .count-content .counting,
	.counter .count-content .count-value {
		white-space: normal;
		font-size: 21px;
	}

	.counter .count-title {
		font-size: 11px;
		letter-spacing: 1.1px;
		margin-top: 4px;
	}

	/* Section rhythm — the desktop 72px was still loose on a phone */
	.section,
	.band-navy,
	.testimonial {
		padding: 54px 0;
	}

	/* Headings: reduce orphan words like "SUPPORT" / "Always." */
	.slide--headline {
		font-size: 29px;
		line-height: 1.22;
	}

	.heading--title {
		font-size: 25px;
		line-height: 1.28;
	}

	.heading--desc {
		font-size: 15px;
	}

	/* Service cards: trim the generous desktop padding */
	.feature-panel {
		padding: 28px 24px;
		margin-bottom: 18px;
	}

	.feature-panel .feature--icon {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.feature-panel .feature--content h3 {
		font-size: 17.5px;
		margin-bottom: 10px;
	}

	.pull-quote {
		font-size: 17px;
		padding-left: 18px;
		margin: 24px 0;
	}

	.kizuna-meaning {
		padding: 22px 22px;
	}

	/* Give the SVG an explicit height and let width follow the 520:120
	   ratio. `width:auto` collapses an SVG to 0 inside a flex parent,
	   and 100vw-based maths is unreliable here. */
	.header .navbar .logo img {
		height: 34px;
		width: 147px;
		max-width: 100%;
		flex: 0 1 auto;
	}

	/* The toggle precedes the logo in the markup, so set order explicitly
	   to keep logo-left / burger-right. The header must also fill the
	   navbar's full height, otherwise its contents sit pinned to the top
	   instead of being vertically centred. */
	.header .navbar .navbar-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-left: 15px;
		height: 80px;
		float: none;
	}

	.header .navbar .navbar-header .logo {
		order: 1;
	}

	.header .navbar .navbar-header .navbar-toggle {
		order: 2;
	}

	.header .navbar .logo {
		line-height: 1;
		display: flex;
		align-items: center;
		min-width: 0;
	}

	/* Hero: 100vh leaves a large dead band under the copy on tall phones.
	   Let it size to its content instead, with a sensible floor. */
	.slider,
	.slider.section,
	.slider .slide--item {
		min-height: 0;
		height: auto;
	}

	.slider .slide--item {
		min-height: 560px;
		padding-top: 118px;
		padding-bottom: 56px;
		text-align: left;
		display: block;       /* flex centring is what stretched the gap */
	}

	/* Hero buttons sit inline rather than as two full-width slabs */
	.slide--action .btn {
		display: inline-block;
		width: auto;
		margin: 0 8px 10px 0;
		padding: 14px 22px;
		font-size: 11.5px;
		letter-spacing: 1px;
	}

	.slide--subhead {
		font-size: 11px;
		letter-spacing: 2.4px;
		margin-bottom: 18px;
	}

	.slide--bio {
		font-size: 15.5px;
		margin-bottom: 28px;
	}

	/* Hamburger toggle — needs a gutter, it was flush to the screen edge.
	   float:none so it sits as a flex child of .navbar-header. */
	.navbar-toggle {
		float: none;
		margin: 0 15px 0 0;
		border-color: var(--k-brass);
		border-radius: 2px;
		padding: 9px 10px;
		flex: 0 0 auto;
	}

	.navbar-toggle .icon-bar {
		background-color: var(--k-brass-light);
	}

	.header .navbar {
		min-height: 80px;
	}

	.header .navbar .logo {
		line-height: 80px;
	}

	/* Mobile dropdown panel — solid navy so links stay readable */
	.header-transparent .navbar-collapse.in,
	.header-transparent .navbar-collapse.collapsing {
		background-color: var(--k-navy-deep) !important;
		border-top: 1px solid rgba(255, 255, 255, .12);
		max-height: 80vh;
		overflow-y: auto;
		margin-top: 0;
		padding: 10px 0 18px;
	}

	#primary-menu .navbar-nav > li > a {
		padding: 13px 15px !important;
		color: rgba(255, 255, 255, .92);
	}

	/* CTA becomes a normal full-width item in the dropdown */
	#primary-menu .navbar-nav > li.nav-cta {
		display: block;
		height: auto;
		margin: 12px 15px 0;
	}

	#primary-menu .navbar-nav > li.nav-cta > a {
		display: block;
		text-align: center;
	}

	/* Stacked columns in the navy band: the "Talk to us" button ran
	   straight into the first process step with no clearance. */
	.band-navy .col-md-5 {
		margin-bottom: 44px;
	}

	.band-navy .btn {
		margin-bottom: 0;
	}

	/* Contact image: the desktop layout stretches this column to match the
	   form's height, which on a phone meant an 800px+ slab of door below
	   the form. Unset the flex stretch and pin a sensible height. */
	.cta > .container-fluid > .row {
		display: block;
	}

	.cta > .container-fluid > .row > [class*='col-'] {
		display: block;
	}

	.cta .col-img {
		min-height: 0;
		height: 280px;
		max-height: 280px;
	}

	.cta .col-content {
		padding: 54px 15px 44px;
	}

	.process-step {
		padding-left: 62px;
		margin-bottom: 32px;
	}

	.process-step .step--num {
		width: 46px;
		height: 46px;
		line-height: 46px;
		font-size: 16px;
	}

	.testimonial-panel {
		margin: 0 0 20px;
	}

	.footer-legal a {
		margin: 0 9px;
	}
}
